net: fix race condition in several drivers when reading stats
[linux-2.6/btrfs-unstable.git] / include / asm-generic / kvm_para.h
blob5cba37f9eae1ac50d02d47c6c610216d1e0ad7b5
1 #ifndef _ASM_GENERIC_KVM_PARA_H
2 #define _ASM_GENERIC_KVM_PARA_H
4 #ifdef __KERNEL__
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)
12 return false;
15 static inline unsigned int kvm_arch_para_features(void)
17 return 0;
20 #endif /* _KERNEL__ */
22 #endif