The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=a24f891d999cd6f2a91bd80af139cd329cd02115
commit a24f891d999cd6f2a91bd80af139cd329cd02115 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-29 15:25:33 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-19 11:25:30 +0000 vnic: Fix a typo in a device messsage - s/interrups/interrupts/ (cherry picked from commit 74a44a0bc8ab965d28d1ce804d3f0aead035faf0) --- sys/dev/vnic/nicvf_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/vnic/nicvf_main.c b/sys/dev/vnic/nicvf_main.c index dd44e420c78f..59f7abeacdd5 100644 --- a/sys/dev/vnic/nicvf_main.c +++ b/sys/dev/vnic/nicvf_main.c @@ -1402,7 +1402,7 @@ nicvf_allocate_net_interrupts(struct nicvf *nic) /* MSI-X must be configured by now */ if (!nic->msix_enabled) { - device_printf(nic->dev, "Cannot alloacte queue interrups. " + device_printf(nic->dev, "Cannot alloacte queue interrupts. " "MSI-X interrupts disabled.\n"); return (ENXIO); }
