aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorJ.Bruce Fields <bfields@fieldses.org>2006-10-04 05:16:17 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-04 10:55:22 -0400
commitb009a873de05c6e0d7613df3584b6dcb2e4280ee (patch)
treea79bc4a82ca4bf8f3564fd024ffd0eedcdddab34 /include/linux
parent21c0d8fdd95024ffa708a938099148b8f1078d46 (diff)
[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')
-rw-r--r--include/linux/nfsd/export.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/nfsd/export.h b/include/linux/nfsd/export.h
index d2a8abb5011a..47d96684b611 100644
--- a/include/linux/nfsd/export.h
+++ b/include/linux/nfsd/export.h
@@ -51,6 +51,7 @@ struct svc_export {
51 int ex_flags; 51 int ex_flags;
52 struct vfsmount * ex_mnt; 52 struct vfsmount * ex_mnt;
53 struct dentry * ex_dentry; 53 struct dentry * ex_dentry;
54 char * ex_path;
54 uid_t ex_anon_uid; 55 uid_t ex_anon_uid;
55 gid_t ex_anon_gid; 56 gid_t ex_anon_gid;
56 int ex_fsid; 57 int ex_fsid;