diff options
author | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-12-03 21:18:39 +0100 |
---|---|---|
committer | Anna Schumaker <Anna.Schumaker@Netapp.com> | 2020-12-10 22:48:03 +0100 |
commit | 21e31401fc4595aeefa224cd36ab8175ec867b87 (patch) | |
tree | 9db41ecf8965a31f0ddd17db8510e47426f5aeb6 /fs/nfs/nfs4proc.c | |
parent | NFSv4.2: Fix 5 seconds delay when doing inter server copy (diff) | |
download | linux-21e31401fc4595aeefa224cd36ab8175ec867b87.tar.xz linux-21e31401fc4595aeefa224cd36ab8175ec867b87.zip |
NFS: Disable READ_PLUS by default
We've been seeing failures with xfstests generic/091 and generic/263
when using READ_PLUS. I've made some progress on these issues, and the
tests fail later on but still don't pass. Let's disable READ_PLUS by
default until we can work out what is going on.
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
Diffstat (limited to '')
-rw-r--r-- | fs/nfs/nfs4proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 9e0ca9b2b210..e89468678ae1 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -5309,7 +5309,7 @@ static int nfs4_read_done(struct rpc_task *task, struct nfs_pgio_header *hdr) nfs4_read_done_cb(task, hdr); } -#ifdef CONFIG_NFS_V4_2 +#if defined CONFIG_NFS_V4_2 && defined CONFIG_NFS_V4_2_READ_PLUS static void nfs42_read_plus_support(struct nfs_server *server, struct rpc_message *msg) { if (server->caps & NFS_CAP_READ_PLUS) |