f779002965
Currently, all of the grace period handling is part of lockd. Eventually though we'd like to be able to build v4-only servers, at which point we'll need to put all of this elsewhere. Move the code itself into fs/nfs_common and have it build a grace.ko module. Then, rejigger the Kconfig options so that both nfsd and lockd enable it automatically. Signed-off-by: Jeff Layton <jlayton@primarydata.com>
9 lines
191 B
Makefile
9 lines
191 B
Makefile
#
|
|
# Makefile for Linux filesystem routines that are shared by client and server.
|
|
#
|
|
|
|
obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o
|
|
nfs_acl-objs := nfsacl.o
|
|
|
|
obj-$(CONFIG_GRACE_PERIOD) += grace.o
|