diff options
author | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-07-16 15:38:28 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-07-18 14:43:52 -0400 |
commit | d9aba2b40de6fddd83f2fe3a5ac2bcd2c98fa66b (patch) | |
tree | b69a831696a3769da3fcbe28f5957b83dbfc18d5 /fs/nfs/nfs4state.c | |
parent | 7402a4fedc2bc448100c2d086406c708451b16dc (diff) | |
download | linux-d9aba2b40de6fddd83f2fe3a5ac2bcd2c98fa66b.tar.gz linux-d9aba2b40de6fddd83f2fe3a5ac2bcd2c98fa66b.tar.bz2 linux-d9aba2b40de6fddd83f2fe3a5ac2bcd2c98fa66b.zip |
NFSv4: Don't use the zero stateid with layoutget
The NFSv4.1 protocol explicitly forbids us from using the zero stateid
together with layoutget, so when we see that nfs4_select_rw_stateid()
is unable to return a valid delegation, lock or open stateid, then
we should initiate recovery and retry.
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'fs/nfs/nfs4state.c')
-rw-r--r-- | fs/nfs/nfs4state.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c index f32b02c2bc73..9afd051a4876 100644 --- a/fs/nfs/nfs4state.c +++ b/fs/nfs/nfs4state.c @@ -1064,8 +1064,7 @@ int nfs4_select_rw_stateid(struct nfs4_state *state, * choose to use. */ goto out; - nfs4_copy_open_stateid(dst, state); - ret = 0; + ret = nfs4_copy_open_stateid(dst, state) ? 0 : -EAGAIN; out: if (nfs_server_capable(state->inode, NFS_CAP_STATEID_NFSV41)) dst->seqid = 0; |