Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef _ASM_GENERIC_KVM_PARA_H
0003 #define _ASM_GENERIC_KVM_PARA_H
0004 
0005 #include <uapi/asm-generic/kvm_para.h>
0006 
0007 
0008 /*
0009  * This function is used by architectures that support kvm to avoid issuing
0010  * false soft lockup messages.
0011  */
0012 static inline bool kvm_check_and_clear_guest_paused(void)
0013 {
0014     return false;
0015 }
0016 
0017 static inline unsigned int kvm_arch_para_features(void)
0018 {
0019     return 0;
0020 }
0021 
0022 static inline unsigned int kvm_arch_para_hints(void)
0023 {
0024     return 0;
0025 }
0026 
0027 static inline bool kvm_para_available(void)
0028 {
0029     return false;
0030 }
0031 
0032 #endif