blob: 9a7bbadb688d174c99a37a3861fdbba9f52fa1ac [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
4
5/*
6 * This function is used by architectures that support kvm to avoid issuing
7 * false soft lockup messages.
8 */
9static inline bool kvm_check_and_clear_guest_paused(void)
10{
11 return false;
12}
13
Marcelo Tosatti1f15d102012-04-20 18:21:46 -030014static inline unsigned int kvm_arch_para_features(void)
15{
16 return 0;
17}
18
Eric B Munson3b5d56b2012-03-10 14:37:26 -050019#endif