public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth
@ 2023-02-16 17:13 Asutosh Das
  2023-02-16 17:46 ` Bart Van Assche
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Asutosh Das @ 2023-02-16 17:13 UTC (permalink / raw)
  To: quic_cang, martin.petersen, linux-scsi
  Cc: quic_nguyenb, quic_xiaosenh, stanley.chu, adrian.hunter,
	bvanassche, avri.altman, mani, beanhuo, Asutosh Das,
	linux-arm-msm, Alim Akhtar, James E.J. Bottomley, open list

ufshcd_config_mcq() may change the can_queue value.
The current code invokes scsi_add_host() before ufshcd_config_mcq().
So the tags are limited to the old can_queue value.

Fix this by invoking scsi_add_host() after ufshcd_config_mcq().

Fixes: 2468da61ea09 ("scsi: ufs: core: mcq: Configure operation and runtime interface")
Signed-off-by: Asutosh Das <quic_asutoshd@quicinc.com>

----
v1 -> v2:
  - Added Fixes tag
  - Reworked to handle success case first
---
 drivers/ufs/core/ufshcd.c | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index 3b3cf78d3b10..3891183897f0 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -8530,7 +8530,9 @@ static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params)
 			return ret;
 		if (is_mcq_supported(hba) && !hba->scsi_host_added) {
 			ret = ufshcd_alloc_mcq(hba);
-			if (ret) {
+			if (!ret) {
+				ufshcd_config_mcq(hba);
+			} else {
 				/* Continue with SDB mode */
 				use_mcq_mode = false;
 				dev_err(hba->dev, "MCQ mode is disabled, err=%d\n",
@@ -8542,10 +8544,10 @@ static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params)
 				return ret;
 			}
 			hba->scsi_host_added = true;
-		}
-		/* MCQ may be disabled if ufshcd_alloc_mcq() fails */
-		if (is_mcq_supported(hba) && use_mcq_mode)
+		} else if (is_mcq_supported(hba)) {
+			/* UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH is set */
 			ufshcd_config_mcq(hba);
+		}
 	}
 
 	ufshcd_tune_unipro_params(hba);
-- 
2.7.4


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

* Re: [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth
  2023-02-16 17:13 [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth Asutosh Das
@ 2023-02-16 17:46 ` Bart Van Assche
  2023-02-16 18:09 ` Manivannan Sadhasivam
  2023-02-21 23:21 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Bart Van Assche @ 2023-02-16 17:46 UTC (permalink / raw)
  To: Asutosh Das, quic_cang, martin.petersen, linux-scsi
  Cc: quic_nguyenb, quic_xiaosenh, stanley.chu, adrian.hunter,
	avri.altman, mani, beanhuo, linux-arm-msm, Alim Akhtar,
	James E.J. Bottomley, open list

On 2/16/23 09:13, Asutosh Das wrote:
> ufshcd_config_mcq() may change the can_queue value.
> The current code invokes scsi_add_host() before ufshcd_config_mcq().
> So the tags are limited to the old can_queue value.
> 
> Fix this by invoking scsi_add_host() after ufshcd_config_mcq().

Reviewed-by: Bart Van Assche <bvanassche@acm.org>

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

* Re: [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth
  2023-02-16 17:13 [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth Asutosh Das
  2023-02-16 17:46 ` Bart Van Assche
@ 2023-02-16 18:09 ` Manivannan Sadhasivam
  2023-02-21 23:21 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Manivannan Sadhasivam @ 2023-02-16 18:09 UTC (permalink / raw)
  To: Asutosh Das
  Cc: quic_cang, martin.petersen, linux-scsi, quic_nguyenb,
	quic_xiaosenh, stanley.chu, adrian.hunter, bvanassche,
	avri.altman, mani, beanhuo, linux-arm-msm, Alim Akhtar,
	James E.J. Bottomley, open list

On Thu, Feb 16, 2023 at 09:13:46AM -0800, Asutosh Das wrote:
> ufshcd_config_mcq() may change the can_queue value.
> The current code invokes scsi_add_host() before ufshcd_config_mcq().
> So the tags are limited to the old can_queue value.
> 
> Fix this by invoking scsi_add_host() after ufshcd_config_mcq().
> 
> Fixes: 2468da61ea09 ("scsi: ufs: core: mcq: Configure operation and runtime interface")
> Signed-off-by: Asutosh Das <quic_asutoshd@quicinc.com>

Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>

Thanks,
Mani

> 
> ----
> v1 -> v2:
>   - Added Fixes tag
>   - Reworked to handle success case first
> ---
>  drivers/ufs/core/ufshcd.c | 10 ++++++----
>  1 file changed, 6 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
> index 3b3cf78d3b10..3891183897f0 100644
> --- a/drivers/ufs/core/ufshcd.c
> +++ b/drivers/ufs/core/ufshcd.c
> @@ -8530,7 +8530,9 @@ static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params)
>  			return ret;
>  		if (is_mcq_supported(hba) && !hba->scsi_host_added) {
>  			ret = ufshcd_alloc_mcq(hba);
> -			if (ret) {
> +			if (!ret) {
> +				ufshcd_config_mcq(hba);
> +			} else {
>  				/* Continue with SDB mode */
>  				use_mcq_mode = false;
>  				dev_err(hba->dev, "MCQ mode is disabled, err=%d\n",
> @@ -8542,10 +8544,10 @@ static int ufshcd_device_init(struct ufs_hba *hba, bool init_dev_params)
>  				return ret;
>  			}
>  			hba->scsi_host_added = true;
> -		}
> -		/* MCQ may be disabled if ufshcd_alloc_mcq() fails */
> -		if (is_mcq_supported(hba) && use_mcq_mode)
> +		} else if (is_mcq_supported(hba)) {
> +			/* UFSHCD_QUIRK_REINIT_AFTER_MAX_GEAR_SWITCH is set */
>  			ufshcd_config_mcq(hba);
> +		}
>  	}
>  
>  	ufshcd_tune_unipro_params(hba);
> -- 
> 2.7.4
> 

-- 
மணிவண்ணன் சதாசிவம்

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

* Re: [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth
  2023-02-16 17:13 [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth Asutosh Das
  2023-02-16 17:46 ` Bart Van Assche
  2023-02-16 18:09 ` Manivannan Sadhasivam
@ 2023-02-21 23:21 ` Martin K. Petersen
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2023-02-21 23:21 UTC (permalink / raw)
  To: Asutosh Das
  Cc: quic_cang, martin.petersen, linux-scsi, quic_nguyenb,
	quic_xiaosenh, stanley.chu, adrian.hunter, bvanassche,
	avri.altman, mani, beanhuo, linux-arm-msm, Alim Akhtar,
	James E.J. Bottomley, open list


Asutosh,

> ufshcd_config_mcq() may change the can_queue value.  The current code
> invokes scsi_add_host() before ufshcd_config_mcq().  So the tags are
> limited to the old can_queue value.

Applied to 6.3/scsi-staging, thanks!

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2023-02-21 23:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-16 17:13 [PATCH v2 1/1] ufs: mcq: fix incorrectly set queue depth Asutosh Das
2023-02-16 17:46 ` Bart Van Assche
2023-02-16 18:09 ` Manivannan Sadhasivam
2023-02-21 23:21 ` 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