diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-23 21:21:39 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2015-03-23 21:22:08 -0400 |
commit | 2f921b5bb0511fb698681d8ef35c48be7a9116bf (patch) | |
tree | e4f07e4d66f47c7af9142bf13e5851a77acec77f /include/linux | |
parent | 7042cb4eb30967b5eb9eeba04907882f04d6b6e5 (diff) |
lguest: suppress interrupts for single insn, not range.
The last patch reduced our interrupt-suppression region to one address,
so simplify the code somewhat.
Also, remove the obsolete undefined instruction ranges and the comment
which refers to lguest_guest.S instead of head_32.S.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/lguest.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/lguest.h b/include/linux/lguest.h index 9962c6bb1311..6db19f35f7c5 100644 --- a/include/linux/lguest.h +++ b/include/linux/lguest.h | |||
@@ -61,8 +61,8 @@ struct lguest_data { | |||
61 | u32 tsc_khz; | 61 | u32 tsc_khz; |
62 | 62 | ||
63 | /* Fields initialized by the Guest at boot: */ | 63 | /* Fields initialized by the Guest at boot: */ |
64 | /* Instruction range to suppress interrupts even if enabled */ | 64 | /* Instruction to suppress interrupts even if enabled */ |
65 | unsigned long noirq_start, noirq_end; | 65 | unsigned long noirq_iret; |
66 | /* Address above which page tables are all identical. */ | 66 | /* Address above which page tables are all identical. */ |
67 | unsigned long kernel_address; | 67 | unsigned long kernel_address; |
68 | /* The vector to try to use for system calls (0x40 or 0x80). */ | 68 | /* The vector to try to use for system calls (0x40 or 0x80). */ |