mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
rcu: fix tracing bug thinko on boost-balk attribution
The rcu_initiate_boost_trace() function mis-attributed refusals to initiate RCU priority boosting that were in fact due to its not yet being time to boost. This patch fixes the faulty comparison. Signed-off-by: Paul E. McKenney <paul.mckenney@linaro.org> Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
This commit is contained in:
parent
90e6ac3657
commit
a9f4793d89
1 changed files with 1 additions and 1 deletions
|
@ -1086,7 +1086,7 @@ static void rcu_initiate_boost_trace(struct rcu_node *rnp)
|
||||||
else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
|
else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
|
||||||
rnp->n_balk_notblocked++;
|
rnp->n_balk_notblocked++;
|
||||||
else if (rnp->gp_tasks != NULL &&
|
else if (rnp->gp_tasks != NULL &&
|
||||||
ULONG_CMP_GE(jiffies, rnp->boost_time))
|
ULONG_CMP_LT(jiffies, rnp->boost_time))
|
||||||
rnp->n_balk_notyet++;
|
rnp->n_balk_notyet++;
|
||||||
else
|
else
|
||||||
rnp->n_balk_nos++;
|
rnp->n_balk_nos++;
|
||||||
|
|
Loading…
Reference in a new issue