summaryrefslogtreecommitdiffstats
path: root/fs/nfs
diff options
context:
space:
mode:
authorTrond Myklebust <trond.myklebust@primarydata.com>2017-04-15 19:20:01 -0400
committerTrond Myklebust <trond.myklebust@primarydata.com>2017-04-20 14:12:57 -0400
commit56e0d71ef12f026d96213e45a662bde6bbff4676 (patch)
treecfbba83b6c0fdf93c8612e60fb4b10a5f427e28a /fs/nfs
parentfbe77c30e9abcb3429380dec622439991a718e31 (diff)
downloadlinux-0-day-56e0d71ef12f026d96213e45a662bde6bbff4676.tar.gz
linux-0-day-56e0d71ef12f026d96213e45a662bde6bbff4676.tar.xz
NFSv4: Fix a hang in OPEN related to server reboot
If the server fails to return the attributes as part of an OPEN reply, and then reboots, we can end up hanging. The reason is that the client attempts to send a GETATTR in order to pick up the missing OPEN call, but fails to release the slot first, causing reboot recovery to deadlock. Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> Fixes: 2e80dbe7ac51a ("NFSv4.1: Close callback races for OPEN, LAYOUTGET...") Cc: stable@vger.kernel.org # v4.8+
Diffstat (limited to 'fs/nfs')
-rw-r--r--fs/nfs/nfs4proc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c
index 4e52ac773d1f5..6e9ff2d9a5bf5 100644
--- a/fs/nfs/nfs4proc.c
+++ b/fs/nfs/nfs4proc.c
@@ -2300,8 +2300,10 @@ static int _nfs4_proc_open(struct nfs4_opendata *data)
if (status != 0)
return status;
}
- if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
+ if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
+ nfs4_sequence_free_slot(&o_res->seq_res);
nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
+ }
return 0;
}