diff options
author | Cheng Jian <cj.chengjian@huawei.com> | 2017-08-04 17:19:37 +0800 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-08-10 12:18:18 +0200 |
commit | 18f08dae19990f5fffde92e3a63e0d90cda0f1a8 (patch) | |
tree | 541e061023393f4b24ae0a9a490258319a62c984 /fs | |
parent | 3261ed0b25098f92d36d5ad14524254d8c7fba54 (diff) | |
download | linux-18f08dae19990f5fffde92e3a63e0d90cda0f1a8.tar.gz linux-18f08dae19990f5fffde92e3a63e0d90cda0f1a8.tar.bz2 linux-18f08dae19990f5fffde92e3a63e0d90cda0f1a8.zip |
sched/core: Remove unnecessary initialization init_idle_bootup_task()
init_idle_bootup_task( ) is called in rest_init( ) to switch
the scheduling class of the boot thread to the idle class.
the function only sets:
idle->sched_class = &idle_sched_class;
which has been set in init_idle() called by sched_init():
/*
* The idle tasks have their own, simple scheduling class:
*/
idle->sched_class = &idle_sched_class;
We've already set the boot thread to idle class in
start_kernel()->sched_init()->init_idle()
so it's unnecessary to set it again in
start_kernel()->rest_init()->init_idle_bootup_task()
Signed-off-by: Cheng Jian <cj.chengjian@huawei.com>
Signed-off-by: Xie XiuQi <xiexiuqi@huawei.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: <akpm@linux-foundation.org>
Cc: <huawei.libin@huawei.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1501838377-109720-1-git-send-email-cj.chengjian@huawei.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'fs')
0 files changed, 0 insertions, 0 deletions