diff options
author | Gleb Natapov <gleb@redhat.com> | 2010-01-13 15:25:06 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-01-13 17:14:16 -0600 |
commit | bb0300dc57c10b3721451b0ff566a03f9276cc77 (patch) | |
tree | 9f9f59b498ee5d5361e72f618f95169323a06d4f /target-i386/cpu.h | |
parent | virtio-blk: remove dead variable in virtio_blk_handle_scsi (diff) | |
download | qemu-kvm-bb0300dc57c10b3721451b0ff566a03f9276cc77.tar.gz qemu-kvm-bb0300dc57c10b3721451b0ff566a03f9276cc77.tar.bz2 qemu-kvm-bb0300dc57c10b3721451b0ff566a03f9276cc77.zip |
Add KVM paravirt cpuid leaf
Initialize KVM paravirt cpuid leaf and allow user to control guest
visible PV features through -cpu flag.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'target-i386/cpu.h')
-rw-r--r-- | target-i386/cpu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/cpu.h b/target-i386/cpu.h index f3834b307..216b00e50 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -701,7 +701,8 @@ typedef struct CPUX86State { uint8_t nmi_pending; uint8_t has_error_code; uint32_t sipi_vector; - + uint32_t cpuid_kvm_features; + /* in order to simplify APIC support, we leave this pointer to the user */ struct APICState *apic_state; |