sched: Fix use of count for nr_running tracepoint
authorPhil Auld <pauld@redhat.com>
Wed, 5 Aug 2020 20:31:38 +0000 (16:31 -0400)
committerIngo Molnar <mingo@kernel.org>
Thu, 6 Aug 2020 07:36:59 +0000 (09:36 +0200)
The count field is meant to tell if an update to nr_running
is an add or a subtract. Make it do so by adding the missing
minus sign.

Fixes: 9d246053a691 ("sched: Add a tracepoint to track rq->nr_running")
Signed-off-by: Phil Auld <pauld@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20200805203138.1411-1-pauld@redhat.com
kernel/sched/sched.h

index 3fd2838..28709f6 100644 (file)
@@ -1999,7 +1999,7 @@ static inline void sub_nr_running(struct rq *rq, unsigned count)
 {
        rq->nr_running -= count;
        if (trace_sched_update_nr_running_tp_enabled()) {
-               call_trace_sched_update_nr_running(rq, count);
+               call_trace_sched_update_nr_running(rq, -count);
        }
 
        /* Check if we still need preemption */