From: David Chinner Date: Tue, 14 Mar 2006 02:02:13 +0000 (+1100) Subject: [XFS] find_exported_dentry(). XFS does not need to use this symbol as it X-Git-Tag: v2.6.17-rc1~1000^2~71 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=0c9512d74635198d90f349acec19381e446ba2b4;p=karo-tx-linux.git [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 Signed-off-by: Nathan Scott --- 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); }