You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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>
11 lines
305 B
Makefile
11 lines
305 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 := $(lockd-objs-y)
|