[patch 5/5] i386/smpboot: use msleep() instead of schedule_timeout()

From: domen
Date: Thu Jul 14 2005 - 17:07:18 EST


From: Nishanth Aravamudan <nacc@xxxxxxxxxx>


From: Nishanth Aravamudan <nacc@xxxxxxxxxx>

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

Patch is compile-tested.

Signed-off-by: Nishanth Aravamudan <nacc@xxxxxxxxxx>
Signed-off-by: Domen Puncer <domen@xxxxxxxxxxxx>

---
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 majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/