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