lkml.org 
[lkml]   [2018]   [Oct]   [4]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH 3/7] mpt3sas: Convert mlsleading uses of pr_<level> with MPT3SAS_FMT
Hi,
Please consider this patch as Acked-by: Suganath Prabu
<suganath-prabu.subramani@broadcom.com>

Thanks.
On Mon, Sep 17, 2018 at 8:31 PM Joe Perches <joe@perches.com> wrote:
>
> These have misordered uses of __func__ and ioc->name that could
> mismatch MPT3SAS_FMT and "%s: ".
>
> Convert them to ioc_<level>.
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/scsi/mpt3sas/mpt3sas_scsih.c | 50 +++++++++++++++-----------------
> drivers/scsi/mpt3sas/mpt3sas_transport.c | 18 ++++--------
> 2 files changed, 29 insertions(+), 39 deletions(-)
>
> diff --git a/drivers/scsi/mpt3sas/mpt3sas_scsih.c b/drivers/scsi/mpt3sas/mpt3sas_scsih.c
> index 3331eba4b78d..8089be381c72 100644
> --- a/drivers/scsi/mpt3sas/mpt3sas_scsih.c
> +++ b/drivers/scsi/mpt3sas/mpt3sas_scsih.c
> @@ -2627,15 +2627,13 @@ mpt3sas_scsih_issue_tm(struct MPT3SAS_ADAPTER *ioc, u16 handle, u64 lun,
> lockdep_assert_held(&ioc->tm_cmds.mutex);
>
> if (ioc->tm_cmds.status != MPT3_CMD_NOT_USED) {
> - pr_info(MPT3SAS_FMT "%s: tm_cmd busy!!!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: tm_cmd busy!!!\n", __func__);
> return FAILED;
> }
>
> if (ioc->shost_recovery || ioc->remove_host ||
> ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> return FAILED;
> }
>
> @@ -3550,18 +3548,16 @@ _scsih_tm_tr_send(struct MPT3SAS_ADAPTER *ioc, u16 handle)
> u8 tr_method = 0;
>
> if (ioc->pci_error_recovery) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host in pci error recovery: handle(0x%04x)\n",
> - __func__, ioc->name,
> - handle));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host in pci error recovery: handle(0x%04x)\n",
> + __func__, handle));
> return;
> }
> ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
> if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host is not operational: handle(0x%04x)\n",
> - __func__, ioc->name,
> - handle));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host is not operational: handle(0x%04x)\n",
> + __func__, handle));
> return;
> }
>
> @@ -3811,9 +3807,9 @@ _scsih_tm_tr_volume_send(struct MPT3SAS_ADAPTER *ioc, u16 handle)
> struct _tr_list *delayed_tr;
>
> if (ioc->pci_error_recovery) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host reset in progress!\n",
> - __func__, ioc->name));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host reset in progress!\n",
> + __func__));
> return;
> }
>
> @@ -3863,9 +3859,9 @@ _scsih_tm_volume_tr_complete(struct MPT3SAS_ADAPTER *ioc, u16 smid,
> mpt3sas_base_get_reply_virt_addr(ioc, reply);
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host reset in progress!\n",
> - __func__, ioc->name));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host reset in progress!\n",
> + __func__));
> return 1;
> }
> if (unlikely(!mpi_reply)) {
> @@ -3950,21 +3946,21 @@ _scsih_issue_delayed_sas_io_unit_ctrl(struct MPT3SAS_ADAPTER *ioc,
> unsigned long flags;
>
> if (ioc->remove_host) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host has been removed\n",
> - __func__, ioc->name));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host has been removed\n",
> + __func__));
> return;
> } else if (ioc->pci_error_recovery) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host in pci error recovery\n",
> - __func__, ioc->name));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host in pci error recovery\n",
> + __func__));
> return;
> }
> ioc_state = mpt3sas_base_get_iocstate(ioc, 1);
> if (ioc_state != MPI2_IOC_STATE_OPERATIONAL) {
> - dewtprintk(ioc, pr_info(MPT3SAS_FMT
> - "%s: host is not operational\n",
> - __func__, ioc->name));
> + dewtprintk(ioc,
> + ioc_info(ioc, "%s: host is not operational\n",
> + __func__));
> return;
> }
>
> diff --git a/drivers/scsi/mpt3sas/mpt3sas_transport.c b/drivers/scsi/mpt3sas/mpt3sas_transport.c
> index d4bf4d5e576e..09034a3fba2c 100644
> --- a/drivers/scsi/mpt3sas/mpt3sas_transport.c
> +++ b/drivers/scsi/mpt3sas/mpt3sas_transport.c
> @@ -146,8 +146,7 @@ _transport_set_identify(struct MPT3SAS_ADAPTER *ioc, u16 handle,
> u32 ioc_status;
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> return -EFAULT;
> }
>
> @@ -308,8 +307,7 @@ _transport_expander_report_manufacture(struct MPT3SAS_ADAPTER *ioc,
> u16 wait_state_count;
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> return -EFAULT;
> }
>
> @@ -1088,8 +1086,7 @@ _transport_get_expander_phy_error_log(struct MPT3SAS_ADAPTER *ioc,
> u16 wait_state_count;
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> return -EFAULT;
> }
>
> @@ -1393,8 +1390,7 @@ _transport_expander_phy_control(struct MPT3SAS_ADAPTER *ioc,
> u16 wait_state_count;
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> return -EFAULT;
> }
>
> @@ -1894,8 +1890,7 @@ _transport_smp_handler(struct bsg_job *job, struct Scsi_Host *shost,
> unsigned int reslen = 0;
>
> if (ioc->shost_recovery || ioc->pci_error_recovery) {
> - pr_info(MPT3SAS_FMT "%s: host reset in progress!\n",
> - __func__, ioc->name);
> + ioc_info(ioc, "%s: host reset in progress!\n", __func__);
> rc = -EFAULT;
> goto job_done;
> }
> @@ -1975,8 +1970,7 @@ _transport_smp_handler(struct bsg_job *job, struct Scsi_Host *shost,
> wait_for_completion_timeout(&ioc->transport_cmds.done, 10*HZ);
>
> if (!(ioc->transport_cmds.status & MPT3_CMD_COMPLETE)) {
> - pr_err(MPT3SAS_FMT "%s : timeout\n",
> - __func__, ioc->name);
> + ioc_err(ioc, "%s: timeout\n", __func__);
> _debug_dump_mf(mpi_request,
> sizeof(Mpi2SmpPassthroughRequest_t)/4);
> if (!(ioc->transport_cmds.status & MPT3_CMD_RESET)) {
> --
> 2.15.0
>

\
 
 \ /
  Last update: 2018-10-04 12:29    [W:0.107 / U:0.360 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site