blob: 05ef7e7059393fe137bea015243dab960ee34a89 [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
14#endif