Commit 9b492e65 authored by Jeff Layton's avatar Jeff Layton Committed by Ben Hutchings

nfsd: set timeparms.to_maxval in setup_callback_client

commit 3758cf7e upstream.

...otherwise the logic in the timeout handling doesn't work correctly.
Spotted-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
[bwh: Backported to 3.2: max_cb_time() takes no parameters]
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 0d71d4e4
......@@ -633,9 +633,11 @@ static int max_cb_time(void)
static int setup_callback_client(struct nfs4_client *clp, struct nfs4_cb_conn *conn, struct nfsd4_session *ses)
{
int maxtime = max_cb_time();
struct rpc_timeout timeparms = {
.to_initval = max_cb_time(),
.to_initval = maxtime,
.to_retries = 0,
.to_maxval = maxtime,
};
struct rpc_create_args args = {
.net = &init_net,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment