diff options
author | Peter Zijlstra <[email protected]> | 2020-09-24 13:50:42 +0200 |
---|---|---|
committer | Peter Zijlstra <[email protected]> | 2020-11-17 13:15:28 +0100 |
commit | ec618b84f6e15281cc3660664d34cd0dd2f2579e (patch) | |
tree | af7536d66f934bb1979bf9e9dd2052082ee9eaea /tools/perf/scripts/python/bin/export-to-postgresql-report | |
parent | f97bb5272d9e95d400d6c8643ebb146b3e3e7842 (diff) |
sched: Fix rq->nr_iowait ordering
schedule() ttwu()
deactivate_task(); if (p->on_rq && ...) // false
atomic_dec(&task_rq(p)->nr_iowait);
if (prev->in_iowait)
atomic_inc(&rq->nr_iowait);
Allows nr_iowait to be decremented before it gets incremented,
resulting in more dodgy IO-wait numbers than usual.
Note that because we can now do ttwu_queue_wakelist() before
p->on_cpu==0, we lose the natural ordering and have to further delay
the decrement.
Fixes: c6e7bd7afaeb ("sched/core: Optimize ttwu() spinning on p->on_cpu")
Reported-by: Tejun Heo <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Acked-by: Mel Gorman <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
Diffstat (limited to 'tools/perf/scripts/python/bin/export-to-postgresql-report')
0 files changed, 0 insertions, 0 deletions