diff options
author | Christoph Hellwig <hch@lst.de> | 2009-03-29 09:51:08 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-03-29 09:51:08 +0200 |
commit | a19d9f887d81106d52cacbc9930207b487e07e0e (patch) | |
tree | ad1dc614738e31461385a1fc0de5f949bfea1639 /fs/xfs/linux-2.6/xfs_iops.c | |
parent | a0b0b8a5b3cb47892b5984cd86272446bee5f511 (diff) | |
download | linux-a19d9f887d81106d52cacbc9930207b487e07e0e.tar.gz linux-a19d9f887d81106d52cacbc9930207b487e07e0e.tar.bz2 linux-a19d9f887d81106d52cacbc9930207b487e07e0e.zip |
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/linux-2.6/xfs_iops.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_iops.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_iops.c b/fs/xfs/linux-2.6/xfs_iops.c index e103b05dc777..631d0137551e 100644 --- a/fs/xfs/linux-2.6/xfs_iops.c +++ b/fs/xfs/linux-2.6/xfs_iops.c @@ -541,9 +541,6 @@ xfs_vn_getattr( stat->uid = ip->i_d.di_uid; stat->gid = ip->i_d.di_gid; stat->ino = ip->i_ino; -#if XFS_BIG_INUMS - stat->ino += mp->m_inoadd; -#endif stat->atime = inode->i_atime; stat->mtime.tv_sec = ip->i_d.di_mtime.t_sec; stat->mtime.tv_nsec = ip->i_d.di_mtime.t_nsec; |