mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 09:41:44 +00:00
066a1a5fca
According to include/uapi/linux/kvm_para.h architectures should define kvm_para_available, so add an implementation to asm-generic/kvm_para.h which just returns false. This fixes intel8x0.c build failure on mips with KVM enabled. Signed-off-by: James Hogan <james.hogan@imgtec.com> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Gleb Natapov <gleb@redhat.com> Cc: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Gleb Natapov <gleb@redhat.com>
27 lines
441 B
C
27 lines
441 B
C
#ifndef _ASM_GENERIC_KVM_PARA_H
|
|
#define _ASM_GENERIC_KVM_PARA_H
|
|
|
|
#include <uapi/asm-generic/kvm_para.h>
|
|
|
|
|
|
/*
|
|
* This function is used by architectures that support kvm to avoid issuing
|
|
* false soft lockup messages.
|
|
*/
|
|
static inline bool kvm_check_and_clear_guest_paused(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
static inline unsigned int kvm_arch_para_features(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline bool kvm_para_available(void)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
#endif
|