Skip to content

Commit

Permalink
SUNRPC: Move RPC retransmission stat counter to xprt_transmit()
Browse files Browse the repository at this point in the history
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
  • Loading branch information
Trond Myklebust committed Sep 30, 2018
1 parent 5f2f6bd commit dcbbeda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 13 deletions.
6 changes: 0 additions & 6 deletions net/sunrpc/clnt.c
Original file line number Diff line number Diff line change
Expand Up @@ -1962,8 +1962,6 @@ call_connect_status(struct rpc_task *task)
static void
call_transmit(struct rpc_task *task)
{
int is_retrans = RPC_WAS_SENT(task);

dprint_status(task);

task->tk_action = call_transmit_status;
Expand All @@ -1973,10 +1971,6 @@ call_transmit(struct rpc_task *task)
if (!xprt_prepare_transmit(task))
return;
xprt_transmit(task);
if (task->tk_status < 0)
return;
if (is_retrans)
task->tk_client->cl_stats->rpcretrans++;
}

/*
Expand Down
19 changes: 12 additions & 7 deletions net/sunrpc/xprt.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,6 @@ int xprt_reserve_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
goto out_sleep;
}
xprt->snd_task = task;
if (req != NULL)
req->rq_ntrans++;

return 1;

Expand Down Expand Up @@ -247,7 +245,6 @@ int xprt_reserve_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
}
if (__xprt_get_cong(xprt, task)) {
xprt->snd_task = task;
req->rq_ntrans++;
return 1;
}
xprt_clear_locked(xprt);
Expand Down Expand Up @@ -281,12 +278,8 @@ static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
static bool __xprt_lock_write_func(struct rpc_task *task, void *data)
{
struct rpc_xprt *xprt = data;
struct rpc_rqst *req;

req = task->tk_rqstp;
xprt->snd_task = task;
if (req)
req->rq_ntrans++;
return true;
}

Expand Down Expand Up @@ -1153,6 +1146,7 @@ void xprt_transmit(struct rpc_task *task)
struct rpc_rqst *req = task->tk_rqstp;
struct rpc_xprt *xprt = req->rq_xprt;
unsigned int connect_cookie;
int is_retrans = RPC_WAS_SENT(task);
int status;

dprintk("RPC: %5u xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
Expand All @@ -1167,14 +1161,25 @@ void xprt_transmit(struct rpc_task *task)
}
}

/*
* Update req->rq_ntrans before transmitting to avoid races with
* xprt_update_rtt(), which needs to know that it is recording a
* reply to the first transmission.
*/
req->rq_ntrans++;

connect_cookie = xprt->connect_cookie;
status = xprt->ops->send_request(req, task);
trace_xprt_transmit(xprt, req->rq_xid, status);
if (status != 0) {
req->rq_ntrans--;
task->tk_status = status;
return;
}

if (is_retrans)
task->tk_client->cl_stats->rpcretrans++;

xprt_inject_disconnect(xprt);

dprintk("RPC: %5u xmit complete\n", task->tk_pid);
Expand Down

0 comments on commit dcbbeda

Please sign in to comment.