]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rcu: fix tracing bug thinko on boost-balk attribution
authorPaul E. McKenney <paul.mckenney@linaro.org>
Mon, 2 May 2011 10:46:10 +0000 (03:46 -0700)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Fri, 6 May 2011 06:16:56 +0000 (23:16 -0700)
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>
kernel/rcutree_plugin.h

index 22a6a46de7c640dc40866648b40ecef23e593a46..a21413d0581dbc5ef78807d8c63a31b420e4832e 100644 (file)
@@ -1086,7 +1086,7 @@ static void rcu_initiate_boost_trace(struct rcu_node *rnp)
        else if (rnp->gp_tasks != NULL && rnp->qsmask != 0)
                rnp->n_balk_notblocked++;
        else if (rnp->gp_tasks != NULL &&
-                ULONG_CMP_GE(jiffies, rnp->boost_time))
+                ULONG_CMP_LT(jiffies, rnp->boost_time))
                rnp->n_balk_notyet++;
        else
                rnp->n_balk_nos++;