diff options
author | J. Bruce Fields <bfields@redhat.com> | 2019-03-22 11:11:06 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2019-07-03 17:52:49 -0400 |
commit | e8a79fb14f6b76b502218fce10696f4df9ff19b1 (patch) | |
tree | 8206e240dba02943e8e47a0118994b67b4ab30ea /fs/nfsd/nfsd.h | |
parent | 59f8e91b75ecf16f22d62eca0659c13901eff5f3 (diff) | |
download | blackbird-op-linux-e8a79fb14f6b76b502218fce10696f4df9ff19b1.tar.gz blackbird-op-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.h | 9 |
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; |