Eric B Munson | 3b5d56b | 2012-03-10 14:37:26 -0500 | [diff] [blame] | 1 | #ifndef _ASM_GENERIC_KVM_PARA_H |
| 2 | #define _ASM_GENERIC_KVM_PARA_H |
| 3 | |
David Howells | 8a1ab31 | 2012-10-04 18:20:15 +0100 | [diff] [blame] | 4 | #include <uapi/asm-generic/kvm_para.h> |
| 5 | |
Eric B Munson | 3b5d56b | 2012-03-10 14:37:26 -0500 | [diff] [blame] | 6 | |
| 7 | /* |
| 8 | * This function is used by architectures that support kvm to avoid issuing |
| 9 | * false soft lockup messages. |
| 10 | */ |
| 11 | static inline bool kvm_check_and_clear_guest_paused(void) |
| 12 | { |
| 13 | return false; |
| 14 | } |
| 15 | |
Marcelo Tosatti | 1f15d10 | 2012-04-20 18:21:46 -0300 | [diff] [blame] | 16 | static inline unsigned int kvm_arch_para_features(void) |
| 17 | { |
| 18 | return 0; |
| 19 | } |
| 20 | |
Eric B Munson | 3b5d56b | 2012-03-10 14:37:26 -0500 | [diff] [blame] | 21 | #endif |