diff options
author | Valentin Schneider <valentin.schneider@arm.com> | 2018-07-04 06:17:45 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2018-09-10 05:05:52 -0400 |
commit | 575638d1047eb057a5cdf95cc0b3c084e1279508 (patch) | |
tree | 74e5949acd6084adb99a808d8f8c4f3c0ea0b20c | |
parent | dbbad719449e06d73db21598d6eee178f7a54b3b (diff) |
sched/core: Change root_domain->overload type to int
sizeof(_Bool) is implementation defined, so let's just go with 'int' as
is done for other structures e.g. sched_domain_shared->has_idle_cores.
The local 'overload' variable used in update_sd_lb_stats can remain
bool, as it won't impact any struct layout and can be assigned to the
root_domain field.
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-8-git-send-email-morten.rasmussen@arm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | kernel/sched/sched.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h index fe17e0be2d7b..4d181478c5b8 100644 --- a/kernel/sched/sched.h +++ b/kernel/sched/sched.h | |||
@@ -716,7 +716,7 @@ struct root_domain { | |||
716 | cpumask_var_t online; | 716 | cpumask_var_t online; |
717 | 717 | ||
718 | /* Indicate more than one runnable task for any CPU */ | 718 | /* Indicate more than one runnable task for any CPU */ |
719 | bool overload; | 719 | int overload; |
720 | 720 | ||
721 | /* | 721 | /* |
722 | * The bit corresponding to a CPU gets set here if such CPU has more | 722 | * The bit corresponding to a CPU gets set here if such CPU has more |
@@ -1698,7 +1698,7 @@ static inline void add_nr_running(struct rq *rq, unsigned count) | |||
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 (!rq->rd->overload) |
1701 | rq->rd->overload = true; | 1701 | rq->rd->overload = 1; |
1702 | #endif | 1702 | #endif |
1703 | } | 1703 | } |
1704 | 1704 | ||