diff options
author | Christoph Hellwig <hch@lst.de> | 2008-12-03 06:20:32 -0500 |
---|---|---|
committer | Niv Sardi <xaiki@sgi.com> | 2008-12-03 23:39:22 -0500 |
commit | 6bd16ff27060819d16b3e7abe59b6644b349aea3 (patch) | |
tree | 6a7250063b8d727f35887bfe188a4dc7802fa181 /fs/xfs/xfs_inode.h | |
parent | 5efcbb853bc2f051d720a191268f8dd901fea9c2 (diff) |
kill dead inode flags
There are a few inode flags around that aren't used anywhere, so remove
them. Also update xfsidbg to display all used inode flags correctly.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 03ae96bdae7e..ddac1b806c0b 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h | |||
@@ -403,17 +403,12 @@ static inline void xfs_ifunlock(xfs_inode_t *ip) | |||
403 | /* | 403 | /* |
404 | * In-core inode flags. | 404 | * In-core inode flags. |
405 | */ | 405 | */ |
406 | #define XFS_IGRIO 0x0001 /* inode used for guaranteed rate i/o */ | 406 | #define XFS_IRECLAIM 0x0001 /* we have started reclaiming this inode */ |
407 | #define XFS_IUIOSZ 0x0002 /* inode i/o sizes have been explicitly set */ | 407 | #define XFS_ISTALE 0x0002 /* inode has been staled */ |
408 | #define XFS_IQUIESCE 0x0004 /* we have started quiescing for this inode */ | 408 | #define XFS_IRECLAIMABLE 0x0004 /* inode can be reclaimed */ |
409 | #define XFS_IRECLAIM 0x0008 /* we have started reclaiming this inode */ | 409 | #define XFS_INEW 0x0008 /* inode has just been allocated */ |
410 | #define XFS_ISTALE 0x0010 /* inode has been staled */ | 410 | #define XFS_IFILESTREAM 0x0010 /* inode is in a filestream directory */ |
411 | #define XFS_IRECLAIMABLE 0x0020 /* inode can be reclaimed */ | 411 | #define XFS_ITRUNCATED 0x0020 /* truncated down so flush-on-close */ |
412 | #define XFS_INEW 0x0040 | ||
413 | #define XFS_IFILESTREAM 0x0080 /* inode is in a filestream directory */ | ||
414 | #define XFS_IMODIFIED 0x0100 /* XFS inode state possibly differs */ | ||
415 | /* to the Linux inode state. */ | ||
416 | #define XFS_ITRUNCATED 0x0200 /* truncated down so flush-on-close */ | ||
417 | 412 | ||
418 | /* | 413 | /* |
419 | * Flags for inode locking. | 414 | * Flags for inode locking. |