Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Oct 2025 08:26:39 GMT
From:      Gordon Bergling <gbe@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 08a6620093dc - main - nfsclient: Fix a typo in a panic message
Message-ID:  <202510290826.59T8QdLY021251@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by gbe:

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

commit 08a6620093dc2786051bf6ae6f40ae048027021b
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-29 08:26:23 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-10-29 08:26:23 +0000

    nfsclient: Fix a typo in a panic message
    
    - s/eroneous/erroneous/
    
    MFC after:      1 week
---
 sys/fs/nfsclient/nfs_clrpcops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c
index b88169ba69d5..b61218958550 100644
--- a/sys/fs/nfsclient/nfs_clrpcops.c
+++ b/sys/fs/nfsclient/nfs_clrpcops.c
@@ -9760,7 +9760,7 @@ nfsm_split(struct mbuf *mp, uint64_t xfer)
 		pgno++;
 	} while (pgno < m->m_epg_npgs);
 	if (pgno == m->m_epg_npgs)
-		panic("nfsm_split: eroneous ext_pgs mbuf");
+		panic("nfsm_split: erroneous ext_pgs mbuf");
 
 	m2 = mb_alloc_ext_pgs(M_WAITOK, mb_free_mext_pgs, 0);
 	m2->m_epg_flags |= EPG_FLAG_ANON;


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202510290826.59T8QdLY021251>