Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1476344 > unrolled thread

[tip:sched/core] schedcore: Remove duplicated init_task's preempt_notifiers init

Started by"tip-bot for seokhoon.yoon" <tipbot@zytor.com>
First post2016-09-05 14:00 +0200
Last post2016-09-05 14:00 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [tip:sched/core] schedcore: Remove duplicated init_task's  preempt_notifiers init "tip-bot for seokhoon.yoon" <tipbot@zytor.com> - 2016-09-05 14:00 +0200

#1476344 — [tip:sched/core] schedcore: Remove duplicated init_task's preempt_notifiers init

From"tip-bot for seokhoon.yoon" <tipbot@zytor.com>
Date2016-09-05 14:00 +0200
Subject[tip:sched/core] schedcore: Remove duplicated init_task's preempt_notifiers init
Message-ID<se0Jc-3fd-27@gated-at.bofh.it>
Commit-ID:  efca03ecbe29a46c2c5ae539563b6326af9dcba7
Gitweb:     http://git.kernel.org/tip/efca03ecbe29a46c2c5ae539563b6326af9dcba7
Author:     seokhoon.yoon <iamyooon@gmail.com>
AuthorDate: Tue, 16 Aug 2016 18:26:08 +0900
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 5 Sep 2016 13:29:44 +0200

schedcore: Remove duplicated init_task's preempt_notifiers init

init_task's preempt_notifiers is initialized twice:

1) sched_init()
   -> INIT_HLIST_HEAD(&init_task.preempt_notifiers)

2) sched_init()
   -> init_idle(current,) <--- current task is init_task at this time
    -> __sched_fork(,current)
     -> INIT_HLIST_HEAD(&p->preempt_notifiers)

I think the first one is unnecessary, so remove it.

Signed-off-by: seokhoon.yoon <iamyooon@gmail.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>
Link: http://lkml.kernel.org/r/1471339568-5790-1-git-send-email-iamyooon@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 kernel/sched/core.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 7d602f5..90b1961 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -7554,10 +7554,6 @@ void __init sched_init(void)
 
 	set_load_weight(&init_task);
 
-#ifdef CONFIG_PREEMPT_NOTIFIERS
-	INIT_HLIST_HEAD(&init_task.preempt_notifiers);
-#endif
-
 	/*
 	 * The boot idle thread does lazy MMU switching as well:
 	 */

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web