diff mbox series

qla2xxx: fix error status checking in qla24xx_modify_vp_config()

Message ID 20220105130337.31758-1-dmueller@suse.de (mailing list archive)
State Changes Requested
Headers show
Series qla2xxx: fix error status checking in qla24xx_modify_vp_config() | expand

Commit Message

Dirk Müller Jan. 5, 2022, 1:03 p.m. UTC
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@suse.de>
---
 drivers/scsi/qla2xxx/qla_mbx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Martin Wilck Jan. 6, 2022, 3:35 p.m. UTC | #1
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@suse.de>
> ---
>  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
diff mbox series

Patch

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);