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