mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
02591f9feb
Currently NFSv4_2 SSC helper, nfs_ssc, incorrectly uses GRACE_PERIOD as its config. Fix by adding new config NFS_V4_2_SSC_HELPER which depends on NFS_V4_2 and is automatically selected when NFSD_V4 is enabled. Also removed the file name from a comment in nfs_ssc.c. Signed-off-by: Dai Ngo <dai.ngo@oracle.com> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
10 lines
278 B
Makefile
10 lines
278 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# 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
|
|
obj-$(CONFIG_NFS_V4_2_SSC_HELPER) += nfs_ssc.o
|