Re: [PATCH v2] scsi: ufs: Fix some problems in task management request implementation

2021-01-26 Thread Bart Van Assche
On 1/20/21 7:23 PM, Can Guo wrote:
> Current task management request send/compl implementation is broken, the
> problems and fixes are listed as below:
> 
> Problem: TMR completion timeout. ufshcd_tmc_handler() calls
>  blk_mq_tagset_busy_iter(fn == ufshcd_compl_tm()), but since
>  blk_mq_tagset_busy_iter() only iterates over all reserved tags and
>  started requests, so ufshcd_compl_tm() never gets a chance to run.
> Fix: Call blk_mq_start_request() in __ufshcd_issue_tm_cmd().
> 
> Problem: Race condition in send/compl paths. ufshcd_compl_tm() looks for
>  all 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL and call complete()
>  for each req who has the req->end_io_data set. There can be a race
>  condition btw tmc send/compl, because req->end_io_data is set, in
>  __ufshcd_issue_tm_cmd(), without host lock protection, so it is
>  possible that when ufshcd_compl_tm() checks the req->end_io_data,
>  req->end_io_data is set but the corresponding tag has not been set
>  in the REG_UTP_TASK_REQ_DOOR_BELL. Thus, ufshcd_tmc_handler() may
>  wrongly complete TMRs which have not been sent.
> Fix: Protect req->end_io_data with host lock. And let ufshcd_compl_tm()
>  only handle those tm cmds which have been completed instead of
>  looking for 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL.
> 
> Problem: In __ufshcd_issue_tm_cmd(), it is not right to use hba->nutrs +
>  req->tag as the Task Tag in one TMR UPIU.
> Fix: Directly use req->tag as Task Tag.

Please split this patch into three separate patches - one patch per
problem that has been described above.

Thanks,

Bart.


RE: [PATCH v2] scsi: ufs: Fix some problems in task management request implementation

2021-01-26 Thread Avri Altman
 
> Current task management request send/compl implementation is broken, the
> problems and fixes are listed as below:
> 
> Problem: TMR completion timeout. ufshcd_tmc_handler() calls
>  blk_mq_tagset_busy_iter(fn == ufshcd_compl_tm()), but since
>  blk_mq_tagset_busy_iter() only iterates over all reserved tags and
>  started requests, so ufshcd_compl_tm() never gets a chance to run.
> Fix: Call blk_mq_start_request() in __ufshcd_issue_tm_cmd().
> 
> Problem: Race condition in send/compl paths. ufshcd_compl_tm() looks for
>  all 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL and call complete()
>  for each req who has the req->end_io_data set. There can be a race
>  condition btw tmc send/compl, because req->end_io_data is set, in
>  __ufshcd_issue_tm_cmd(), without host lock protection, so it is
>  possible that when ufshcd_compl_tm() checks the req->end_io_data,
>  req->end_io_data is set but the corresponding tag has not been set
>  in the REG_UTP_TASK_REQ_DOOR_BELL. Thus, ufshcd_tmc_handler()
> may
>  wrongly complete TMRs which have not been sent.
> Fix: Protect req->end_io_data with host lock. And let ufshcd_compl_tm()
>  only handle those tm cmds which have been completed instead of
>  looking for 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL.
> 
> Problem: In __ufshcd_issue_tm_cmd(), it is not right to use hba->nutrs +
>  req->tag as the Task Tag in one TMR UPIU.
> Fix: Directly use req->tag as Task Tag.
> 
> Cc: Jaegeuk Kim 
Since you are practically reverting Bart's change (69a6c269c097), maybe cc him 
as well,
And add a fixes tag?

Also, even though all those fixes are around the same place, but fixing 
different issues,
You might want to consider to separate those.  Whatever you think.

Thanks,
Avri


Re: [PATCH v2] scsi: ufs: Fix some problems in task management request implementation

2021-01-26 Thread Can Guo

