diff options
author | David Chinner <dgc@sgi.com> | 2006-03-14 13:02:13 +1100 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2006-03-14 13:02:13 +1100 |
commit | 0c9512d74635198d90f349acec19381e446ba2b4 (patch) | |
tree | 97a60f4e3a9a5d67ae7f4bf192cc7066e48a5979 /fs/xfs/linux-2.6 | |
parent | 3759fa9c55923f719ae944a3f8fbb029b36f759d (diff) | |
download | talos-obmc-linux-0c9512d74635198d90f349acec19381e446ba2b4.tar.gz talos-obmc-linux-0c9512d74635198d90f349acec19381e446ba2b4.zip |
[XFS] find_exported_dentry(). XFS does not need to use this symbol as it
is provided by a vector through the superblock export operations when the
filesystem is exported by NFS. The fix is to call that vector instead of
using the exported symbol directly.
SGI-PV: 948858
SGI-Modid: xfs-linux-melb:xfs-kern:25062a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c index 80eb249f2fa0..821bd12dd858 100644 --- a/fs/xfs/linux-2.6/xfs_export.c +++ b/fs/xfs/linux-2.6/xfs_export.c @@ -78,7 +78,7 @@ linvfs_decode_fh( } fh = (__u32 *)&ifid; - return find_exported_dentry(sb, fh, parent, acceptable, context); + return sb->s_export_op->find_exported_dentry(sb, fh, parent, acceptable, context); } |