Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 68442
b: refs/heads/master
c: 8a45450
h: refs/heads/master
v: v3
  • Loading branch information
Avi Kivity committed Oct 13, 2007
1 parent b8b5509 commit 20dc942
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0967b7bf1c22b55777aba46ff616547feed0b141
refs/heads/master: 8a45450d0a559912873428077908f9bc1411042c
34 changes: 15 additions & 19 deletions trunk/include/linux/kvm.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,9 @@ struct kvm_ioapic_state {
} redirtbl[KVM_IOAPIC_NUM_PINS];
};

enum kvm_irqchip_id {
KVM_IRQCHIP_PIC_MASTER = 0,
KVM_IRQCHIP_PIC_SLAVE = 1,
KVM_IRQCHIP_IOAPIC = 2,
};
#define KVM_IRQCHIP_PIC_MASTER 0
#define KVM_IRQCHIP_PIC_SLAVE 1
#define KVM_IRQCHIP_IOAPIC 2

struct kvm_irqchip {
__u32 chip_id;
Expand All @@ -106,20 +104,18 @@ struct kvm_irqchip {
} chip;
};

enum kvm_exit_reason {
KVM_EXIT_UNKNOWN = 0,
KVM_EXIT_EXCEPTION = 1,
KVM_EXIT_IO = 2,
KVM_EXIT_HYPERCALL = 3,
KVM_EXIT_DEBUG = 4,
KVM_EXIT_HLT = 5,
KVM_EXIT_MMIO = 6,
KVM_EXIT_IRQ_WINDOW_OPEN = 7,
KVM_EXIT_SHUTDOWN = 8,
KVM_EXIT_FAIL_ENTRY = 9,
KVM_EXIT_INTR = 10,
KVM_EXIT_SET_TPR = 11
};
#define KVM_EXIT_UNKNOWN 0
#define KVM_EXIT_EXCEPTION 1
#define KVM_EXIT_IO 2
#define KVM_EXIT_HYPERCALL 3
#define KVM_EXIT_DEBUG 4
#define KVM_EXIT_HLT 5
#define KVM_EXIT_MMIO 6
#define KVM_EXIT_IRQ_WINDOW_OPEN 7
#define KVM_EXIT_SHUTDOWN 8
#define KVM_EXIT_FAIL_ENTRY 9
#define KVM_EXIT_INTR 10
#define KVM_EXIT_SET_TPR 11

/* for KVM_RUN, returned by mmap(vcpu_fd, offset=0) */
struct kvm_run {
Expand Down

0 comments on commit 20dc942

Please sign in to comment.