diff options
Diffstat (limited to 'drivers/lguest/lguest_user.c')
-rw-r--r-- | drivers/lguest/lguest_user.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/lguest/lguest_user.c b/drivers/lguest/lguest_user.c index b8ee103eed5f..bcdcf3453e78 100644 --- a/drivers/lguest/lguest_user.c +++ b/drivers/lguest/lguest_user.c | |||
@@ -24,8 +24,8 @@ static int break_guest_out(struct lg_cpu *cpu, const unsigned long __user*input) | |||
24 | 24 | ||
25 | if (on) { | 25 | if (on) { |
26 | cpu->break_out = 1; | 26 | cpu->break_out = 1; |
27 | /* Pop it out of the Guest (may be running on different CPU) */ | 27 | if (!wake_up_process(cpu->tsk)) |
28 | wake_up_process(cpu->tsk); | 28 | kick_process(cpu->tsk); |
29 | /* Wait for them to reset it */ | 29 | /* Wait for them to reset it */ |
30 | return wait_event_interruptible(cpu->break_wq, !cpu->break_out); | 30 | return wait_event_interruptible(cpu->break_wq, !cpu->break_out); |
31 | } else { | 31 | } else { |