On 2021-01-25 19:36, Avri Altman wrote:
Current task management request send/compl implementation is broken, 
the

problems and fixes are listed as below:

Problem: TMR completion timeout. ufshcd_tmc_handler() calls
 blk_mq_tagset_busy_iter(fn == ufshcd_compl_tm()), but since
 blk_mq_tagset_busy_iter() only iterates over all reserved 
tags and
 started requests, so ufshcd_compl_tm() never gets a chance to 
run.

Fix: Call blk_mq_start_request() in __ufshcd_issue_tm_cmd().

Problem: Race condition in send/compl paths. ufshcd_compl_tm() looks 
for
 all 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL and call 
complete()
 for each req who has the req->end_io_data set. There can be a 
race
 condition btw tmc send/compl, because req->end_io_data is 
set, in
 __ufshcd_issue_tm_cmd(), without host lock protection, so it 
is
 possible that when ufshcd_compl_tm() checks the 
req->end_io_data,
 req->end_io_data is set but the corresponding tag has not 
been set

 in the REG_UTP_TASK_REQ_DOOR_BELL. Thus, ufshcd_tmc_handler()
may
 wrongly complete TMRs which have not been sent.
Fix: Protect req->end_io_data with host lock. And let 
ufshcd_compl_tm()
 only handle those tm cmds which have been completed instead 
of

 looking for 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL.

Problem: In __ufshcd_issue_tm_cmd(), it is not right to use hba->nutrs 
+

 req->tag as the Task Tag in one TMR UPIU.
Fix: Directly use req->tag as Task Tag.

Cc: Jaegeuk Kim 

Since you are practically reverting Bart's change (69a6c269c097),
maybe cc him as well,
And add a fixes tag?



Hi Avri,

It is not reverting Bart's change, but making TMR work properly based
on it. I am ok with the Bart's idea of getting a tag for TMR from
blk_get_request(), and this patch respects that idea.


Also, even though all those fixes are around the same place, but
fixing different issues,
You might want to consider to separate those.  Whatever you think.



Thanks for the suggestion. I treat it as a whole because it is 
convenient

for me to get it ported and tested over different platforms. I may
revise it in next version after more comments come on it.

Thanks,
Can Guo.


Thanks,
Avri


[PATCH v2] scsi: ufs: Fix some problems in task management request implementation

2021-01-20 Thread Can Guo
Current task management request send/compl implementation is broken, the
problems and fixes are listed as below:

Problem: TMR completion timeout. ufshcd_tmc_handler() calls
 blk_mq_tagset_busy_iter(fn == ufshcd_compl_tm()), but since
 blk_mq_tagset_busy_iter() only iterates over all reserved tags and
 started requests, so ufshcd_compl_tm() never gets a chance to run.
Fix: Call blk_mq_start_request() in __ufshcd_issue_tm_cmd().

Problem: Race condition in send/compl paths. ufshcd_compl_tm() looks for
 all 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL and call complete()
 for each req who has the req->end_io_data set. There can be a race
 condition btw tmc send/compl, because req->end_io_data is set, in
 __ufshcd_issue_tm_cmd(), without host lock protection, so it is
 possible that when ufshcd_compl_tm() checks the req->end_io_data,
 req->end_io_data is set but the corresponding tag has not been set
 in the REG_UTP_TASK_REQ_DOOR_BELL. Thus, ufshcd_tmc_handler() may
 wrongly complete TMRs which have not been sent.
Fix: Protect req->end_io_data with host lock. And let ufshcd_compl_tm()
 only handle those tm cmds which have been completed instead of
 looking for 0 bits in the REG_UTP_TASK_REQ_DOOR_BELL.

Problem: In __ufshcd_issue_tm_cmd(), it is not right to use hba->nutrs +
 req->tag as the Task Tag in one TMR UPIU.
Fix: Directly use req->tag as Task Tag.

