Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
			}
		}