From: Philippe Mathieu-Daudé Date: Mon, 9 Oct 2023 10:34:50 +0000 (+0200) Subject: target/i386/hvf: Use x86_cpu in simulate_[rdmsr|wrmsr]() X-Git-Tag: v8.2.0-rc0~19^2~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82b641d6261a58d9fba5a6ce786e7d58a8876e25;p=thirdparty%2Fqemu.git target/i386/hvf: Use x86_cpu in simulate_[rdmsr|wrmsr]() We already have 'x86_cpu = X86_CPU(cpu)'. Use the variable instead of doing another QOM cast with X86_CPU(). Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Reviewed-by: Roman Bolshakov Tested-by: Roman Bolshakov Reviewed-by: Zhao Liu Message-Id: <20231009110239.66778-6-philmd@linaro.org> --- diff --git a/target/i386/hvf/x86_emu.c b/target/i386/hvf/x86_emu.c index ccda5684786..af1f205ecf2 100644 --- a/target/i386/hvf/x86_emu.c +++ b/target/i386/hvf/x86_emu.c @@ -676,7 +676,7 @@ void simulate_rdmsr(struct CPUState *cpu) val = rdtscp() + rvmcs(cpu->accel->fd, VMCS_TSC_OFFSET); break; case MSR_IA32_APICBASE: - val = cpu_get_apic_base(X86_CPU(cpu)->apic_state); + val = cpu_get_apic_base(x86_cpu->apic_state); break; case MSR_IA32_UCODE_REV: val = x86_cpu->ucode_rev; @@ -776,7 +776,7 @@ void simulate_wrmsr(struct CPUState *cpu) case MSR_IA32_TSC: break; case MSR_IA32_APICBASE: - cpu_set_apic_base(X86_CPU(cpu)->apic_state, data); + cpu_set_apic_base(x86_cpu->apic_state, data); break; case MSR_FSBASE: wvmcs(cpu->accel->fd, VMCS_GUEST_FS_BASE, data);