diff options
author | Nathan Scott <nathans@sgi.com> | 2005-11-02 15:11:45 +1100 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2005-11-02 15:11:45 +1100 |
commit | c11e2c369d06576c9e4a900a975cbfab5e7e3c53 (patch) | |
tree | 9b25f3214440d38b4b97807628ce9de5fd5062c1 /fs/xfs/linux-2.6/xfs_export.c | |
parent | 16259e7d952e26e949cc2c8c68b74f34b293935d (diff) | |
download | talos-op-linux-c11e2c369d06576c9e4a900a975cbfab5e7e3c53.tar.gz talos-op-linux-c11e2c369d06576c9e4a900a975cbfab5e7e3c53.zip |
[XFS] Rework fid encode/decode wrt 64 bit inums interacting with NFS.
SGI-PV: 937127
SGI-Modid: xfs-linux:xfs-kern:24201a
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_export.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_export.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c index 3e97076437be..80eb249f2fa0 100644 --- a/fs/xfs/linux-2.6/xfs_export.c +++ b/fs/xfs/linux-2.6/xfs_export.c @@ -96,9 +96,8 @@ linvfs_encode_fh( int is64 = 0; #if XFS_BIG_INUMS vfs_t *vfs = LINVFS_GET_VFS(inode->i_sb); - xfs_mount_t *mp = XFS_VFSTOM(vfs); - if (!(mp->m_flags & XFS_MOUNT_32BITINOOPT)) { + if (!(vfs->vfs_flag & VFS_32BITINODES)) { /* filesystem may contain 64bit inode numbers */ is64 = XFS_FILEID_TYPE_64FLAG; } |