mirror of https://gitee.com/openkylin/linux.git
NFSv4: Get rid of the bogus RPC_ASSASSINATED(task) checks
There is no real reason to have RPC_ASSASSINATED() checks in the NFS code. As far as it is concerned, this is just an RPC error... Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
452e93523d
commit
a6f03393ec
|
@ -1275,8 +1275,6 @@ static void nfs4_open_confirm_done(struct rpc_task *task, void *calldata)
|
||||||
struct nfs4_opendata *data = calldata;
|
struct nfs4_opendata *data = calldata;
|
||||||
|
|
||||||
data->rpc_status = task->tk_status;
|
data->rpc_status = task->tk_status;
|
||||||
if (RPC_ASSASSINATED(task))
|
|
||||||
return;
|
|
||||||
if (data->rpc_status == 0) {
|
if (data->rpc_status == 0) {
|
||||||
memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
|
memcpy(data->o_res.stateid.data, data->c_res.stateid.data,
|
||||||
sizeof(data->o_res.stateid.data));
|
sizeof(data->o_res.stateid.data));
|
||||||
|
@ -1408,8 +1406,6 @@ static void nfs4_open_done(struct rpc_task *task, void *calldata)
|
||||||
if (!nfs4_sequence_done(task, &data->o_res.seq_res))
|
if (!nfs4_sequence_done(task, &data->o_res.seq_res))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (RPC_ASSASSINATED(task))
|
|
||||||
return;
|
|
||||||
if (task->tk_status == 0) {
|
if (task->tk_status == 0) {
|
||||||
switch (data->o_res.f_attr->mode & S_IFMT) {
|
switch (data->o_res.f_attr->mode & S_IFMT) {
|
||||||
case S_IFREG:
|
case S_IFREG:
|
||||||
|
@ -1860,8 +1856,6 @@ static void nfs4_close_done(struct rpc_task *task, void *data)
|
||||||
|
|
||||||
if (!nfs4_sequence_done(task, &calldata->res.seq_res))
|
if (!nfs4_sequence_done(task, &calldata->res.seq_res))
|
||||||
return;
|
return;
|
||||||
if (RPC_ASSASSINATED(task))
|
|
||||||
return;
|
|
||||||
/* hmm. we are done with the inode, and in the process of freeing
|
/* hmm. we are done with the inode, and in the process of freeing
|
||||||
* the state_owner. we keep this around to process errors
|
* the state_owner. we keep this around to process errors
|
||||||
*/
|
*/
|
||||||
|
@ -3907,8 +3901,6 @@ static void nfs4_locku_done(struct rpc_task *task, void *data)
|
||||||
|
|
||||||
if (!nfs4_sequence_done(task, &calldata->res.seq_res))
|
if (!nfs4_sequence_done(task, &calldata->res.seq_res))
|
||||||
return;
|
return;
|
||||||
if (RPC_ASSASSINATED(task))
|
|
||||||
return;
|
|
||||||
switch (task->tk_status) {
|
switch (task->tk_status) {
|
||||||
case 0:
|
case 0:
|
||||||
memcpy(calldata->lsp->ls_stateid.data,
|
memcpy(calldata->lsp->ls_stateid.data,
|
||||||
|
@ -4119,8 +4111,6 @@ static void nfs4_lock_done(struct rpc_task *task, void *calldata)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
data->rpc_status = task->tk_status;
|
data->rpc_status = task->tk_status;
|
||||||
if (RPC_ASSASSINATED(task))
|
|
||||||
goto out;
|
|
||||||
if (data->arg.new_lock_owner != 0) {
|
if (data->arg.new_lock_owner != 0) {
|
||||||
if (data->rpc_status == 0)
|
if (data->rpc_status == 0)
|
||||||
nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
|
nfs_confirm_seqid(&data->lsp->ls_seqid, 0);
|
||||||
|
|
Loading…
Reference in New Issue