Commit b3c1d9ec authored by Paul E. McKenney's avatar Paul E. McKenney

rcu: Avoid double multiply by HZ

The rcu_check_gp_start_stall() function multiplies the return value
from rcu_jiffies_till_stall_check() by HZ, but the units are already
in jiffies.  This commit therefore avoids the need for introduction of
a jiffies-squared unit by removing the extraneous multiplication.
Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.ibm.com>
parent 1dfddcdb
......@@ -2603,7 +2603,7 @@ static void force_quiescent_state(void)
static void
rcu_check_gp_start_stall(struct rcu_node *rnp, struct rcu_data *rdp)
{
const unsigned long gpssdelay = rcu_jiffies_till_stall_check() * HZ;
const unsigned long gpssdelay = rcu_jiffies_till_stall_check();
unsigned long flags;
unsigned long j;
struct rcu_node *rnp_root = rcu_get_root();
......
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