diff options
Diffstat (limited to 'drivers/lguest/interrupts_and_traps.c')
-rw-r--r-- | drivers/lguest/interrupts_and_traps.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/lguest/interrupts_and_traps.c b/drivers/lguest/interrupts_and_traps.c index 6e99adbe1946..9ea26ad88c9d 100644 --- a/drivers/lguest/interrupts_and_traps.c +++ b/drivers/lguest/interrupts_and_traps.c | |||
@@ -511,9 +511,9 @@ static enum hrtimer_restart clockdev_fn(struct hrtimer *timer) | |||
511 | 511 | ||
512 | /* Remember the first interrupt is the timer interrupt. */ | 512 | /* Remember the first interrupt is the timer interrupt. */ |
513 | set_bit(0, cpu->irqs_pending); | 513 | set_bit(0, cpu->irqs_pending); |
514 | /* If the Guest is actually stopped, we need to wake it up. */ | 514 | /* Guest may be stopped or running on another CPU. */ |
515 | if (cpu->halted) | 515 | if (!wake_up_process(cpu->tsk)) |
516 | wake_up_process(cpu->tsk); | 516 | kick_process(cpu->tsk); |
517 | return HRTIMER_NORESTART; | 517 | return HRTIMER_NORESTART; |
518 | } | 518 | } |
519 | 519 | ||