Skip to content

Commit 7afc0ce

Browse files
Colin Ian Kingmartinkpetersen
authored andcommitted
scsi: lpfc: fix spelling mistakes: "mabilbox" and "maibox"
Trivial fix to spelling mistakes in lpfc_printf_log log message "mabilbox" -> "mailbox" "maibox" -> "mailbox" Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Martin K. Petersen <[email protected]>
1 parent 4b83cb8 commit 7afc0ce

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

drivers/scsi/lpfc/lpfc_bsg.c

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3621,7 +3621,7 @@ lpfc_bsg_issue_mbox_ext_handle_job(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
36213621
bsg_reply->result = 0;
36223622

36233623
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
3624-
"2937 SLI_CONFIG ext-buffer maibox command "
3624+
"2937 SLI_CONFIG ext-buffer mailbox command "
36253625
"(x%x/x%x) complete bsg job done, bsize:%d\n",
36263626
phba->mbox_ext_buf_ctx.nembType,
36273627
phba->mbox_ext_buf_ctx.mboxType, size);
@@ -3632,7 +3632,7 @@ lpfc_bsg_issue_mbox_ext_handle_job(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
36323632
phba->mbox_ext_buf_ctx.mbx_dmabuf, 0);
36333633
} else {
36343634
lpfc_printf_log(phba, KERN_ERR, LOG_LIBDFC,
3635-
"2938 SLI_CONFIG ext-buffer maibox "
3635+
"2938 SLI_CONFIG ext-buffer mailbox "
36363636
"command (x%x/x%x) failure, rc:x%x\n",
36373637
phba->mbox_ext_buf_ctx.nembType,
36383638
phba->mbox_ext_buf_ctx.mboxType, rc);
@@ -3666,7 +3666,7 @@ lpfc_bsg_issue_read_mbox_ext_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
36663666
pmboxq->u.mb.mbxStatus = MBXERR_ERROR;
36673667

36683668
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
3669-
"2939 SLI_CONFIG ext-buffer rd maibox command "
3669+
"2939 SLI_CONFIG ext-buffer rd mailbox command "
36703670
"complete, ctxState:x%x, mbxStatus:x%x\n",
36713671
phba->mbox_ext_buf_ctx.state, pmboxq->u.mb.mbxStatus);
36723672

@@ -3706,7 +3706,7 @@ lpfc_bsg_issue_write_mbox_ext_cmpl(struct lpfc_hba *phba, LPFC_MBOXQ_t *pmboxq)
37063706
pmboxq->u.mb.mbxStatus = MBXERR_ERROR;
37073707

37083708
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
3709-
"2940 SLI_CONFIG ext-buffer wr maibox command "
3709+
"2940 SLI_CONFIG ext-buffer wr mailbox command "
37103710
"complete, ctxState:x%x, mbxStatus:x%x\n",
37113711
phba->mbox_ext_buf_ctx.state, pmboxq->u.mb.mbxStatus);
37123712

@@ -3988,12 +3988,12 @@ lpfc_bsg_sli_cfg_read_cmd_ext(struct lpfc_hba *phba, struct bsg_job *job,
39883988
if ((rc == MBX_SUCCESS) || (rc == MBX_BUSY)) {
39893989
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
39903990
"2947 Issued SLI_CONFIG ext-buffer "
3991-
"maibox command, rc:x%x\n", rc);
3991+
"mailbox command, rc:x%x\n", rc);
39923992
return SLI_CONFIG_HANDLED;
39933993
}
39943994
lpfc_printf_log(phba, KERN_ERR, LOG_LIBDFC,
39953995
"2948 Failed to issue SLI_CONFIG ext-buffer "
3996-
"maibox command, rc:x%x\n", rc);
3996+
"mailbox command, rc:x%x\n", rc);
39973997
rc = -EPIPE;
39983998

39993999
job_error:
@@ -4147,12 +4147,12 @@ lpfc_bsg_sli_cfg_write_cmd_ext(struct lpfc_hba *phba, struct bsg_job *job,
41474147
if ((rc == MBX_SUCCESS) || (rc == MBX_BUSY)) {
41484148
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
41494149
"2955 Issued SLI_CONFIG ext-buffer "
4150-
"maibox command, rc:x%x\n", rc);
4150+
"mailbox command, rc:x%x\n", rc);
41514151
return SLI_CONFIG_HANDLED;
41524152
}
41534153
lpfc_printf_log(phba, KERN_ERR, LOG_LIBDFC,
41544154
"2956 Failed to issue SLI_CONFIG ext-buffer "
4155-
"maibox command, rc:x%x\n", rc);
4155+
"mailbox command, rc:x%x\n", rc);
41564156
rc = -EPIPE;
41574157
goto job_error;
41584158
}
@@ -4492,12 +4492,12 @@ lpfc_bsg_write_ebuf_set(struct lpfc_hba *phba, struct bsg_job *job,
44924492
if ((rc == MBX_SUCCESS) || (rc == MBX_BUSY)) {
44934493
lpfc_printf_log(phba, KERN_INFO, LOG_LIBDFC,
44944494
"2969 Issued SLI_CONFIG ext-buffer "
4495-
"maibox command, rc:x%x\n", rc);
4495+
"mailbox command, rc:x%x\n", rc);
44964496
return SLI_CONFIG_HANDLED;
44974497
}
44984498
lpfc_printf_log(phba, KERN_ERR, LOG_LIBDFC,
44994499
"2970 Failed to issue SLI_CONFIG ext-buffer "
4500-
"maibox command, rc:x%x\n", rc);
4500+
"mailbox command, rc:x%x\n", rc);
45014501
rc = -EPIPE;
45024502
goto job_error;
45034503
}

drivers/scsi/lpfc/lpfc_init.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5114,7 +5114,7 @@ lpfc_sli4_async_fip_evt(struct lpfc_hba *phba,
51145114
if (rc) {
51155115
lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
51165116
LOG_DISCOVERY,
5117-
"2772 Issue FCF rediscover mabilbox "
5117+
"2772 Issue FCF rediscover mailbox "
51185118
"command failed, fail through to FCF "
51195119
"dead event\n");
51205120
spin_lock_irq(&phba->hbalock);
@@ -5206,7 +5206,7 @@ lpfc_sli4_async_fip_evt(struct lpfc_hba *phba,
52065206
lpfc_printf_log(phba, KERN_ERR, LOG_FIP |
52075207
LOG_DISCOVERY,
52085208
"2774 Issue FCF rediscover "
5209-
"mabilbox command failed, "
5209+
"mailbox command failed, "
52105210
"through to CVL event\n");
52115211
spin_lock_irq(&phba->hbalock);
52125212
phba->fcf.fcf_flag &= ~FCF_ACVL_DISC;

0 commit comments

Comments
 (0)