aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Johnston <markj@FreeBSD.org>2026-07-21 15:29:33 +0000
committerMark Johnston <markj@FreeBSD.org>2026-07-21 22:46:42 +0000
commit55c240eada966b4595cbf93bf0641073713c5b99 (patch)
treec6afd37d1eaa0a5a7f41c55c423df648f93774d4
parenta931431a1deca75079f034b74a63c2774f83be8d (diff)
amd64: Fix an off-by-one in the fred_ipi_handlers definition
Fixes: 6e93f5e4d693 ("amd64: FRED support") Reviewed by: kib Differential Revision: https://reviews.freebsd.org/D58378
-rw-r--r--sys/x86/x86/local_apic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/local_apic.c b/sys/x86/x86/local_apic.c
index 0dac24ae3048..405db4fcc550 100644
--- a/sys/x86/x86/local_apic.c
+++ b/sys/x86/x86/local_apic.c
@@ -2394,7 +2394,7 @@ native_lapic_ipi_vectored(u_int vector, int dest)
void (*ipi_vectored)(u_int, int) = &native_lapic_ipi_vectored;
#endif /* SMP */
-void (*fred_ipi_handlers[IPI_DYN_LAST - IPI_DYN_FIRST])(struct trapframe *);
+void (*fred_ipi_handlers[IPI_DYN_LAST - IPI_DYN_FIRST + 1])(struct trapframe *);
/*
* Since the IDT is shared by all CPUs the IPI slot update needs to be globally