diff options
author | Christoph Hellwig <hch@infradead.org> | 2007-08-28 21:44:37 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-10-15 21:37:29 -0400 |
commit | b3aea4edc2903fdee34920630b8b2433f6452f02 (patch) | |
tree | 9d9e93c4dac6dc5a30522e0c2ae051e3aad46b1b /fs/xfs/xfs_inode.h | |
parent | 2f6f7b3d9b5600e1f6e7622c62ab30f36bd0f57f (diff) |
[XFS] kill the v_flag member in struct bhv_vnode
All flags previously handled at the vnode level are not in the xfs_inode
where we already have a flags mechanisms and free bits for flags
previously in the vnode.
SGI-PV: 969608
SGI-Modid: xfs-linux-melb:xfs-kern:29495a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 6f88ac3b10ae..79d724615c39 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h | |||
@@ -391,6 +391,9 @@ xfs_iflags_test(xfs_inode_t *ip, unsigned short flags) | |||
391 | #define XFS_IRECLAIMABLE 0x0020 /* inode can be reclaimed */ | 391 | #define XFS_IRECLAIMABLE 0x0020 /* inode can be reclaimed */ |
392 | #define XFS_INEW 0x0040 | 392 | #define XFS_INEW 0x0040 |
393 | #define XFS_IFILESTREAM 0x0080 /* inode is in a filestream directory */ | 393 | #define XFS_IFILESTREAM 0x0080 /* inode is in a filestream directory */ |
394 | #define XFS_IMODIFIED 0x0100 /* XFS inode state possibly differs */ | ||
395 | /* to the Linux inode state. */ | ||
396 | #define XFS_ITRUNCATED 0x0200 /* truncated down so flush-on-close */ | ||
394 | 397 | ||
395 | /* | 398 | /* |
396 | * Flags for inode locking. | 399 | * Flags for inode locking. |