summaryrefslogtreecommitdiff
path: root/include/asm-x86/kvm_host.h
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2008-07-03 15:17:01 +0300
committerAvi Kivity <avi@qumranet.com>2008-10-15 10:15:13 +0200
commit937a7eaef9f08342958d17055a350982b7bd92cb (patch)
treed7dbefa1b71617ca08bb6b3d9867d392632e6752 /include/asm-x86/kvm_host.h
parent35920a356957eea9fd1f9da043f93469e8d72eab (diff)
KVM: Add a pending interrupt queue
Similar to the exception queue, this hold interrupts that have been accepted by the virtual processor core but not yet injected. Not yet used. Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include/asm-x86/kvm_host.h')
-rw-r--r--include/asm-x86/kvm_host.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-x86/kvm_host.h b/include/asm-x86/kvm_host.h
index 7cf69fd1dcfe..65c6a0e5b739 100644
--- a/include/asm-x86/kvm_host.h
+++ b/include/asm-x86/kvm_host.h
@@ -275,6 +275,11 @@ struct kvm_vcpu_arch {
u32 error_code;
} exception;
+ struct kvm_queued_interrupt {
+ bool pending;
+ u8 nr;
+ } interrupt;
+
struct {
int active;
u8 save_iopl;