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:
+1
-1
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user