Re: [PATCH] qla2xxx: fix error status checking in qla24xx_modify_vp_config()

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Wed, 2022-01-05 at 14:03 +0100, Dirk Müller wrote:
> The function was checking vpmod->comp_status and reported it as error
> status, which is however already checked a few lines below.
> 
> Guessing from other occurrences it was supposed to check entry_status
> instead.
> 
> Fixes: 2c3dfe3f6ad8 ("[SCSI] qla2xxx: add support for NPIV")
> Signed-off-by: Dirk Müller <dmueller@xxxxxxx>
> ---
>  drivers/scsi/qla2xxx/qla_mbx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/scsi/qla2xxx/qla_mbx.c
> b/drivers/scsi/qla2xxx/qla_mbx.c
> index 10d2655ef676..e0dce38b65cf 100644
> --- a/drivers/scsi/qla2xxx/qla_mbx.c
> +++ b/drivers/scsi/qla2xxx/qla_mbx.c
> @@ -4253,7 +4253,7 @@ qla24xx_modify_vp_config(scsi_qla_host_t *vha)
>         if (rval != QLA_SUCCESS) {
>                 ql_dbg(ql_dbg_mbx, vha, 0x10bd,
>                     "Failed to issue VP config IOCB (%x).\n", rval);
> -       } else if (vpmod->comp_status != 0) {
> +       } else if (vpmod->entry_status != 0) {
>                 ql_dbg(ql_dbg_mbx, vha, 0x10be,
>                     "Failed to complete IOCB -- error status
> (%x).\n",
>                     vpmod->comp_status);

Your suggestion makes sense, but you should also change the value
passed to ql_dbg(), and cc the driver maintainers.

Thanks,
Martin





[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]

  Powered by Linux