aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2009-03-29 03:51:08 -0400
committerChristoph Hellwig <hch@brick.lst.de>2009-03-29 03:51:08 -0400
commita19d9f887d81106d52cacbc9930207b487e07e0e (patch)
treead1dc614738e31461385a1fc0de5f949bfea1639 /fs/xfs/xfs_mount.h
parenta0b0b8a5b3cb47892b5984cd86272446bee5f511 (diff)
xfs: kill ino64 mount option
The ino64 mount option adds a fixed offset to 32bit inode numbers to bring them into the 64bit range. There's no need for this kind of debug tool given that it's easy to produce real 64bit inode numbers for testing. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eric Sandeen <sandeen@sandeen.net> Reviewed-by: Felix Blyakher <felixb@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r--fs/xfs/xfs_mount.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index 1438dd4dc909..e27b829dfa82 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -289,9 +289,6 @@ typedef struct xfs_mount {
289 __uint64_t m_maxioffset; /* maximum inode offset */ 289 __uint64_t m_maxioffset; /* maximum inode offset */
290 __uint64_t m_resblks; /* total reserved blocks */ 290 __uint64_t m_resblks; /* total reserved blocks */
291 __uint64_t m_resblks_avail;/* available reserved blocks */ 291 __uint64_t m_resblks_avail;/* available reserved blocks */
292#if XFS_BIG_INUMS
293 xfs_ino_t m_inoadd; /* add value for ino64_offset */
294#endif
295 int m_dalign; /* stripe unit */ 292 int m_dalign; /* stripe unit */
296 int m_swidth; /* stripe width */ 293 int m_swidth; /* stripe width */
297 int m_sinoalign; /* stripe unit inode alignment */ 294 int m_sinoalign; /* stripe unit inode alignment */
@@ -333,7 +330,6 @@ typedef struct xfs_mount {
333#define XFS_MOUNT_WSYNC (1ULL << 0) /* for nfs - all metadata ops 330#define XFS_MOUNT_WSYNC (1ULL << 0) /* for nfs - all metadata ops
334 must be synchronous except 331 must be synchronous except
335 for space allocations */ 332 for space allocations */
336#define XFS_MOUNT_INO64 (1ULL << 1)
337#define XFS_MOUNT_DMAPI (1ULL << 2) /* dmapi is enabled */ 333#define XFS_MOUNT_DMAPI (1ULL << 2) /* dmapi is enabled */
338#define XFS_MOUNT_WAS_CLEAN (1ULL << 3) 334#define XFS_MOUNT_WAS_CLEAN (1ULL << 3)
339#define XFS_MOUNT_FS_SHUTDOWN (1ULL << 4) /* atomic stop of all filesystem 335#define XFS_MOUNT_FS_SHUTDOWN (1ULL << 4) /* atomic stop of all filesystem