mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-31 04:06:46 +00:00 
			
		
		
		
	 e1e43813e7
			
		
	
	
		e1e43813e7
		
	
	
	
	
		
			
			Currently, QEMU is overriding KVM_GET_SUPPORTED_CPUID's answer for the WAITPKG bit depending on the "-overcommit cpu-pm" setting. This is a bad idea because it does not even check if the host supports it, but it can be done in x86_cpu_realizefn just like we do for the MONITOR bit. This patch moves it there, while making it conditional on host support for the related UMWAIT MSR. Cc: qemu-stable@nongnu.org Reported-by: Maxim Levitsky <mlevitsk@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QEMU KVM support -- x86 specific functions.
 | |
|  *
 | |
|  * Copyright (c) 2012 Linaro Limited
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef QEMU_KVM_I386_H
 | |
| #define QEMU_KVM_I386_H
 | |
| 
 | |
| #include "sysemu/kvm.h"
 | |
| 
 | |
| #define kvm_apic_in_kernel() (kvm_irqchip_in_kernel())
 | |
| 
 | |
| #ifdef CONFIG_KVM
 | |
| 
 | |
| #define kvm_pit_in_kernel() \
 | |
|     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
 | |
| #define kvm_pic_in_kernel()  \
 | |
|     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
 | |
| #define kvm_ioapic_in_kernel() \
 | |
|     (kvm_irqchip_in_kernel() && !kvm_irqchip_is_split())
 | |
| 
 | |
| #else
 | |
| 
 | |
| #define kvm_pit_in_kernel()      0
 | |
| #define kvm_pic_in_kernel()      0
 | |
| #define kvm_ioapic_in_kernel()   0
 | |
| 
 | |
| #endif  /* CONFIG_KVM */
 | |
| 
 | |
| bool kvm_allows_irq0_override(void);
 | |
| bool kvm_has_smm(void);
 | |
| bool kvm_has_adjust_clock_stable(void);
 | |
| bool kvm_has_exception_payload(void);
 | |
| void kvm_synchronize_all_tsc(void);
 | |
| void kvm_arch_reset_vcpu(X86CPU *cs);
 | |
| void kvm_arch_do_init_vcpu(X86CPU *cs);
 | |
| 
 | |
| void kvm_put_apicbase(X86CPU *cpu, uint64_t value);
 | |
| 
 | |
| bool kvm_enable_x2apic(void);
 | |
| bool kvm_has_x2apic_api(void);
 | |
| bool kvm_has_waitpkg(void);
 | |
| 
 | |
| bool kvm_hv_vpindex_settable(void);
 | |
| 
 | |
| #endif
 |