Skip to content

Commit

Permalink
[XFS] find_exported_dentry(). XFS does not need to use this symbol as it
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Chinner authored and Nathan Scott committed Mar 14, 2006
1 parent 3759fa9 commit 0c9512d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/xfs/linux-2.6/xfs_export.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}


Expand Down

0 comments on commit 0c9512d

Please sign in to comment.