diff options
author | Gordon Bergling <gbe@FreeBSD.org> | 2024-07-07 14:17:23 +0000 |
---|---|---|
committer | Gordon Bergling <gbe@FreeBSD.org> | 2024-07-13 17:08:38 +0000 |
commit | 4779a4dde7c6378b443f7b23567556cb05ffd279 (patch) | |
tree | 51e62bf938cab110d4d6f513e2fb042ba0f2ef1f | |
parent | 7ad3c40b1764de3622a7acd09d1297f682418395 (diff) | |
download | src-4779a4dde7c6378b443f7b23567556cb05ffd279.tar.gz src-4779a4dde7c6378b443f7b23567556cb05ffd279.zip |
ocs_fc(4): Fix a typo in a kernel message
- s/elasped/elapsed/
(cherry picked from commit 6ea81bcaf8adcf6a8546407e93e97f3d920396d2)
-rw-r--r-- | sys/dev/ocs_fc/ocs_hw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ocs_fc/ocs_hw.c b/sys/dev/ocs_fc/ocs_hw.c index cfb9d4f8f536..c368e09aef8c 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 */ |