mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 17:51:57 +09:00
NFSv4: don't reprocess cached open CLAIM_PREVIOUS
commit d2bfda2e7a upstream.
Cached opens have already been handled by _nfs4_opendata_reclaim_to_nfs4_state
and can safely skip being reprocessed, but must still call update_open_stateid
to make sure that all active fmodes are recovered.
Signed-off-by: Weston Andros Adamson <dros@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
a5178adbed
commit
231817ee68
@@ -1159,10 +1159,13 @@ _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
|
||||
struct nfs4_state *state = data->state;
|
||||
int ret;
|
||||
|
||||
/* allow cached opens (!rpc_done && !rpc_status) */
|
||||
if (!data->rpc_done && data->rpc_status) {
|
||||
ret = data->rpc_status;
|
||||
goto err;
|
||||
if (!data->rpc_done) {
|
||||
if (data->rpc_status) {
|
||||
ret = data->rpc_status;
|
||||
goto err;
|
||||
}
|
||||
/* cached opens have already been processed */
|
||||
goto update;
|
||||
}
|
||||
|
||||
ret = -ENOMEM;
|
||||
@@ -1176,6 +1179,7 @@ _nfs4_opendata_reclaim_to_nfs4_state(struct nfs4_opendata *data)
|
||||
|
||||
if (data->o_res.delegation_type != 0)
|
||||
nfs4_opendata_check_deleg(data, state);
|
||||
update:
|
||||
update_open_stateid(state, &data->o_res.stateid, NULL,
|
||||
data->o_arg.fmode);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user