diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-09-12 16:40:20 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-09-17 16:33:13 -0400 |
commit | d68e3c4aa416d592d79152a49af121e4ecb204e3 (patch) | |
tree | 055e7cf7fb69bc10f0b0238a87c05758ed125d61 /fs/lockd/Makefile | |
parent | 3b3e7b72239a748f516d6aee8c12df48d50e2d7e (diff) | |
download | op-kernel-dev-d68e3c4aa416d592d79152a49af121e4ecb204e3.zip op-kernel-dev-d68e3c4aa416d592d79152a49af121e4ecb204e3.tar.gz |
lockd: add a /proc/fs/lockd/nlm_end_grace file
Add a new procfile that will allow a (privileged) userland process to
end the NLM grace period early. The basic idea here will be to have
sm-notify write to this file, if it sent out no NOTIFY requests when
it runs. In that situation, we can generally expect that there will be
no reclaim requests so the grace period can be lifted early.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Diffstat (limited to 'fs/lockd/Makefile')
-rw-r--r-- | fs/lockd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/lockd/Makefile b/fs/lockd/Makefile index 6a0b351..9b320cc 100644 --- a/fs/lockd/Makefile +++ b/fs/lockd/Makefile @@ -7,4 +7,5 @@ obj-$(CONFIG_LOCKD) += lockd.o lockd-objs-y := clntlock.o clntproc.o clntxdr.o host.o svc.o svclock.o \ svcshare.o svcproc.o svcsubs.o mon.o xdr.o lockd-objs-$(CONFIG_LOCKD_V4) += clnt4xdr.o xdr4.o svc4proc.o +lockd-objs-$(CONFIG_PROC_FS) += procfs.o lockd-objs := $(lockd-objs-y) |