Commit 765dd3bb authored by Florian Westphal's avatar Florian Westphal Committed by David S. Miller

rxrpc: don't multiply with HZ twice

rxrpc_resend_timeout has an initial value of 4 * HZ; use it as-is.
Signed-off-by: default avatarFlorian Westphal <fw@strlen.de>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c03ae533
...@@ -260,7 +260,7 @@ static void rxrpc_resend(struct rxrpc_call *call) ...@@ -260,7 +260,7 @@ static void rxrpc_resend(struct rxrpc_call *call)
sp->resend_at = jiffies + 3; sp->resend_at = jiffies + 3;
} else { } else {
sp->resend_at = sp->resend_at =
jiffies + rxrpc_resend_timeout * HZ; jiffies + rxrpc_resend_timeout;
} }
} }
......
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