mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
d68e3c4aa4
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>
11 lines
346 B
Makefile
11 lines
346 B
Makefile
#
|
|
# Makefile for the linux lock manager stuff
|
|
#
|
|
|
|
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)
|