public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sched: don't wait in kthread_bind for presmp initcalls
@ 2013-07-29 17:19 Abbas Raza
  2013-07-30  3:27 ` Xie XiuQi
  0 siblings, 1 reply; 2+ messages in thread
From: Abbas Raza @ 2013-07-29 17:19 UTC (permalink / raw)
  To: linux-kernel; +Cc: Abbas Raza, Peter Zijlstra, Ingo Molnar

From: Abbas Raza <Abbas_Raza@mentor.com>

wait_task_inactive shouldn't be called in kthread_bind for presmp
initcalls the same way it is done in !SMP case.

more info here:
http://permalink.gmane.org/gmane.linux.kernel.embedded/4046

This patch improves boot time for pre-smp initcalls as given below

initcall spawn_ksoftirqd+0x0/0x54 returned 0 after 0 usecs
initcall init_workqueues+0x0/0x358 returned 0 after 0 usecs
initcall cpu_stop_init+0x0/0xcc returned 0 after 0 usecs

boot time without this patch:

initcall spawn_ksoftirqd+0x0/0x54 returned 0 after 9765 usecs
initcall init_workqueues+0x0/0x358 returned 0 after 9765 usecs
initcall cpu_stop_init+0x0/0xcc returned 0 after 19531 usecs

Signed-off-by: Abbas Raza <Abbas_Raza@mentor.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@redhat.com>

---
 kernel/kthread.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/kernel/kthread.c b/kernel/kthread.c
index b579af5..80f19b5 100644
--- a/kernel/kthread.c
+++ b/kernel/kthread.c
@@ -221,10 +221,15 @@ EXPORT_SYMBOL(kthread_create_on_node);
  */
 void kthread_bind(struct task_struct *p, unsigned int cpu)
 {
-	/* Must have done schedule() in kthread() before we set_task_cpu */
-	if (!wait_task_inactive(p, TASK_UNINTERRUPTIBLE)) {
-		WARN_ON(1);
-		return;
+	if (!((num_online_cpus() == 1) && !cpu)) {
+		/*
+		 * Must have done schedule() in kthread() before
+		 * we set_task_cpu
+		 */
+		if (!wait_task_inactive(p, TASK_UNINTERRUPTIBLE)) {
+			WARN_ON(1);
+			return;
+		}
 	}
 
 	/* It's safe because the task is inactive. */
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-07-30  3:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-29 17:19 [PATCH] sched: don't wait in kthread_bind for presmp initcalls Abbas Raza
2013-07-30  3:27 ` Xie XiuQi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox