Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jul 2024 17:09:05 GMT
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: 66ce02ff31b6 - stable/13 - ocs_fc(4): Fix a typo in a kernel message
Message-ID:  <202407131709.46DH95hY022884@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by gbe:

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

commit 66ce02ff31b6c42fd8492ff83ddf3980f1459621
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2024-07-07 14:17:23 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2024-07-13 17:08:58 +0000

    ocs_fc(4): Fix a typo in a kernel message
    
    - s/elasped/elapsed/
    
    (cherry picked from commit 6ea81bcaf8adcf6a8546407e93e97f3d920396d2)
---
 sys/dev/ocs_fc/ocs_hw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ocs_fc/ocs_hw.c b/sys/dev/ocs_fc/ocs_hw.c
index 186b04b8b129..9b368e32ce32 100644
--- a/sys/dev/ocs_fc/ocs_hw.c
+++ b/sys/dev/ocs_fc/ocs_hw.c
@@ -11214,7 +11214,7 @@ target_wqe_timer_nop_cb(ocs_hw_t *hw, int32_t status, uint8_t *mqe, void *arg)
 		getmicrouptime(&cur_time);
 		timevalsub(&cur_time, &io->submit_time);
 		if (cur_time.tv_sec > io->wqe_timeout) {
-			ocs_log_info(hw->os, "IO timeout xri=0x%x tag=0x%x type=%d elasped time:%u\n",
+			ocs_log_info(hw->os, "IO timeout xri=0x%x tag=0x%x type=%d elapsed time:%u\n",
 				     io->indicator, io->reqtag, io->type, cur_time.tv_sec);
 
 			/* remove from active_wqe list so won't try to abort again */



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