H. Peter Anvin | e08cae4 | 2010-05-07 16:57:28 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_MSHYPER_H |
| 2 | #define _ASM_X86_MSHYPER_H |
Ky Srinivasan | a2a47c6 | 2010-05-06 12:08:41 -0700 | [diff] [blame] | 3 | |
H. Peter Anvin | e08cae4 | 2010-05-07 16:57:28 -0700 | [diff] [blame] | 4 | #include <linux/types.h> |
| 5 | #include <asm/hyperv.h> |
| 6 | |
| 7 | struct ms_hyperv_info { |
| 8 | u32 features; |
| 9 | u32 hints; |
| 10 | }; |
| 11 | |
| 12 | extern struct ms_hyperv_info ms_hyperv; |
Ky Srinivasan | a2a47c6 | 2010-05-06 12:08:41 -0700 | [diff] [blame] | 13 | |
K. Y. Srinivasan | bc2b033 | 2013-02-03 17:22:39 -0800 | [diff] [blame^] | 14 | void hyperv_callback_vector(void); |
| 15 | void hyperv_vector_handler(struct pt_regs *regs); |
| 16 | void hv_register_vmbus_handler(int irq, irq_handler_t handler); |
| 17 | |
Ky Srinivasan | a2a47c6 | 2010-05-06 12:08:41 -0700 | [diff] [blame] | 18 | #endif |