Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'nfs-for-6.10-3' of git://git.linux-nfs.org/projects/trondmy/linux-nfs

Pull NFS client fix from Trond Myklebust:

- One more SUNRPC fix for the NFSv4.x backchannel timeouts

* tag 'nfs-for-6.10-3' of git://git.linux-nfs.org/projects/trondmy/linux-nfs:
SUNRPC: Fix backchannel reply, again

+4 -1
+4 -1
net/sunrpc/svc.c
··· 1557 1557 */ 1558 1558 void svc_process_bc(struct rpc_rqst *req, struct svc_rqst *rqstp) 1559 1559 { 1560 + struct rpc_timeout timeout = { 1561 + .to_increment = 0, 1562 + }; 1560 1563 struct rpc_task *task; 1561 1564 int proc_error; 1562 - struct rpc_timeout timeout; 1563 1565 1564 1566 /* Build the svc_rqst used by the common processing routine */ 1565 1567 rqstp->rq_xid = req->rq_xid; ··· 1614 1612 timeout.to_initval = req->rq_xprt->timeout->to_initval; 1615 1613 timeout.to_retries = req->rq_xprt->timeout->to_retries; 1616 1614 } 1615 + timeout.to_maxval = timeout.to_initval; 1617 1616 memcpy(&req->rq_snd_buf, &rqstp->rq_res, sizeof(req->rq_snd_buf)); 1618 1617 task = rpc_run_bc_task(req, &timeout); 1619 1618