blob: 5cba37f9eae1ac50d02d47c6c610216d1e0ad7b5 [file] [log] [blame]
Eric B Munson3b5d56b2012-03-10 14:37:26 -05001#ifndef _ASM_GENERIC_KVM_PARA_H
2#define _ASM_GENERIC_KVM_PARA_H
3
Paul Gortmaker322728e2012-05-18 13:59:39 -04004#ifdef __KERNEL__
Eric B Munson3b5d56b2012-03-10 14:37:26 -05005
6/*
7 * This function is used by architectures that support kvm to avoid issuing
8 * false soft lockup messages.
9 */
10static inline bool kvm_check_and_clear_guest_paused(void)
11{
12 return false;
13}
14
Marcelo Tosatti1f15d102012-04-20 18:21:46 -030015static inline unsigned int kvm_arch_para_features(void)
16{
17 return 0;
18}
19
Paul Gortmaker322728e2012-05-18 13:59:39 -040020#endif /* _KERNEL__ */
21
Eric B Munson3b5d56b2012-03-10 14:37:26 -050022#endif