diff options
Diffstat (limited to 'drivers/lguest/core.c')
-rw-r--r-- | drivers/lguest/core.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/lguest/core.c b/drivers/lguest/core.c index 75b38f2c778a..0ea67cb0cc0b 100644 --- a/drivers/lguest/core.c +++ b/drivers/lguest/core.c | |||
@@ -181,8 +181,8 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user) | |||
181 | /* We stop running once the Guest is dead. */ | 181 | /* We stop running once the Guest is dead. */ |
182 | while (!lg->dead) { | 182 | while (!lg->dead) { |
183 | /* First we run any hypercalls the Guest wants done. */ | 183 | /* First we run any hypercalls the Guest wants done. */ |
184 | if (lg->hcall) | 184 | if (cpu->hcall) |
185 | do_hypercalls(lg); | 185 | do_hypercalls(cpu); |
186 | 186 | ||
187 | /* It's possible the Guest did a NOTIFY hypercall to the | 187 | /* It's possible the Guest did a NOTIFY hypercall to the |
188 | * Launcher, in which case we return from the read() now. */ | 188 | * Launcher, in which case we return from the read() now. */ |
@@ -234,7 +234,7 @@ int run_guest(struct lg_cpu *cpu, unsigned long __user *user) | |||
234 | local_irq_enable(); | 234 | local_irq_enable(); |
235 | 235 | ||
236 | /* Now we deal with whatever happened to the Guest. */ | 236 | /* Now we deal with whatever happened to the Guest. */ |
237 | lguest_arch_handle_trap(lg); | 237 | lguest_arch_handle_trap(cpu); |
238 | } | 238 | } |
239 | 239 | ||
240 | if (lg->dead == ERR_PTR(-ERESTART)) | 240 | if (lg->dead == ERR_PTR(-ERESTART)) |