mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 02:25:00 -05:00
rxrpc: don't multiply with HZ twice
rxrpc_resend_timeout has an initial value of 4 * HZ; use it as-is. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c03ae533a9
commit
765dd3bb44
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ static void rxrpc_resend(struct rxrpc_call *call)
|
|||
sp->resend_at = jiffies + 3;
|
||||
} else {
|
||||
sp->resend_at =
|
||||
jiffies + rxrpc_resend_timeout * HZ;
|
||||
jiffies + rxrpc_resend_timeout;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue