* Damien Wyart <damien.wyart@free.fr> wrote:
does the patch below fix that problem for you?
Ingo
Index: linux/kernel/sched.c
===================================================================
--- linux.orig/kernel/sched.c
+++ linux/kernel/sched.c
@@ -7138,7 +7138,7 @@ static int load_balance_monitor(void *un
else if (timeout < sysctl_sched_max_bal_int_shares)
timeout *= 2;
- msleep(timeout);
+ msleep_interruptible(timeout);
}
return 0;
-