mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-14 17:53:39 +00:00
1f15d10984
Needed by kvm_para_has_feature(). Reported-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
20 lines
337 B
C
20 lines
337 B
C
#ifndef _ASM_GENERIC_KVM_PARA_H
|
|
#define _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;
|
|
}
|
|
|
|
#endif
|