diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-12-14 12:26:17 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-18 11:26:25 -0600 |
commit | 31827373f03b0ff1550d45ddef0ca1305a2ae70d (patch) | |
tree | 77898916e1a3113313231ffe8396889b6acc7394 /target-i386/cpu.h | |
parent | 02c2b87fff97e77a1f6033fb09f53afa267c0c1e (diff) |
kvm: x86: Use separate exception_injected CPUState field
Marcelo correctly remarked that there are usage conflicts between QEMU
core code and KVM /wrt exception_index. So spend a separate field and
also save/restore it properly.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 9ef1be4828..afb4da5ea4 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -694,6 +694,7 @@ typedef struct CPUX86State { /* For KVM */ uint32_t mp_state; + int32_t exception_injected; int32_t interrupt_injected; uint8_t soft_interrupt; uint8_t nmi_injected; |