From: Nishanth Aravamudan <[EMAIL PROTECTED]>

From: Nishanth Aravamudan <[EMAIL PROTECTED]>

Replace schedule_timeout() with msleep() to guarantee the
task delays as expected.

Patch is compile-tested.

Signed-off-by: Nishanth Aravamudan <[EMAIL PROTECTED]>
Signed-off-by: Domen Puncer <[EMAIL PROTECTED]>

---
 smpboot.c |    3 +--
 1 files changed, 1 insertion(+), 2 deletions(-)

Index: quilt/arch/i386/kernel/smpboot.c
===================================================================
--- quilt.orig/arch/i386/kernel/smpboot.c
+++ quilt/arch/i386/kernel/smpboot.c
@@ -1327,8 +1327,7 @@ void __cpu_die(unsigned int cpu)
                        printk ("CPU %d is now offline\n", cpu);
                        return;
                }
-               current->state = TASK_UNINTERRUPTIBLE;
-               schedule_timeout(HZ/10);
+               msleep(100);
        }
        printk(KERN_ERR "CPU %u didn't die...\n", cpu);
 }

--
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to