mshyperv.h 704 B

12345678910111213141516171819202122232425262728
  1. #ifndef _ASM_X86_MSHYPER_H
  2. #define _ASM_X86_MSHYPER_H
  3. #include <linux/types.h>
  4. #include <linux/interrupt.h>
  5. #include <asm/hyperv.h>
  6. struct ms_hyperv_info {
  7. u32 features;
  8. u32 misc_features;
  9. u32 hints;
  10. };
  11. extern struct ms_hyperv_info ms_hyperv;
  12. void hyperv_callback_vector(void);
  13. #ifdef CONFIG_TRACING
  14. #define trace_hyperv_callback_vector hyperv_callback_vector
  15. #endif
  16. void hyperv_vector_handler(struct pt_regs *regs);
  17. void hv_setup_vmbus_irq(void (*handler)(void));
  18. void hv_remove_vmbus_irq(void);
  19. void hv_setup_kexec_handler(void (*handler)(void));
  20. void hv_remove_kexec_handler(void);
  21. void hv_setup_crash_handler(void (*handler)(struct pt_regs *regs));
  22. void hv_remove_crash_handler(void);
  23. #endif