mirror of https://gitee.com/openkylin/linux.git
scsi: lpfc: Revise strings with full lpfc parameter name
Revise strings with full lpfc parameter name Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com> Signed-off-by: James Smart <james.smart@broadcom.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Hannes Reinecke <hare@suse.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
0cfbbf2f96
commit
6c86068dd2
|
@ -2877,9 +2877,9 @@ lpfc_nodev_tmo_init(struct lpfc_vport *vport, int val)
|
||||||
vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
|
vport->cfg_nodev_tmo = vport->cfg_devloss_tmo;
|
||||||
if (val != LPFC_DEF_DEVLOSS_TMO)
|
if (val != LPFC_DEF_DEVLOSS_TMO)
|
||||||
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
||||||
"0407 Ignoring nodev_tmo module "
|
"0407 Ignoring lpfc_nodev_tmo module "
|
||||||
"parameter because devloss_tmo is "
|
"parameter because lpfc_devloss_tmo "
|
||||||
"set.\n");
|
"is set.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2938,8 +2938,8 @@ lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
|
||||||
if (vport->dev_loss_tmo_changed ||
|
if (vport->dev_loss_tmo_changed ||
|
||||||
(lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
|
(lpfc_devloss_tmo != LPFC_DEF_DEVLOSS_TMO)) {
|
||||||
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
||||||
"0401 Ignoring change to nodev_tmo "
|
"0401 Ignoring change to lpfc_nodev_tmo "
|
||||||
"because devloss_tmo is set.\n");
|
"because lpfc_devloss_tmo is set.\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
|
if (val >= LPFC_MIN_DEVLOSS_TMO && val <= LPFC_MAX_DEVLOSS_TMO) {
|
||||||
|
@ -2954,7 +2954,7 @@ lpfc_nodev_tmo_set(struct lpfc_vport *vport, int val)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
||||||
"0403 lpfc_nodev_tmo attribute cannot be set to"
|
"0403 lpfc_nodev_tmo attribute cannot be set to "
|
||||||
"%d, allowed range is [%d, %d]\n",
|
"%d, allowed range is [%d, %d]\n",
|
||||||
val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
|
val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
@ -3005,8 +3005,8 @@ lpfc_devloss_tmo_set(struct lpfc_vport *vport, int val)
|
||||||
}
|
}
|
||||||
|
|
||||||
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
|
||||||
"0404 lpfc_devloss_tmo attribute cannot be set to"
|
"0404 lpfc_devloss_tmo attribute cannot be set to "
|
||||||
" %d, allowed range is [%d, %d]\n",
|
"%d, allowed range is [%d, %d]\n",
|
||||||
val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
|
val, LPFC_MIN_DEVLOSS_TMO, LPFC_MAX_DEVLOSS_TMO);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -4174,7 +4174,8 @@ lpfc_fcp_imax_init(struct lpfc_hba *phba, int val)
|
||||||
}
|
}
|
||||||
|
|
||||||
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
|
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
|
||||||
"3016 fcp_imax: %d out of range, using default\n", val);
|
"3016 lpfc_fcp_imax: %d out of range, using default\n",
|
||||||
|
val);
|
||||||
phba->cfg_fcp_imax = LPFC_DEF_IMAX;
|
phba->cfg_fcp_imax = LPFC_DEF_IMAX;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -4324,8 +4325,8 @@ lpfc_fcp_cpu_map_init(struct lpfc_hba *phba, int val)
|
||||||
}
|
}
|
||||||
|
|
||||||
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
|
lpfc_printf_log(phba, KERN_ERR, LOG_INIT,
|
||||||
"3326 fcp_cpu_map: %d out of range, using default\n",
|
"3326 lpfc_fcp_cpu_map: %d out of range, using "
|
||||||
val);
|
"default\n", val);
|
||||||
phba->cfg_fcp_cpu_map = LPFC_DRIVER_CPU_MAP;
|
phba->cfg_fcp_cpu_map = LPFC_DRIVER_CPU_MAP;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue