diff options
author | J.Bruce Fields <bfields@fieldses.org> | 2006-10-04 02:16:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 07:55:22 -0700 |
commit | b009a873de05c6e0d7613df3584b6dcb2e4280ee (patch) | |
tree | a79bc4a82ca4bf8f3564fd024ffd0eedcdddab34 /include/linux/nfsd/export.h | |
parent | 21c0d8fdd95024ffa708a938099148b8f1078d46 (diff) | |
download | kernel-crypto-b009a873de05c6e0d7613df3584b6dcb2e4280ee.tar.gz kernel-crypto-b009a873de05c6e0d7613df3584b6dcb2e4280ee.tar.xz kernel-crypto-b009a873de05c6e0d7613df3584b6dcb2e4280ee.zip |
[PATCH] knfsd: nfsd: store export path in export
Store the export path in the svc_export structure instead of storing only the
dentry. This will prevent the need for additional d_path calls to provide
NFSv4 fs_locations support.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/nfsd/export.h')
-rw-r--r-- | include/linux/nfsd/export.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h index d2a8abb5011..47d96684b61 100644 --- a/include/linux/nfsd/export.h +++ b/include/linux/nfsd/export.h @@ -51,6 +51,7 @@ struct svc_export { int ex_flags; struct vfsmount * ex_mnt; struct dentry * ex_dentry; + char * ex_path; uid_t ex_anon_uid; gid_t ex_anon_gid; int ex_fsid; |