diff options
author | Olga Kornievskaia <[email protected]> | 2019-03-19 12:12:13 -0400 |
---|---|---|
committer | Trond Myklebust <[email protected]> | 2019-03-19 13:17:49 -0400 |
commit | 0cb98abb5bd13b9a636bde603d952d722688b428 (patch) | |
tree | c9fe7f365b92d523148df206649f74d6bdc753f9 | |
parent | 4a9be28c45bf02fa0436808bb6c0baeba30e120e (diff) |
NFSv4.1 don't free interrupted slot on open
Allow the async rpc task for finish and update the open state if needed,
then free the slot. Otherwise, the async rpc unable to decode the reply.
Signed-off-by: Olga Kornievskaia <[email protected]>
Fixes: ae55e59da0e4 ("pnfs: Don't release the sequence slot...")
Cc: [email protected] # v4.18+
Signed-off-by: Trond Myklebust <[email protected]>
-rw-r--r-- | fs/nfs/nfs4proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 6d2812a39287..741ff8c9c6ed 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -2933,7 +2933,8 @@ static int _nfs4_open_and_get_state(struct nfs4_opendata *opendata, } out: - nfs4_sequence_free_slot(&opendata->o_res.seq_res); + if (!opendata->cancelled) + nfs4_sequence_free_slot(&opendata->o_res.seq_res); return ret; } |