linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qla2xxx: Do not consume srb greedily
@ 2020-09-29  7:38 Daniel Wagner
  2020-10-05  7:42 ` Daniel Wagner
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Daniel Wagner @ 2020-09-29  7:38 UTC (permalink / raw)
  To: Nilesh Javali, Arun Easi; +Cc: linux-scsi, linux-kernel, Daniel Wagner

qla2xx_process_get_sp_from_handle() will clear the slot which the
current srb is stored. So this function has a side effect. Therefore,
we can't use it in qla24xx_process_mbx_iocb_response() to check
for consistency and later again in qla24xx_mbx_iocb_entry().

Let's move the consistency check directly into
qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
of the qla2xx_process_get_sp_from_handle() functionality.

Fixes: 31a3271ff11b ("scsi: qla2xxx: Handle incorrect entry_type entries")
Signed-off-by: Daniel Wagner <dwagner@suse.de>
---
Hi,

Brown bag for me please. My test patch had an open coded version of
qla2xx_process_get_sp_from_handle() which didn't consume the srb. When
I prepared it for sending it out, I 'cleaned' it up by using
qla2xx_process_get_sp_from_handle() twice.

Sorry,
Daniel

 drivers/scsi/qla2xxx/qla_isr.c | 42 +++++++++++++++---------------------------
 1 file changed, 15 insertions(+), 27 deletions(-)

diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
index 96811354f78a..2baba87c4e0c 100644
--- a/drivers/scsi/qla2xxx/qla_isr.c
+++ b/drivers/scsi/qla2xxx/qla_isr.c
@@ -1839,6 +1839,7 @@ qla24xx_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
     struct mbx_24xx_entry *pkt)
 {
 	const char func[] = "MBX-IOCB2";
+	struct qla_hw_data *ha = vha->hw;
 	srb_t *sp;
 	struct srb_iocb *si;
 	u16 sz, i;
@@ -1848,6 +1849,18 @@ qla24xx_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
 	if (!sp)
 		return;
 
+	if (sp->type == SRB_SCSI_CMD ||
+	    sp->type == SRB_NVME_CMD ||
+	    sp->type == SRB_TM_CMD) {
+		ql_log(ql_log_warn, vha, 0x509d,
+			"Inconsistent event entry type %d\n", sp->type);
+		if (IS_P3P_TYPE(ha))
+			set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
+		else
+			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
+		return;
+	}
+
 	si = &sp->u.iocb_cmd;
 	sz = min(ARRAY_SIZE(pkt->mb), ARRAY_SIZE(sp->u.iocb_cmd.u.mbx.in_mb));
 
@@ -3406,32 +3419,6 @@ void qla24xx_nvme_ls4_iocb(struct scsi_qla_host *vha,
 	sp->done(sp, comp_status);
 }
 
-static void qla24xx_process_mbx_iocb_response(struct scsi_qla_host *vha,
-	struct rsp_que *rsp, struct sts_entry_24xx *pkt)
-{
-	struct qla_hw_data *ha = vha->hw;
-	srb_t *sp;
-	static const char func[] = "MBX-IOCB2";
-
-	sp = qla2x00_get_sp_from_handle(vha, func, rsp->req, pkt);
-	if (!sp)
-		return;
-
-	if (sp->type == SRB_SCSI_CMD ||
-	    sp->type == SRB_NVME_CMD ||
-	    sp->type == SRB_TM_CMD) {
-		ql_log(ql_log_warn, vha, 0x509d,
-			"Inconsistent event entry type %d\n", sp->type);
-		if (IS_P3P_TYPE(ha))
-			set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
-		else
-			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
-		return;
-	}
-
-	qla24xx_mbx_iocb_entry(vha, rsp->req, (struct mbx_24xx_entry *)pkt);
-}
-
 /**
  * qla24xx_process_response_queue() - Process response queue entries.
  * @vha: SCSI driver HA context
@@ -3539,7 +3526,8 @@ void qla24xx_process_response_queue(struct scsi_qla_host *vha,
 			    (struct abort_entry_24xx *)pkt);
 			break;
 		case MBX_IOCB_TYPE:
-			qla24xx_process_mbx_iocb_response(vha, rsp, pkt);
+			qla24xx_mbx_iocb_entry(vha, rsp->req,
+			    (struct mbx_24xx_entry *)pkt);
 			break;
 		case VP_CTRL_IOCB_TYPE:
 			qla_ctrlvp_completed(vha, rsp->req,
-- 
2.16.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] qla2xxx: Do not consume srb greedily
  2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
@ 2020-10-05  7:42 ` Daniel Wagner
  2020-10-07 13:54 ` Himanshu Madhani
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Daniel Wagner @ 2020-10-05  7:42 UTC (permalink / raw)
  To: Nilesh Javali, Arun Easi; +Cc: linux-scsi, linux-kernel

On Tue, Sep 29, 2020 at 09:38:02AM +0200, Daniel Wagner wrote:
> qla2xx_process_get_sp_from_handle() will clear the slot which the
> current srb is stored. So this function has a side effect. Therefore,
> we can't use it in qla24xx_process_mbx_iocb_response() to check
> for consistency and later again in qla24xx_mbx_iocb_entry().
> 
> Let's move the consistency check directly into
> qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
> of the qla2xx_process_get_sp_from_handle() functionality.
> 
> Fixes: 31a3271ff11b ("scsi: qla2xxx: Handle incorrect entry_type entries")
> Signed-off-by: Daniel Wagner <dwagner@suse.de>
> ---
> Hi,
> 
> Brown bag for me please. My test patch had an open coded version of
> qla2xx_process_get_sp_from_handle() which didn't consume the srb. When
> I prepared it for sending it out, I 'cleaned' it up by using
> qla2xx_process_get_sp_from_handle() twice.

Ping.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] qla2xxx: Do not consume srb greedily
  2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
  2020-10-05  7:42 ` Daniel Wagner
