--- x/kernel/stop_machine.c.~1~ 2004-04-04 08:09:33.000000000 +0200 +++ x/kernel/stop_machine.c 2004-04-05 01:54:00.719800824 +0200 @@ -149,10 +149,10 @@ static int do_stop(void *_smdata) complete(&smdata->done); /* Wait for kthread_stop */ - __set_current_state(TASK_INTERRUPTIBLE); + set_current_state(TASK_INTERRUPTIBLE); while (!kthread_should_stop()) { schedule(); - __set_current_state(TASK_INTERRUPTIBLE); + set_current_state(TASK_INTERRUPTIBLE); } __set_current_state(TASK_RUNNING); return ret;