Messages in this thread Patch in this message |  | | | Subject | [patch 06/12] i386/traps: replace schedule_timeout() with ssleep() | | From | domen@coderock ... | | Date | Sat, 05 Mar 2005 16:35:25 +0100 |
| |
Please consider applying.
Use ssleep() instead of schedule_timeout() to guarantee the task delays as expected.
Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Signed-off-by: Domen Puncer <domen@coderock.org> ---
kj-domen/arch/i386/kernel/traps.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN arch/i386/kernel/traps.c~ssleep-arch_i386_kernel_traps arch/i386/kernel/traps.c --- kj/arch/i386/kernel/traps.c~ssleep-arch_i386_kernel_traps 2005-03-05 16:11:14.000000000 +0100 +++ kj-domen/arch/i386/kernel/traps.c 2005-03-05 16:11:14.000000000 +0100 @@ -345,8 +345,7 @@ void die(const char * str, struct pt_reg if (panic_on_oops) { printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n"); - set_current_state(TASK_UNINTERRUPTIBLE); - schedule_timeout(5 * HZ); + ssleep(5); panic("Fatal exception"); } do_exit(SIGSEGV); _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |