Skip to content

Commit 6ddc9de

Browse files
chuckleverTrond Myklebust
authored andcommitted
SUNRPC: Fix backchannel reply, again
I still see "RPC: Could not send backchannel reply error: -110" quite often, along with slow-running tests. Debugging shows that the backchannel is still stumbling when it has to queue a callback reply on a busy transport. Note that every one of these timeouts causes a connection loss by virtue of the xprt_conditional_disconnect() call in that arm of call_cb_transmit_status(). I found that setting to_maxval is necessary to get the RPC timeout logic to behave whenever to_exponential is not set. Fixes: 57331a5 ("NFSv4.1: Use the nfs_client's rpc timeouts for backchannel") Signed-off-by: Chuck Lever <[email protected]> Reviewed-by: Benjamin Coddington <[email protected]> Signed-off-by: Trond Myklebust <[email protected]>
1 parent 6ba59ff commit 6ddc9de

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

net/sunrpc/svc.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1557,9 +1557,11 @@ void svc_process(struct svc_rqst *rqstp)
15571557
*/
15581558
void svc_process_bc(struct rpc_rqst *req, struct svc_rqst *rqstp)
15591559
{
1560+
struct rpc_timeout timeout = {
1561+
.to_increment = 0,
1562+
};
15601563
struct rpc_task *task;
15611564
int proc_error;
1562-
struct rpc_timeout timeout;
15631565

15641566
/* Build the svc_rqst used by the common processing routine */
15651567
rqstp->rq_xid = req->rq_xid;
@@ -1612,6 +1614,7 @@ void svc_process_bc(struct rpc_rqst *req, struct svc_rqst *rqstp)
16121614
timeout.to_initval = req->rq_xprt->timeout->to_initval;
16131615
timeout.to_retries = req->rq_xprt->timeout->to_retries;
16141616
}
1617+
timeout.to_maxval = timeout.to_initval;
16151618
memcpy(&req->rq_snd_buf, &rqstp->rq_res, sizeof(req->rq_snd_buf));
16161619
task = rpc_run_bc_task(req, &timeout);
16171620

0 commit comments

Comments
 (0)