cam: Fix three typos in kernel messages

- s/maximun/maximum/
- s/queing/queueing/
- s/exhausing/exhausting/

MFC after:	1 week
This commit is contained in:
Gordon Bergling
2025-10-29 09:23:51 +01:00
parent 4b6700f345
commit adfe14dcc2
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2123,7 +2123,7 @@ ctl_remove_initiator(struct ctl_port *port, int iid)
mtx_assert(&softc->ctl_lock, MA_NOTOWNED);
if (iid > CTL_MAX_INIT_PER_PORT) {
printf("%s: initiator ID %u > maximun %u!\n",
printf("%s: initiator ID %u > maximum %u!\n",
__func__, iid, CTL_MAX_INIT_PER_PORT);
return (-1);
}
+1 -1
View File
@@ -732,7 +732,7 @@ enc_update_request(enc_softc_t *enc, uint32_t action)
{
if ((enc->pending_actions & (0x1 << action)) == 0) {
enc->pending_actions |= (0x1 << action);
ENC_DLOG(enc, "%s: queing requested action %d\n",
ENC_DLOG(enc, "%s: queueing requested action %d\n",
__func__, action);
if (enc->current_action == ENC_UPDATE_NONE)
wakeup(enc->enc_daemon);
+1 -1
View File
@@ -1623,7 +1623,7 @@ ses_process_status(enc_softc_t *enc, struct enc_fsm_state *state,
} else {
if (cur_stat <= last_stat)
ENC_VLOG(enc, "Status page, exhausted objects before "
"exhausing page\n");
"exhausting page\n");
enc_update_request(enc, SES_PUBLISH_CACHE);
err = 0;
}