diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2026-02-13 11:24:40 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2026-07-20 21:51:02 +0000 |
| commit | 6e93f5e4d6932c423b89dff8fc08d86f8bdeb7b9 (patch) | |
| tree | 82ca6a5c617fd9a19549dfe56245b3cc45317e19 /sys/dev | |
| parent | 0e5b1384df10e9b9700047cb79c347874212d2a9 (diff) | |
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/hyperv/vmbus/x86/vmbus_x86.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/hyperv/vmbus/x86/vmbus_x86.c b/sys/dev/hyperv/vmbus/x86/vmbus_x86.c index 0ed3b1b5f9d9..130ea5bf556b 100644 --- a/sys/dev/hyperv/vmbus/x86/vmbus_x86.c +++ b/sys/dev/hyperv/vmbus/x86/vmbus_x86.c @@ -151,7 +151,8 @@ vmbus_setup_intr1(struct vmbus_softc *sc) * free IDT vector for Hyper-V ISR and set it up. */ sc->vmbus_idtvec = lapic_ipi_alloc( - pti ? IDTVEC(vmbus_isr_pti) : IDTVEC(vmbus_isr)); + pti ? IDTVEC(vmbus_isr_pti) : IDTVEC(vmbus_isr), + vmbus_handle_intr); if (sc->vmbus_idtvec < 0) { #if defined(__amd64__) && defined(KLD_MODULE) pmap_pti_remove_kva(VMBUS_ISR_ADDR, VMBUS_ISR_ADDR + PAGE_SIZE); |
