diff options
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index cd26decaaf..0426459bba 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -1124,6 +1124,8 @@ typedef struct CPUX86State { TPRAccess tpr_access_type; } CPUX86State; +struct kvm_msrs; + /** * X86CPU: * @env: #CPUX86State @@ -1176,6 +1178,8 @@ struct X86CPU { struct DeviceState *apic_state; struct MemoryRegion *cpu_as_root, *cpu_as_mem, *smram; Notifier machine_done; + + struct kvm_msrs *kvm_msr_buf; }; static inline X86CPU *x86_env_get_cpu(CPUX86State *env) |