Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Nov 2025 11:29:14 +0000
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: df8a1f9863fc - stable/14 - mfi(4): Fix a typo in a KASSERT message
Message-ID:  <691daa0a.b7d1.332ac09b@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=df8a1f9863fcafd05dbab0075d08c3ddbda120ff

commit df8a1f9863fcafd05dbab0075d08c3ddbda120ff
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 15:38:59 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 11:29:04 +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 f95ba0341a70..cd84e0a1970b 100644
--- a/sys/dev/mfi/mfi.c
+++ b/sys/dev/mfi/mfi.c
@@ -2827,7 +2827,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();


help

Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?691daa0a.b7d1.332ac09b>