diff options
author | Valentin Schneider <valentin.schneider@arm.com> | 2018-07-04 06:17:46 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-09-10 05:05:52 -0400 |
commit | e90c8fe15a3bf93a23088bcf1a56a0fa391d4e50 (patch) | |
tree | a04280c786bd43f82cb01576a8d8ff5786bb69a6 | |
parent | 575638d1047eb057a5cdf95cc0b3c084e1279508 (diff) |
sched/fair: Wrap rq->rd->overload accesses with READ/WRITE_ONCE()
This variable can be read and set locklessly within update_sd_lb_stats().
As such, READ/WRITE_ONCE() are added to make sure nothing terribly wrong
can happen because of the compiler.
Signed-off-by: Valentin Schneider <valentin.schneider@arm.com>
Signed-off-by: Morten Rasmussen <morten.rasmussen@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: dietmar.eggemann@arm.com
Cc: gaku.inami.xh@renesas.com
Cc: vincent.guittot@linaro.org
Link: http://lkml.kernel.org/r/1530699470-29808-9-git-send-email-morten.rasmussen@arm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | kernel/sched/fair.c | 6 | ||||
-rw-r--r-- | kernel/sched/sched.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 23017939ecab..d9c4e97bfebd 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c | |||
@@ -8058,8 +8058,8 @@ next_group: | |||
8058 | 8058 | ||
8059 | if (!env->sd->parent) { | 8059 | if (!env->sd->parent) { |
8060 | /* update overload indicator if we are at root domain */ | 8060 | /* update overload indicator if we are at root domain */ |
8061 | if (env->dst_rq->rd->overload != overload) | 8061 | if (READ_ONCE(env->dst_rq->rd->overload) != overload) |
8062 | env->dst_rq->rd->overload = overload; | 8062 | WRITE_ONCE(env->dst_rq->rd->overload, overload); |
8063 | } | 8063 | } |
8064 | } | 8064 | } |
8065 | 8065 | ||
@@ -9502,7 +9502,7 @@ static int idle_balance(struct rq *this_rq, struct rq_flags *rf) | |||
9502 | rq_unpin_lock(this_rq, rf); | 9502 | rq_unpin_lock(this_rq, rf); |
9503 | 9503 | ||
9504 | if (this_rq->avg_idle < sysctl_sched_migration_cost || | 9504 | if (this_rq->avg_idle < sysctl_sched_migration_cost || |
9505 | !this_rq->rd->overload) { | 9505 | !READ_ONCE(this_rq->rd->overload)) { |
9506 | 9506 | ||
9507 | rcu_read_lock(); | 9507 | rcu_read_lock(); |
9508 | sd = rcu_dereference_check_sched_domain(this_rq->sd); | 9508 | sd = rcu_dereference_check_sched_domain(this_rq->sd); |
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index 4d181478c5b8..938063639793 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h | |||
@@ -1697,8 +1697,8 @@ static inline void add_nr_running(struct rq *rq, unsigned count) | |||
1697 | 1697 | ||
1698 | if (prev_nr < 2 && rq->nr_running >= 2) { | 1698 | if (prev_nr < 2 && rq->nr_running >= 2) { |
1699 | #ifdef CONFIG_SMP | 1699 | #ifdef CONFIG_SMP |
1700 | if (!rq->rd->overload) | 1700 | if (!READ_ONCE(rq->rd->overload)) |
1701 | rq->rd->overload = 1; | 1701 | WRITE_ONCE(rq->rd->overload, 1); |
1702 | #endif | 1702 | #endif |
1703 | } | 1703 | } |
1704 | 1704 | ||