diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-09-13 00:40:21 +0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-09-18 00:33:14 +0400 |
commit | 7f5ef2e900d9462bf9cffaf6bb246ed87a20a6d6 (patch) | |
tree | de3eb667a4b70e6534e603af7a076f4cce57815d /fs/nfsd/state.h | |
parent | d68e3c4aa416d592d79152a49af121e4ecb204e3 (diff) | |
download | linux-7f5ef2e900d9462bf9cffaf6bb246ed87a20a6d6.tar.xz |
nfsd: add a v4_end_grace file to /proc/fs/nfsd
Allow a privileged userland process to end the v4 grace period early.
Writing "Y", "y", or "1" to the file will cause the v4 grace period to
be lifted. The basic idea with this will be to allow the userland
client tracking program to lift the grace period once it knows that no
more clients will be reclaiming state.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index a5fa6909501e..854f0c574ccf 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -545,6 +545,9 @@ extern struct nfs4_client_reclaim *nfs4_client_to_reclaim(const char *name, struct nfsd_net *nn); extern bool nfs4_has_reclaimed_state(const char *name, struct nfsd_net *nn); +/* grace period management */ +void nfsd4_end_grace(struct nfsd_net *nn); + /* nfs4recover operations */ extern int nfsd4_client_tracking_init(struct net *net); extern void nfsd4_client_tracking_exit(struct net *net); |