lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 4 Oct 2018 15:58:59 +0530
From:   Suganath Prabu Subramani <suganath-prabu.subramani@...adcom.com>
To:     joe@...ches.com
Cc:     Sathya Prakash <sathya.prakash@...adcom.com>,
        jejb@...ux.vnet.ibm.com,
        "Martin K. Petersen" <martin.petersen@...cle.com>,
        PDL-MPT-FUSIONLINUX <MPT-FusionLinux.pdl@...adcom.com>,
        linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [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@...adcom.com>

Thanks.
On Mon, Sep 17, 2018 at 8:31 PM Joe Perches <joe@...ches.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@...ches.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
>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