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, 1 Jun 2023 07:08:47 -0700
From:   Bart Van Assche <bvanassche@....org>
To:     Zhang Hui <masonzhang.xiaomi@...il.com>,
        Alim Akhtar <alim.akhtar@...sung.com>,
        Avri Altman <avri.altman@....com>,
        "James E . J . Bottomley" <jejb@...ux.ibm.com>,
        "Martin K . Petersen" <martin.petersen@...cle.com>
Cc:     Can Guo <quic_cang@...cinc.com>,
        Manivannan Sadhasivam <mani@...nel.org>,
        Asutosh Das <quic_asutoshd@...cinc.com>,
        Arthur Simchaev <Arthur.Simchaev@....com>,
        Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>,
        zhanghui <zhanghui31@...omi.com>, Bean Huo <beanhuo@...ron.com>,
        peng.zhou@...iatek.com, yudongbin@...omi.com,
        linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v2] scsi: ufs: core: Fix ufshcd_inc_sq_tail function bug

On 6/1/23 05:46, Zhang Hui wrote:
> From: zhanghui <zhanghui31@...omi.com>
> 
> When qdepth is not power of 2, not every bit of the mask is 1, so
> sq_tail_slot some bits will be cleared unexpected.
> 
> Signed-off-by: zhanghui <zhanghui31@...omi.com>
> ---
>   drivers/ufs/core/ufshcd-priv.h | 5 +++--
>   1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/ufs/core/ufshcd-priv.h b/drivers/ufs/core/ufshcd-priv.h
> index d53b93c21a0c..319fba31c1f5 100644
> --- a/drivers/ufs/core/ufshcd-priv.h
> +++ b/drivers/ufs/core/ufshcd-priv.h
> @@ -366,10 +366,11 @@ static inline bool ufs_is_valid_unit_desc_lun(struct ufs_dev_info *dev_info, u8
>   static inline void ufshcd_inc_sq_tail(struct ufs_hw_queue *q)
>   	__must_hold(&q->sq_lock)
>   {
> -	u32 mask = q->max_entries - 1;
>   	u32 val;
>   
> -	q->sq_tail_slot = (q->sq_tail_slot + 1) & mask;
> +	q->sq_tail_slot++;
> +	if (q->sq_tail_slot == q->max_entries)
> +		q->sq_tail_slot = 0;
>   	val = q->sq_tail_slot * sizeof(struct utp_transfer_req_desc);
>   	writel(val, q->mcq_sq_tail);
>   }

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

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