Skip to content

Commit 56e0d71

Browse files
committed
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: 2e80dbe ("NFSv4.1: Close callback races for OPEN, LAYOUTGET...") Cc: stable@vger.kernel.org # v4.8+
1 parent fbe77c3 commit 56e0d71

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

fs/nfs/nfs4proc.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2300,8 +2300,10 @@ static int _nfs4_proc_open(struct nfs4_opendata *data)
23002300
if (status != 0)
23012301
return status;
23022302
}
2303-
if (!(o_res->f_attr->valid & NFS_ATTR_FATTR))
2303+
if (!(o_res->f_attr->valid & NFS_ATTR_FATTR)) {
2304+
nfs4_sequence_free_slot(&o_res->seq_res);
23042305
nfs4_proc_getattr(server, &o_res->fh, o_res->f_attr, o_res->f_label);
2306+
}
23052307
return 0;
23062308
}
23072309

0 commit comments

Comments
 (0)