aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_export.c
diff options
context:
space:
mode:
authorDavid Chinner <dgc@sgi.com>2006-03-14 13:02:13 +1100
committerNathan Scott <nathans@sgi.com>2006-03-14 13:02:13 +1100
commit0c9512d74635198d90f349acec19381e446ba2b4 (patch)
tree97a60f4e3a9a5d67ae7f4bf192cc7066e48a5979 /fs/xfs/linux-2.6/xfs_export.c
parent[TCP]: Fix zero port problem in IPv6 (diff)
downloadlinux-dev-0c9512d74635198d90f349acec19381e446ba2b4.tar.xz
linux-dev-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 '')
-rw-r--r--fs/xfs/linux-2.6/xfs_export.c2
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);
}