aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/lguest
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2007-07-20 08:11:13 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-07-20 12:05:16 -0400
commite5faff45b381e053c31214713ed783d97f49177b (patch)
tree0a2b906f9f087b33e4ca9cb892f35f649ab67fb6 /drivers/lguest
parentbd6dc742a4b1945861795a66dc27c65365c5f28e (diff)
lguest: fix sense if IF flag on interrupt injection
The sense of the IF bit is backwards in the host interrupt handling. This means we always save "IF=1" on the stack when injecting an interrupt. It turns out this is almost always correct (unless the guest is taking a page fault in an interrupt due to an unpopulated vmalloc mapping), so went unnoticed. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/lguest')
-rw-r--r--drivers/lguest/interrupts_and_traps.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/lguest/interrupts_and_traps.c b/drivers/lguest/interrupts_and_traps.c
index d9de5bbc613f..bee029bb2c7b 100644
--- a/drivers/lguest/interrupts_and_traps.c
+++ b/drivers/lguest/interrupts_and_traps.c
@@ -38,12 +38,12 @@ static void set_guest_interrupt(struct lguest *lg, u32 lo, u32 hi, int has_err)
38 ss = lg->regs->ss; 38 ss = lg->regs->ss;
39 } 39 }
40 40
41 /* We use IF bit in eflags to indicate whether irqs were disabled 41 /* We use IF bit in eflags to indicate whether irqs were enabled
42 (it's always 0, since irqs are enabled when guest is running). */ 42 (it's always 1, since irqs are enabled when guest is running). */
43 eflags = lg->regs->eflags; 43 eflags = lg->regs->eflags;
44 if (get_user(irq_enable, &lg->lguest_data->irq_enabled)) 44 if (get_user(irq_enable, &lg->lguest_data->irq_enabled) == 0
45 irq_enable = 0; 45 && !(irq_enable & X86_EFLAGS_IF))
46 eflags |= (irq_enable & X86_EFLAGS_IF); 46 eflags &= ~X86_EFLAGS_IF;
47 47
48 push_guest_stack(lg, &gstack, eflags); 48 push_guest_stack(lg, &gstack, eflags);
49 push_guest_stack(lg, &gstack, lg->regs->cs); 49 push_guest_stack(lg, &gstack, lg->regs->cs);