[BACK]Return to xfs_inode.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / fs / xfs

File: [Development] / linux-2.6-xfs / fs / xfs / xfs_inode.h (download)

Revision 1.1, Fri Oct 29 00:19:18 1993 UTC (23 years, 11 months ago) by ajs
Branch: MAIN

Initial revision

#ifndef	_XFS_INODE_H
#define	_XFS_INODE_H

struct xfs_inode;

typedef struct xfs_inode_log_item {
	xfs_log_item_t		ili_item;
	struct xfs_inode	*ili_inode;
	unsigned int		ili_recur;
	unsigned int		ili_flags;
	unsigned int		ili_field_mask;
} xfs_inode_log_item_t;

#define	XFS_ILI_HOLD	0x1
	

typedef struct xfs_inode {
	xfs_inode_log_item_t	i_item;
	xfs_trans_t		*i_transp;
	unsigned int		i_flags;
} xfs_inode_t;

#define	I_LOCKED	0x1


xfs_inode_t	*xfs_inode_incore(struct xfs_mount *, xfs_ino_t, void *);
xfs_inode_t	*xfs_iget(struct xfs_mount *, xfs_ino_t);


#endif	/* _XFS_INODE_H */