kvm_para.h 379 B

12345678910111213141516171819202122
  1. #ifndef _ASM_GENERIC_KVM_PARA_H
  2. #define _ASM_GENERIC_KVM_PARA_H
  3. #ifdef __KERNEL__
  4. /*
  5. * This function is used by architectures that support kvm to avoid issuing
  6. * false soft lockup messages.
  7. */
  8. static inline bool kvm_check_and_clear_guest_paused(void)
  9. {
  10. return false;
  11. }
  12. static inline unsigned int kvm_arch_para_features(void)
  13. {
  14. return 0;
  15. }
  16. #endif /* _KERNEL__ */
  17. #endif