diff options
author | Neil Zhang <zhangwm@marvell.com> | 2013-04-11 21:04:59 +0800 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-05-28 09:40:22 +0200 |
commit | c5405a495e88d93cf9b4f4cc91507c7f4afcb901 (patch) | |
tree | c0d33303fb9162c610c5a0f0bc108f746d1e1b69 /kernel/sched/core.c | |
parent | 41261b6a832ea0e788627f6a8707854423f9ff49 (diff) | |
download | linux-stable-c5405a495e88d93cf9b4f4cc91507c7f4afcb901.tar.gz linux-stable-c5405a495e88d93cf9b4f4cc91507c7f4afcb901.tar.bz2 linux-stable-c5405a495e88d93cf9b4f4cc91507c7f4afcb901.zip |
sched: Remove redundant update_runtime notifier
migration_call() will do all the things that update_runtime() does.
So let's remove it.
Furthermore, there is potential risk that the current code will catch
BUG_ON at line 689 of rt.c when do cpu hotplug while there are realtime
threads running because of enabling runtime twice while the rt_runtime
may already changed.
Signed-off-by: Neil Zhang <zhangwm@marvell.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1365685499-26515-1-git-send-email-zhangwm@marvell.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/sched/core.c')
-rw-r--r-- | kernel/sched/core.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c index bfa7e77e0b50..79e48e6a9385 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -6285,9 +6285,6 @@ void __init sched_init_smp(void) hotcpu_notifier(cpuset_cpu_active, CPU_PRI_CPUSET_ACTIVE); hotcpu_notifier(cpuset_cpu_inactive, CPU_PRI_CPUSET_INACTIVE); - /* RT runtime code needs to handle some hotplug events */ - hotcpu_notifier(update_runtime, 0); - init_hrtick(); /* Move init over to a non-isolated CPU */ |