[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240523002257.1068373-1-cw9316.lee@samsung.com>
Date: Thu, 23 May 2024 09:22:57 +0900
From: Chanwoo Lee <cw9316.lee@...sung.com>
To: alim.akhtar@...sung.com, avri.altman@....com, bvanassche@....org,
James.Bottomley@...senPartnership.com, martin.petersen@...cle.com,
stanley.chu@...iatek.com, quic_nguyenb@...cinc.com, quic_cang@...cinc.com,
powen.kao@...iatek.com, yang.lee@...ux.alibaba.com,
linux-scsi@...r.kernel.org, linux-kernel@...r.kernel.org
Cc: Chanwoo Lee <cw9316.lee@...sung.com>
Subject: [PATCH] ufs:mcq:Fixing Error Output for ufshcd_try_to_abort_task in
ufshcd_mcq_abort
An error unrelated to ufshcd_try_to_abort_task is being output and
can cause confusion. So, I modified it to output the result of abort
fail. This modification was similarly revised by referring to the
ufshcd_abort function.
Signed-off-by: Chanwoo Lee <cw9316.lee@...sung.com>
---
drivers/ufs/core/ufs-mcq.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/ufs/core/ufs-mcq.c b/drivers/ufs/core/ufs-mcq.c
index 005d63ab1f44..fc24d1af1fe8 100644
--- a/drivers/ufs/core/ufs-mcq.c
+++ b/drivers/ufs/core/ufs-mcq.c
@@ -667,9 +667,11 @@ int ufshcd_mcq_abort(struct scsi_cmnd *cmd)
* in the completion queue either. Query the device to see if
* the command is being processed in the device.
*/
- if (ufshcd_try_to_abort_task(hba, tag)) {
+ err = ufshcd_try_to_abort_task(hba, tag);
+ if (err) {
dev_err(hba->dev, "%s: device abort failed %d\n", __func__, err);
lrbp->req_abort_skip = true;
+ err = FAILED;
goto out;
}
--
2.34.1
Powered by blists - more mailing lists