git: 422a530c8008 - main - arm64/vmm: Fix vgic_v3 copy paste error for writing to GICD_ICENABLERn
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 18 Jul 2026 00:13:16 UTC
The branch main has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=422a530c80080f2585ecefe812d609079b851fe3
commit 422a530c80080f2585ecefe812d609079b851fe3
Author: Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2026-07-17 23:55:21 +0000
Commit: Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2026-07-17 23:55:21 +0000
arm64/vmm: Fix vgic_v3 copy paste error for writing to GICD_ICENABLERn
Otherwise we try to disable the wrong IRQ.
Fixes: 47e073941f4e ("Import the kernel parts of bhyve/arm64")
MFC after: 1 week
---
sys/arm64/vmm/io/vgic_v3.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/arm64/vmm/io/vgic_v3.c b/sys/arm64/vmm/io/vgic_v3.c
index 81bb94878368..ee96cc975755 100644
--- a/sys/arm64/vmm/io/vgic_v3.c
+++ b/sys/arm64/vmm/io/vgic_v3.c
@@ -1119,7 +1119,7 @@ dist_icenabler_write(struct hypctx *hypctx, u_int reg, u_int offset, u_int size,
MPASS(offset == 0);
MPASS(size == 4);
- n = (reg - GICD_ISENABLER(0)) / 4;
+ n = (reg - GICD_ICENABLER(0)) / 4;
/* GICD_ICENABLER0 is RAZ/WI so handled separately */
MPASS(n > 0);
write_enabler(hypctx, n, false, wval);