diff options
author | Dai Ngo <dai.ngo@oracle.com> | 2020-10-18 23:42:49 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2020-10-21 10:31:20 -0400 |
commit | 0cfcd405e758ba1d277e58436fb32f06888c3e41 (patch) | |
tree | 1864fcd7309f73031e27b363110c584fd4b37eb8 /fs/nfs_common/Makefile | |
parent | d48c8124749c9a5081fe68680f83605e272c984b (diff) | |
download | linux-0cfcd405e758ba1d277e58436fb32f06888c3e41.tar.gz linux-0cfcd405e758ba1d277e58436fb32f06888c3e41.tar.bz2 linux-0cfcd405e758ba1d277e58436fb32f06888c3e41.zip |
NFSv4.2: Fix NFS4ERR_STALE error when doing inter server copy
NFS_FS=y as dependency of CONFIG_NFSD_V4_2_INTER_SSC still have
build errors and some configs with NFSD=m to get NFS4ERR_STALE
error when doing inter server copy.
Added ops table in nfs_common for knfsd to access NFS client modules.
Fixes: 3ac3711adb88 ("NFSD: Fix NFS server build errors")
Signed-off-by: Dai Ngo <dai.ngo@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfs_common/Makefile')
-rw-r--r-- | fs/nfs_common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/nfs_common/Makefile b/fs/nfs_common/Makefile index 4bebe834c009..fa82f5aaa6d9 100644 --- a/fs/nfs_common/Makefile +++ b/fs/nfs_common/Makefile @@ -7,3 +7,4 @@ obj-$(CONFIG_NFS_ACL_SUPPORT) += nfs_acl.o nfs_acl-objs := nfsacl.o obj-$(CONFIG_GRACE_PERIOD) += grace.o +obj-$(CONFIG_GRACE_PERIOD) += nfs_ssc.o |