diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-20 01:09:48 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-20 01:09:48 -0400 |
commit | 8688a083ab2d5e2fa0da737724cf12d130b4127f (patch) | |
tree | 57c84dd73e1f9c2baf905ec08e83327acb7b6bf5 /sys/include/arch | |
parent | 7d12f15bb569b47d4c8a70e5ec81ad5e3409dcf0 (diff) |
kernel/amd64: intr: Ensure intr_hand.name has '\0'
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/arch')
-rw-r--r-- | sys/include/arch/amd64/intr.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/arch/amd64/intr.h b/sys/include/arch/amd64/intr.h index 5e3f397..b640e4b 100644 --- a/sys/include/arch/amd64/intr.h +++ b/sys/include/arch/amd64/intr.h @@ -60,6 +60,8 @@ * @irq: Interrupt request number [o] * @vector: Interrupt vector [v] * + * XXX: `name' must be null terminated ('\0') + * * XXX: `irq` can be set to -1 for MSI/MSI-X * interrupts. * |