[PATCH] i386/smpboot: use msleep() instead of schedule_timeout()
Replace schedule_timeout() with msleep() to guarantee the task delays as expected. Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Signed-off-by: Domen Puncer <domen@coderock.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
f4c9925ccc
commit
aeb8397b6a
1 changed files with 1 additions and 2 deletions
|
@ -1330,8 +1330,7 @@ void __cpu_die(unsigned int cpu)
|
||||||
printk ("CPU %d is now offline\n", cpu);
|
printk ("CPU %d is now offline\n", cpu);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
current->state = TASK_UNINTERRUPTIBLE;
|
msleep(100);
|
||||||
schedule_timeout(HZ/10);
|
|
||||||
}
|
}
|
||||||
printk(KERN_ERR "CPU %u didn't die...\n", cpu);
|
printk(KERN_ERR "CPU %u didn't die...\n", cpu);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue