diff options
author | Glauber de Oliveira Costa <gcosta@redhat.com> | 2008-01-07 08:05:29 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-01-30 06:50:09 -0500 |
commit | 177e449dc5bd4cf8dc48d66abee61ddf34b126b9 (patch) | |
tree | f0aaea9407971d8f6b9ad4e177a834f1be3aa993 /drivers/lguest/core.c | |
parent | ad8d8f3bc61ec712dd141e1029ae68c47fadc4a7 (diff) |
lguest: per-vcpu interrupt processing.
This patch adapts interrupt processing for using the vcpu struct.
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'drivers/lguest/core.c')
-rw-r--r-- | drivers/lguest/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index 0ea67cb0cc0b..d8e1ac305dc6 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c | |||
@@ -203,7 +203,7 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user) | |||
203 | /* Check if there are any interrupts which can be delivered | 203 | /* Check if there are any interrupts which can be delivered |
204 | * now: if so, this sets up the hander to be executed when we | 204 | * now: if so, this sets up the hander to be executed when we |
205 | * next run the Guest. */ | 205 | * next run the Guest. */ |
206 | maybe_do_interrupt(lg); | 206 | maybe_do_interrupt(cpu); |
207 | 207 | ||
208 | /* All long-lived kernel loops need to check with this horrible | 208 | /* All long-lived kernel loops need to check with this horrible |
209 | * thing called the freezer. If the Host is trying to suspend, | 209 | * thing called the freezer. If the Host is trying to suspend, |