Skip to content

Commit aeb8397

Browse files
Nishanth AravamudanLinus Torvalds
Nishanth Aravamudan
authored and
Linus Torvalds
committed
[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 <[email protected]> Signed-off-by: Domen Puncer <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent f4c9925 commit aeb8397

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

arch/i386/kernel/smpboot.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1330,8 +1330,7 @@ void __cpu_die(unsigned int cpu)
13301330
printk ("CPU %d is now offline\n", cpu);
13311331
return;
13321332
}
1333-
current->state = TASK_UNINTERRUPTIBLE;
1334-
schedule_timeout(HZ/10);
1333+
msleep(100);
13351334
}
13361335
printk(KERN_ERR "CPU %u didn't die...\n", cpu);
13371336
}

0 commit comments

Comments
 (0)