git: 720108d86d87 - stable/15 - mfi(4): Fix a typo in a KASSERT message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Nov 2025 18:58:35 UTC
The branch stable/15 has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=720108d86d872b224fa7e8bba5d3b6a57dee0c05
commit 720108d86d872b224fa7e8bba5d3b6a57dee0c05
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 15:38:59 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-08 18:58:16 +0000
mfi(4): Fix a typo in a KASSERT message
- s/dissappeared/disappeared/
(cherry picked from commit a25172844edaaa7e18c1dcecb6df8b8832456334)
---
sys/dev/mfi/mfi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/mfi/mfi.c b/sys/dev/mfi/mfi.c
index 13e5dfc84fd1..a7d98f06aea3 100644
--- a/sys/dev/mfi/mfi.c
+++ b/sys/dev/mfi/mfi.c
@@ -2829,7 +2829,7 @@ mfi_check_command_post(struct mfi_softc *sc, struct mfi_command *cm)
if (ld->ld_id == cm->cm_frame->dcmd.mbox[0])
break;
}
- KASSERT(ld != NULL, ("volume dissappeared"));
+ KASSERT(ld != NULL, ("volume disappeared"));
if (cm->cm_frame->header.cmd_status == MFI_STAT_OK) {
mtx_unlock(&sc->mfi_io_lock);
bus_topo_lock();