2005-11-07 07:53:18

by Anton Blanchard

[permalink] [raw]
Subject: [PATCH] quieten softlockup at boot


On a large SMP box we get a lot of softlockup thread XX started lines.
Any objections if we remove them?

Signed-off-by: Anton Blanchard <[email protected]>
---

Index: build/kernel/softlockup.c
===================================================================
--- build.orig/kernel/softlockup.c 2005-09-15 17:33:50.000000000 +1000
+++ build/kernel/softlockup.c 2005-10-06 21:52:14.000000000 +1000
@@ -75,8 +75,6 @@
struct sched_param param = { .sched_priority = 99 };
int this_cpu = (long) __bind_cpu;

- printk("softlockup thread %d started up.\n", this_cpu);
-
sched_setscheduler(current, SCHED_FIFO, &param);
current->flags |= PF_NOFREEZE;


2005-11-07 08:15:19

by Ingo Molnar

[permalink] [raw]
Subject: Re: [PATCH] quieten softlockup at boot


* Anton Blanchard <[email protected]> wrote:

>
> On a large SMP box we get a lot of softlockup thread XX started lines.
> Any objections if we remove them?
>
> Signed-off-by: Anton Blanchard <[email protected]>

sure, fine with me - it was just a debugging thing.

Acked-by: Ingo Molnar <[email protected]>

Ingo