mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
nfsd: set timeparms.to_maxval in setup_callback_client
commit 3758cf7e14 upstream.
...otherwise the logic in the timeout handling doesn't work correctly.
Spotted-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d8639f2438
commit
da05ff98dc
@@ -637,9 +637,11 @@ static struct rpc_cred *get_backchannel_cred(struct nfs4_client *clp, struct rpc
|
||||
|
||||
static int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *conn, struct nfsd4_session *ses)
|
||||
{
|
||||
int maxtime = max_cb_time(clp->net);
|
||||
struct rpc_timeout timeparms = {
|
||||
.to_initval = max_cb_time(clp->net),
|
||||
.to_initval = maxtime,
|
||||
.to_retries = 0,
|
||||
.to_maxval = maxtime,
|
||||
};
|
||||
struct rpc_create_args args = {
|
||||
.net = clp->net,
|
||||
|
||||
Reference in New Issue
Block a user