blob: fa25becbdcaf406faddcf9b00cad76fbfa343b72 [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
David Howells8a1ab312012-10-04 18:20:15 +01004#include <uapi/asm-generic/kvm_para.h>
5
Eric B Munson3b5d56b2012-03-10 14:37:26 -05006
7/*
8 * This function is used by architectures that support kvm to avoid issuing
9 * false soft lockup messages.
10 */
11static inline bool kvm_check_and_clear_guest_paused(void)
12{
13 return false;
14}
15
Marcelo Tosatti1f15d102012-04-20 18:21:46 -030016static inline unsigned int kvm_arch_para_features(void)
17{
18 return 0;
19}
20
James Hogan066a1a52013-05-22 12:29:22 +010021static inline bool kvm_para_available(void)
22{
23 return false;
24}
25
Eric B Munson3b5d56b2012-03-10 14:37:26 -050026#endif