@ 2020-10-07 13:54 ` Himanshu Madhani
  2020-10-07 17:05 ` Arun Easi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Himanshu Madhani @ 2020-10-07 13:54 UTC (permalink / raw)
  To: Daniel Wagner; +Cc: Nilesh Javali, Arun Easi, linux-scsi, linux-kernel



> On Sep 29, 2020, at 2:38 AM, Daniel Wagner <dwagner@suse.de> wrote:
> 
> qla2xx_process_get_sp_from_handle() will clear the slot which the
> current srb is stored. So this function has a side effect. Therefore,
> we can't use it in qla24xx_process_mbx_iocb_response() to check
> for consistency and later again in qla24xx_mbx_iocb_entry().
> 
> Let's move the consistency check directly into
> qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
> of the qla2xx_process_get_sp_from_handle() functionality.
> 
> Fixes: 31a3271ff11b ("scsi: qla2xxx: Handle incorrect entry_type entries")
> Signed-off-by: Daniel Wagner <dwagner@suse.de>
> ---
> Hi,
> 
> Brown bag for me please. My test patch had an open coded version of
> qla2xx_process_get_sp_from_handle() which didn't consume the srb. When
> I prepared it for sending it out, I 'cleaned' it up by using
> qla2xx_process_get_sp_from_handle() twice.
> 
> Sorry,
> Daniel
> 
> drivers/scsi/qla2xxx/qla_isr.c | 42 +++++++++++++++---------------------------
> 1 file changed, 15 insertions(+), 27 deletions(-)
> 
> diff --git a/drivers/scsi/qla2xxx/qla_isr.c b/drivers/scsi/qla2xxx/qla_isr.c
> index 96811354f78a..2baba87c4e0c 100644
> --- a/drivers/scsi/qla2xxx/qla_isr.c
> +++ b/drivers/scsi/qla2xxx/qla_isr.c
> @@ -1839,6 +1839,7 @@ qla24xx_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
>     struct mbx_24xx_entry *pkt)
> {
> 	const char func[] = "MBX-IOCB2";
> +	struct qla_hw_data *ha = vha->hw;
> 	srb_t *sp;
> 	struct srb_iocb *si;
> 	u16 sz, i;
> @@ -1848,6 +1849,18 @@ qla24xx_mbx_iocb_entry(scsi_qla_host_t *vha, struct req_que *req,
> 	if (!sp)
> 		return;
> 
> +	if (sp->type == SRB_SCSI_CMD ||
> +	    sp->type == SRB_NVME_CMD ||
> +	    sp->type == SRB_TM_CMD) {
> +		ql_log(ql_log_warn, vha, 0x509d,
> +			"Inconsistent event entry type %d\n", sp->type);
> +		if (IS_P3P_TYPE(ha))
> +			set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
> +		else
> +			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
> +		return;
> +	}
> +
> 	si = &sp->u.iocb_cmd;
> 	sz = min(ARRAY_SIZE(pkt->mb), ARRAY_SIZE(sp->u.iocb_cmd.u.mbx.in_mb));
> 
> @@ -3406,32 +3419,6 @@ void qla24xx_nvme_ls4_iocb(struct scsi_qla_host *vha,
> 	sp->done(sp, comp_status);
> }
> 
> -static void qla24xx_process_mbx_iocb_response(struct scsi_qla_host *vha,
> -	struct rsp_que *rsp, struct sts_entry_24xx *pkt)
> -{
> -	struct qla_hw_data *ha = vha->hw;
> -	srb_t *sp;
> -	static const char func[] = "MBX-IOCB2";
> -
> -	sp = qla2x00_get_sp_from_handle(vha, func, rsp->req, pkt);
> -	if (!sp)
> -		return;
> -
> -	if (sp->type == SRB_SCSI_CMD ||
> -	    sp->type == SRB_NVME_CMD ||
> -	    sp->type == SRB_TM_CMD) {
> -		ql_log(ql_log_warn, vha, 0x509d,
> -			"Inconsistent event entry type %d\n", sp->type);
> -		if (IS_P3P_TYPE(ha))
> -			set_bit(FCOE_CTX_RESET_NEEDED, &vha->dpc_flags);
> -		else
> -			set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
> -		return;
> -	}
> -
> -	qla24xx_mbx_iocb_entry(vha, rsp->req, (struct mbx_24xx_entry *)pkt);
> -}
> -
> /**
>  * qla24xx_process_response_queue() - Process response queue entries.
>  * @vha: SCSI driver HA context
> @@ -3539,7 +3526,8 @@ void qla24xx_process_response_queue(struct scsi_qla_host *vha,
> 			    (struct abort_entry_24xx *)pkt);
> 			break;
> 		case MBX_IOCB_TYPE:
> -			qla24xx_process_mbx_iocb_response(vha, rsp, pkt);
> +			qla24xx_mbx_iocb_entry(vha, rsp->req,
> +			    (struct mbx_24xx_entry *)pkt);
> 			break;
> 		case VP_CTRL_IOCB_TYPE:
> 			qla_ctrlvp_completed(vha, rsp->req,
> -- 
> 2.16.4
> 

Makes sense :)  

Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
--
Himanshu Madhani	 Oracle Linux Engineering


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] qla2xxx: Do not consume srb greedily
  2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
  2020-10-05  7:42 ` Daniel Wagner
  2020-10-07 13:54 ` Himanshu Madhani
@ 2020-10-07 17:05 ` Arun Easi
  2020-10-08  2:19 ` Martin K. Petersen
  2020-10-13 22:42 ` Martin K. Petersen
  4 siblings, 0 replies; 6+ messages in thread
From: Arun Easi @ 2020-10-07 17:05 UTC (permalink / raw)
  To: Daniel Wagner; +Cc: Nilesh Javali, linux-scsi, linux-kernel

On Tue, 29 Sep 2020, 12:38am, Daniel Wagner wrote:

> qla2xx_process_get_sp_from_handle() will clear the slot which the
> current srb is stored. So this function has a side effect. Therefore,
> we can't use it in qla24xx_process_mbx_iocb_response() to check
> for consistency and later again in qla24xx_mbx_iocb_entry().
> 
> Let's move the consistency check directly into
> qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
> of the qla2xx_process_get_sp_from_handle() functionality.
> 
> Fixes: 31a3271ff11b ("scsi: qla2xxx: Handle incorrect entry_type entries")
> Signed-off-by: Daniel Wagner <dwagner@suse.de>

That was a nasty one, good that you caught it soon.

Reviewed-by: Arun Easi <aeasi@marvell.com>

Regards,
-Arun

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] qla2xxx: Do not consume srb greedily
  2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
                   ` (2 preceding siblings ...)
  2020-10-07 17:05 ` Arun Easi
@ 2020-10-08  2:19 ` Martin K. Petersen
  2020-10-13 22:42 ` Martin K. Petersen
  4 siblings, 0 replies; 6+ messages in thread
From: Martin K. Petersen @ 2020-10-08  2:19 UTC (permalink / raw)
  To: Daniel Wagner; +Cc: Nilesh Javali, Arun Easi, linux-scsi, linux-kernel


Daniel,

> qla2xx_process_get_sp_from_handle() will clear the slot which the
> current srb is stored. So this function has a side effect. Therefore,
> we can't use it in qla24xx_process_mbx_iocb_response() to check
> for consistency and later again in qla24xx_mbx_iocb_entry().
>
> Let's move the consistency check directly into
> qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
> of the qla2xx_process_get_sp_from_handle() functionality.

Applied to 5.10/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] qla2xxx: Do not consume srb greedily
  2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
                   ` (3 preceding siblings ...)
  2020-10-08  2:19 ` Martin K. Petersen
@ 2020-10-13 22:42 ` Martin K. Petersen
  4 siblings, 0 replies; 6+ messages in thread
From: Martin K. Petersen @ 2020-10-13 22:42 UTC (permalink / raw)
  To: Arun Easi, Daniel Wagner, Nilesh Javali
  Cc: Martin K . Petersen, linux-kernel, linux-scsi

On Tue, 29 Sep 2020 09:38:02 +0200, Daniel Wagner wrote:

> qla2xx_process_get_sp_from_handle() will clear the slot which the
> current srb is stored. So this function has a side effect. Therefore,
> we can't use it in qla24xx_process_mbx_iocb_response() to check
> for consistency and later again in qla24xx_mbx_iocb_entry().
> 
> Let's move the consistency check directly into
> qla24xx_mbx_iocb_entry() and avoid the double call or any open coding
> of the qla2xx_process_get_sp_from_handle() functionality.

Applied to 5.10/scsi-queue, thanks!

[1/1] scsi: qla2xxx: Do not consume srb greedily
      https://git.kernel.org/mkp/scsi/c/657ed8a8a61b

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-10-13 22:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29  7:38 [PATCH] qla2xxx: Do not consume srb greedily Daniel Wagner
2020-10-05  7:42 ` Daniel Wagner
2020-10-07 13:54 ` Himanshu Madhani
2020-10-07 17:05 ` Arun Easi
2020-10-08  2:19 ` Martin K. Petersen
2020-10-13 22:42 ` Martin K. Petersen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).