[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6a89fb45-b940-4db8-9025-944ccd2d4628@acm.org>
Date: Tue, 24 Oct 2023 12:00:39 -0700
From: Bart Van Assche <bvanassche@....org>
To: alice.chao@...iatek.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>,
Matthias Brugger <matthias.bgg@...il.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@...labora.com>
Cc: wsd_upstream@...iatek.com, stanley.chu@...iatek.com,
peter.wang@...iatek.com, powen.kao@...iatek.com,
naomi.chu@...iatek.com, cc.chou@...iatek.com,
tun-yu.yu@...iatek.com, chun-hung.wu@...iatek.com,
casper.li@...iatek.com, linux-scsi@...r.kernel.org,
linux-kernel@...r.kernel.org, linux-arm-kernel@...ts.infradead.org,
linux-mediatek@...ts.infradead.org
Subject: Re: [PATCH 1/1] core: ufs: fix racing issue between force complete
and isr
On 10/24/23 01:43, alice.chao@...iatek.com wrote:
> diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
> index 8382e8cfa414..ef6bd146a767 100644
> --- a/drivers/ufs/core/ufshcd.c
> +++ b/drivers/ufs/core/ufshcd.c
> @@ -5518,13 +5518,13 @@ static void ufshcd_mcq_compl_pending_transfer(struct ufs_hba *hba,
> * For those cmds of which the cqes are not present
> * in the cq, complete them explicitly.
> */
> + spin_lock_irqsave(&hwq->cq_lock, flags);
> if (cmd && !test_bit(SCMD_STATE_COMPLETE, &cmd->state)) {
> - spin_lock_irqsave(&hwq->cq_lock, flags);
> set_host_byte(cmd, DID_REQUEUE);
> ufshcd_release_scsi_cmd(hba, lrbp);
> scsi_done(cmd);
> - spin_unlock_irqrestore(&hwq->cq_lock, flags);
> }
> + spin_unlock_irqrestore(&hwq->cq_lock, flags);
> } else {
> ufshcd_mcq_poll_cqe_lock(hba, hwq);
> }
Reviewed-by: Bart Van Assche <bvanassche@....org>
Powered by blists - more mailing lists