Cc: Jaegeuk Kim 
Signed-off-by: Can Guo 
---

Change since v1:
- Typo fixed

This change is based on Jaegeuk's change - 
https://git.kernel.org/mkp/scsi/c/eeb1b55b6e25

---
 drivers/scsi/ufs/ufshcd.c | 71 +--
 1 file changed, 38 insertions(+), 33 deletions(-)

diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index 4be35bf..8935c57 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -6213,7 +6213,7 @@ static irqreturn_t ufshcd_check_errors(struct ufs_hba 
*hba)
 
 struct ctm_info {
struct ufs_hba  *hba;
-   unsigned long   pending;
+   unsigned long   completed;
unsigned intncpl;
 };
 
@@ -6222,13 +6222,13 @@ static bool ufshcd_compl_tm(struct request *req, void 
*priv, bool reserved)
struct ctm_info *const ci = priv;
struct completion *c;
 
-   WARN_ON_ONCE(reserved);
-   if (test_bit(req->tag, >pending))
-   return true;
-   ci->ncpl++;
-   c = req->end_io_data;
-   if (c)
-   complete(c);
+   if (test_bit(req->tag, >completed)) {
+   __clear_bit(req->tag, >hba->outstanding_tasks);
+   ci->ncpl++;
+   c = req->end_io_data;
+   if (c)
+   complete(c);
+   }
return true;
 }
 
@@ -6244,11 +6244,19 @@ static irqreturn_t ufshcd_tmc_handler(struct ufs_hba 
*hba)
 {
struct request_queue *q = hba->tmf_queue;
struct ctm_info ci = {
-   .hba = hba,
-   .pending = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL),
+   .hba = hba,
+   .ncpl = 0,
};
+   u32 tm_doorbell;
+   unsigned long completed;
+
+   tm_doorbell = ufshcd_readl(hba, REG_UTP_TASK_REQ_DOOR_BELL);
+   completed = tm_doorbell ^ hba->outstanding_tasks;
 
-   blk_mq_tagset_busy_iter(q->tag_set, ufshcd_compl_tm, );
+   if (completed) {
+   ci.completed = completed;
+   blk_mq_tagset_busy_iter(q->tag_set, ufshcd_compl_tm, );
+   }
return ci.ncpl ? IRQ_HANDLED : IRQ_NONE;
 }
 
@@ -6366,37 +6374,33 @@ static int __ufshcd_issue_tm_cmd(struct ufs_hba *hba,
DECLARE_COMPLETION_ONSTACK(wait);
struct request *req;
unsigned long flags;
-   int free_slot, task_tag, err;
+   int task_tag, err;
 
/*
-* Get free slot, sleep if slots are unavailable.
-* Even though we use wait_event() which sleeps indefinitely,
-* the maximum wait time is bounded by %TM_CMD_TIMEOUT.
+* blk_get_request() used here is only to get a free tag.
 */
req = blk_get_request(q, REQ_OP_DRV_OUT, 0);
if (IS_ERR(req))
return PTR_ERR(req);
 
-   req->end_io_data = 
-   free_slot = req->tag;
-   WARN_ON_ONCE(free_slot < 0 || free_slot >= hba->nutmrs);
ufshcd_hold(hba, false);
-
spin_lock_irqsave(host->host_lock, flags);
-   task_tag = hba->nutrs + free_slot;
+   req->end_io_data = 
+   blk_mq_start_request(req);
 
+   task_tag = req->tag;
treq->req_header.dword_0 |= cpu_to_be32(task_tag);
 
-   memcpy(hba->utmrdl_base_addr + free_slot, treq, sizeof(*treq));
-   ufshcd_vops_setup_task_mgmt(hba, free_slot, tm_function);
+   memcpy(hba->utmrdl_base_addr + task_tag, treq, sizeof(*treq));
+   ufshcd_vops_setup_task_mgmt(hba, task_tag, tm_function);
 
/* send command to the