Commit 0c9512d7 authored by David Chinner's avatar David Chinner Committed by Nathan Scott

[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: default avatarDavid Chinner <dgc@sgi.com>
Signed-off-by: default avatarNathan Scott <nathans@sgi.com>
parent 3759fa9c
...@@ -78,7 +78,7 @@ linvfs_decode_fh( ...@@ -78,7 +78,7 @@ linvfs_decode_fh(
} }
fh = (__u32 *)&ifid; 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);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment