mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00

All these functions: - kvm_arch_get_supported_cpuid() - kvm_has_smm(() - kvm_hyperv_expand_features() - kvm_set_max_apic_id() are called after checking for kvm_enabled(), which is false when KVM is not built. Since the compiler elides these functions, their stubs are not used and can be removed. Inspired-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20230904124325.79040-7-philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
25 lines
457 B
C
25 lines
457 B
C
/*
|
|
* QEMU KVM x86 specific function stubs
|
|
*
|
|
* Copyright Linaro Limited 2012
|
|
*
|
|
* Author: Peter Maydell <peter.maydell@linaro.org>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
#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;
|
|
}
|