From: Trond Myklebust Date: Mon, 6 Nov 2017 20:28:11 +0000 (-0500) Subject: NFSv4: Check the open stateid when searching for expired state X-Git-Tag: v4.15-rc1~60^2~11 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=46280d9d3de67f64c5bd30a7bbdc372d69f38d98;p=linux-2.6-block.git NFSv4: Check the open stateid when searching for expired state Signed-off-by: Trond Myklebust Signed-off-by: Anna Schumaker --- diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index b6a0cf7fa1f6..ff2794412e6f 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -1431,6 +1431,11 @@ void nfs_inode_find_state_and_recover(struct inode *inode, found = true; continue; } + if (nfs4_stateid_match_other(&state->open_stateid, stateid) && + nfs4_state_mark_reclaim_nograce(clp, state)) { + found = true; + continue; + } if (nfs_state_lock_state_matches_stateid(state, stateid) && nfs4_state_mark_reclaim_nograce(clp, state)) found = true;