KVM: add kvm_arch_para_features stub to asm-generic/kvm_para.h
[platform/adaptation/renesas_rcar/renesas_kernel.git] / include / asm-generic / kvm_para.h
1 #ifndef _ASM_GENERIC_KVM_PARA_H
2 #define _ASM_GENERIC_KVM_PARA_H
3
4
5 /*
6  * This function is used by architectures that support kvm to avoid issuing
7  * false soft lockup messages.
8  */
9 static inline bool kvm_check_and_clear_guest_paused(void)
10 {
11         return false;
12 }
13
14 static inline unsigned int kvm_arch_para_features(void)
15 {
16         return 0;
17 }
18
19 #endif