diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-12-18 23:20:10 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-02-25 15:00:07 -0300 |
commit | 9e9d3863adcbd1ffeca30f240f49805b00ba0d87 (patch) | |
tree | 5d62dff4725fea50e138e64c13afd17a3a394f44 /target-i386/kvm.c | |
parent | 18b0e4e77142ace948497a053bd5b56c1b849592 (diff) | |
download | qemu-9e9d3863adcbd1ffeca30f240f49805b00ba0d87.zip qemu-9e9d3863adcbd1ffeca30f240f49805b00ba0d87.tar.gz qemu-9e9d3863adcbd1ffeca30f240f49805b00ba0d87.tar.bz2 |
target-i386: Move CPUX86State.cpuid_apic_id to X86CPU.apic_id
The field doesn't need to be inside CPUState, and it is not specific for
the CPUID instruction, so move and rename it.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/kvm.c')
-rw-r--r-- | target-i386/kvm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-i386/kvm.c b/target-i386/kvm.c index 40d6a14..27fe2be 100644 --- a/target-i386/kvm.c +++ b/target-i386/kvm.c @@ -430,7 +430,7 @@ static void cpu_update_state(void *opaque, int running, RunState state) unsigned long kvm_arch_vcpu_id(CPUState *cs) { X86CPU *cpu = X86_CPU(cs); - return cpu->env.cpuid_apic_id; + return cpu->apic_id; } #ifndef KVM_CPUID_SIGNATURE_NEXT |