hypervisor.h 289 B

123456789101112131415161718
  1. #ifndef __LINUX_HYPEVISOR_H
  2. #define __LINUX_HYPEVISOR_H
  3. /*
  4. * Generic Hypervisor support
  5. * Juergen Gross <jgross@suse.com>
  6. */
  7. #ifdef CONFIG_HYPERVISOR_GUEST
  8. #include <asm/hypervisor.h>
  9. #else
  10. static inline void hypervisor_pin_vcpu(int cpu)
  11. {
  12. }
  13. #endif
  14. #endif /* __LINUX_HYPEVISOR_H */