summaryrefslogtreecommitdiffstats
path: root/fs/nfsd/nfsd.h
diff options
context:
space:
mode:
authorJ. Bruce Fields2019-03-22 16:11:06 +0100
committerJ. Bruce Fields2019-07-03 23:52:49 +0200
commite8a79fb14f6b76b502218fce10696f4df9ff19b1 (patch)
tree8206e240dba02943e8e47a0118994b67b4ab30ea /fs/nfsd/nfsd.h
parentnfsd4: use reference count to free client (diff)
downloadkernel-qcow2-linux-e8a79fb14f6b76b502218fce10696f4df9ff19b1.tar.gz
kernel-qcow2-linux-e8a79fb14f6b76b502218fce10696f4df9ff19b1.tar.xz
kernel-qcow2-linux-e8a79fb14f6b76b502218fce10696f4df9ff19b1.zip
nfsd: add nfsd/clients directory
I plan to expose some information about nfsv4 clients here. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfsd.h')
-rw-r--r--fs/nfsd/nfsd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/nfsd/nfsd.h b/fs/nfsd/nfsd.h
index 24187b5dd638..85525dcbf77d 100644
--- a/fs/nfsd/nfsd.h
+++ b/fs/nfsd/nfsd.h
@@ -22,6 +22,7 @@
#include <uapi/linux/nfsd/debug.h>
+#include "netns.h"
#include "stats.h"
#include "export.h"
@@ -86,6 +87,14 @@ int nfsd_pool_stats_release(struct inode *, struct file *);
void nfsd_destroy(struct net *net);
+struct nfsdfs_client {
+ struct kref cl_ref;
+ void (*cl_release)(struct kref *kref);
+};
+
+struct dentry *nfsd_client_mkdir(struct nfsd_net *nn, struct nfsdfs_client *ncl, u32 id);
+void nfsd_client_rmdir(struct dentry *dentry);
+
#if defined(CONFIG_NFSD_V2_ACL) || defined(CONFIG_NFSD_V3_ACL)
#ifdef CONFIG_NFSD_V2_ACL
extern const struct svc_version nfsd_acl_version2;