From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53823) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSys6-00041R-MJ for qemu-devel@nongnu.org; Tue, 03 Mar 2015 21:17:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YSys1-0004aF-Nw for qemu-devel@nongnu.org; Tue, 03 Mar 2015 21:17:14 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33122) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YSys1-0004a9-Gs for qemu-devel@nongnu.org; Tue, 03 Mar 2015 21:17:09 -0500 From: Eduardo Habkost Date: Tue, 3 Mar 2015 23:13:42 -0300 Message-Id: <1425435224-2630-4-git-send-email-ehabkost@redhat.com> In-Reply-To: <1425435224-2630-1-git-send-email-ehabkost@redhat.com> References: <1425435224-2630-1-git-send-email-ehabkost@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH v4 3/5] target-i386: Move CPUX86State.cpuid_apic_id to X86CPU.apic_id List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gu Zheng , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= , Paolo Bonzini 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 Reviewed-by: Andreas F=C3=A4rber Signed-off-by: Eduardo Habkost --- target-i386/cpu-qom.h | 1 + target-i386/cpu.c | 15 +++++++-------- target-i386/cpu.h | 1 - target-i386/kvm.c | 2 +- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/target-i386/cpu-qom.h b/target-i386/cpu-qom.h index b557b61..4a6f48a 100644 --- a/target-i386/cpu-qom.h +++ b/target-i386/cpu-qom.h @@ -93,6 +93,7 @@ typedef struct X86CPU { bool expose_kvm; bool migratable; bool host_features; + uint32_t apic_id; =20 /* if true the CPUID code directly forward host cache leaves to the = guest */ bool cache_info_passthrough; diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 05cac57..1fb1df4 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1690,7 +1690,7 @@ static void x86_cpuid_get_apic_id(Object *obj, Visi= tor *v, void *opaque, const char *name, Error **errp) { X86CPU *cpu =3D X86_CPU(obj); - int64_t value =3D cpu->env.cpuid_apic_id; + int64_t value =3D cpu->apic_id; =20 visit_type_int(v, &value, name, errp); } @@ -1723,11 +1723,11 @@ static void x86_cpuid_set_apic_id(Object *obj, Vi= sitor *v, void *opaque, return; } =20 - if ((value !=3D cpu->env.cpuid_apic_id) && cpu_exists(value)) { + if ((value !=3D cpu->apic_id) && cpu_exists(value)) { error_setg(errp, "CPU with APIC ID %" PRIi64 " exists", value); return; } - cpu->env.cpuid_apic_id =3D value; + cpu->apic_id =3D value; } =20 /* Generic getter for "feature-words" and "filtered-features" properties= */ @@ -2272,7 +2272,8 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index= , uint32_t count, break; case 1: *eax =3D env->cpuid_version; - *ebx =3D (env->cpuid_apic_id << 24) | 8 << 8; /* CLFLUSH size in= quad words, Linux wants it. */ + *ebx =3D (cpu->apic_id << 24) | + 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */ *ecx =3D env->features[FEAT_1_ECX]; *edx =3D env->features[FEAT_1_EDX]; if (cs->nr_cores * cs->nr_threads > 1) { @@ -2721,7 +2722,6 @@ static void mce_init(X86CPU *cpu) #ifndef CONFIG_USER_ONLY static void x86_cpu_apic_create(X86CPU *cpu, Error **errp) { - CPUX86State *env =3D &cpu->env; DeviceState *dev =3D DEVICE(cpu); APICCommonState *apic; const char *apic_type =3D "apic"; @@ -2740,7 +2740,7 @@ static void x86_cpu_apic_create(X86CPU *cpu, Error = **errp) =20 object_property_add_child(OBJECT(cpu), "apic", OBJECT(cpu->apic_state), NULL); - qdev_prop_set_uint8(cpu->apic_state, "id", env->cpuid_apic_id); + qdev_prop_set_uint8(cpu->apic_state, "id", cpu->apic_id); /* TODO: convert to link<> */ apic =3D APIC_COMMON(cpu->apic_state); apic->cpu =3D cpu; @@ -2936,9 +2936,8 @@ static void x86_cpu_initfn(Object *obj) static int64_t x86_cpu_get_arch_id(CPUState *cs) { X86CPU *cpu =3D X86_CPU(cs); - CPUX86State *env =3D &cpu->env; =20 - return env->cpuid_apic_id; + return cpu->apic_id; } =20 static bool x86_cpu_get_paging_enabled(const CPUState *cs) diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 478450c..38bedc2 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -944,7 +944,6 @@ typedef struct CPUX86State { uint32_t cpuid_version; FeatureWordArray features; uint32_t cpuid_model[12]; - uint32_t cpuid_apic_id; =20 /* MTRRs */ uint64_t mtrr_fixed[11]; 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 runnin= g, RunState state) unsigned long kvm_arch_vcpu_id(CPUState *cs) { X86CPU *cpu =3D X86_CPU(cs); - return cpu->env.cpuid_apic_id; + return cpu->apic_id; } =20 #ifndef KVM_CPUID_SIGNATURE_NEXT --=20 2.1.0