[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 07/13] target/i386: Allow elision of kvm_enable_x2apic()
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 07/13] target/i386: Allow elision of kvm_enable_x2apic() |
Date: |
Mon, 4 Sep 2023 14:43:18 +0200 |
Call kvm_enabled() before kvm_enable_x2apic() to
let the compiler elide its call.
Suggested-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
hw/i386/intel_iommu.c | 2 +-
hw/i386/x86.c | 2 +-
target/i386/kvm/kvm-stub.c | 7 -------
3 files changed, 2 insertions(+), 9 deletions(-)
diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c
index 3ca71df369..c9961ef752 100644
--- a/hw/i386/intel_iommu.c
+++ b/hw/i386/intel_iommu.c
@@ -4053,7 +4053,7 @@ static bool vtd_decide_config(IntelIOMMUState *s, Error
**errp)
error_setg(errp, "eim=on requires accel=kvm,kernel-irqchip=split");
return false;
}
- if (!kvm_enable_x2apic()) {
+ if (kvm_enabled() && !kvm_enable_x2apic()) {
error_setg(errp, "eim=on requires support on the KVM side"
"(X2APIC_API, first shipped in v4.7)");
return false;
diff --git a/hw/i386/x86.c b/hw/i386/x86.c
index a88a126123..d2920af792 100644
--- a/hw/i386/x86.c
+++ b/hw/i386/x86.c
@@ -136,7 +136,7 @@ void x86_cpus_init(X86MachineState *x86ms, int
default_cpu_version)
* With KVM's in-kernel lapic: only if X2APIC API is enabled.
*/
if (x86ms->apic_id_limit > 255 && !xen_enabled() &&
- (!kvm_irqchip_in_kernel() || !kvm_enable_x2apic())) {
+ kvm_enabled() && (!kvm_irqchip_in_kernel() || !kvm_enable_x2apic())) {
error_report("current -smp configuration requires kernel "
"irqchip and X2APIC API support.");
exit(EXIT_FAILURE);
diff --git a/target/i386/kvm/kvm-stub.c b/target/i386/kvm/kvm-stub.c
index f985d9a1d3..62cccebee4 100644
--- a/target/i386/kvm/kvm-stub.c
+++ b/target/i386/kvm/kvm-stub.c
@@ -12,13 +12,6 @@
#include "qemu/osdep.h"
#include "kvm_i386.h"
-#ifndef __OPTIMIZE__
-bool kvm_enable_x2apic(void)
-{
- return false;
-}
-#endif
-
bool kvm_hv_vpindex_settable(void)
{
return false;
--
2.41.0
- Re: [PATCH 01/13] hw/i386/pc: Include missing 'sysemu/tcg.h' header, (continued)
- [PATCH 02/13] hw/i386/pc: Include missing 'cpu.h' header, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 03/13] hw/i386/fw_cfg: Include missing 'cpu.h' header, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 04/13] target/i386/helper: Restrict KVM declarations to system emulation, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 05/13] target/i386/cpu-sysemu: Inline kvm_apic_in_kernel(), Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 06/13] target/i386: Remove unused KVM stubs, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 07/13] target/i386: Allow elision of kvm_enable_x2apic(),
Philippe Mathieu-Daudé <=
- [PATCH 08/13] target/i386: Allow elision of kvm_hv_vpindex_settable(), Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 11/13] sysemu/kvm: Restrict kvm_get_apic_state() to x86 targets, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 09/13] target/i386: Restrict declarations specific to CONFIG_KVM, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 10/13] sysemu/kvm: Restrict kvm_arch_get_supported_cpuid/msr() to x86 targets, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 12/13] sysemu/kvm: Restrict kvm_has_pit_state2() to x86 targets, Philippe Mathieu-Daudé, 2023/09/04
- [PATCH 13/13] sysemu/kvm: Restrict kvm_pc_setup_irq_routing() to x86 targets, Philippe Mathieu-Daudé, 2023/09/04