aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exportfs/expfs.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2007-07-17 07:04:30 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-17 13:23:06 -0400
commitd37065cd6d6bbe98fd4be14d6c9e64c0bfa124c5 (patch)
tree03a996d3d93a4d5ebd737519f7a6f959ecdbce0d /fs/exportfs/expfs.c
parent5ca29607331fe37980dc3b488793ef8b1409b722 (diff)
knfsd: exportfs: add procedural interface for NFSD
Currently NFSD calls directly into filesystems through the export_operations structure. I plan to change this interface in various ways in later patches, and want to avoid the export of the default operations to NFSD, so this patch adds two simple exportfs_encode_fh/exportfs_decode_fh helpers for NFSD to call instead of poking into exportfs guts. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Neil Brown <neilb@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/exportfs/expfs.c')
-rw-r--r--fs/exportfs/expfs.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c
index dd132bb7b8f8..db86006956b0 100644
--- a/fs/exportfs/expfs.c
+++ b/fs/exportfs/expfs.c
@@ -3,6 +3,7 @@
3#include <linux/fs.h> 3#include <linux/fs.h>
4#include <linux/file.h> 4#include <linux/file.h>
5#include <linux/module.h> 5#include <linux/module.h>
6#include <linux/mount.h>
6#include <linux/namei.h> 7#include <linux/namei.h>
7 8
8struct export_operations export_op_default; 9struct export_operations export_op_default;
@@ -468,6 +469,26 @@ static struct dentry *export_decode_fh(struct super_block *sb, __u32 *fh, int fh
468 acceptable, context); 469 acceptable, context);
469} 470}
470 471
472int exportfs_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len,
473 int connectable)
474{
475 struct export_operations *nop = dentry->d_sb->s_export_op;
476
477 return CALL(nop, encode_fh)(dentry, fh, max_len, connectable);
478}
479EXPORT_SYMBOL_GPL(exportfs_encode_fh);
480
481struct dentry *exportfs_decode_fh(struct vfsmount *mnt, __u32 *fh, int fh_len,
482 int fileid_type, int (*acceptable)(void *, struct dentry *),
483 void *context)
484{
485 struct export_operations *nop = mnt->mnt_sb->s_export_op;
486
487 return CALL(nop, decode_fh)(mnt->mnt_sb, fh, fh_len, fileid_type,
488 acceptable, context);
489}
490EXPORT_SYMBOL_GPL(exportfs_decode_fh);
491
471struct export_operations export_op_default = { 492struct export_operations export_op_default = {
472 .decode_fh = export_decode_fh, 493 .decode_fh = export_decode_fh,
473 .encode_fh = export_encode_fh, 494 .encode_fh = export_encode_fh,
@@ -477,7 +498,6 @@ struct export_operations export_op_default = {
477 .get_dentry = get_dentry, 498 .get_dentry = get_dentry,
478}; 499};
479 500
480EXPORT_SYMBOL(export_op_default);
481EXPORT_SYMBOL(find_exported_dentry); 501EXPORT_SYMBOL(find_exported_dentry);
482 502
483MODULE_LICENSE("GPL"); 503MODULE_LICENSE("GPL");