linux-mediatek.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* blk-mq: check on cpu id when there is only one ctx mapping
@ 2023-05-31  8:38 Ed Tsai
  2023-05-31  8:38 ` [PATCH v2] " Ed Tsai
  2023-05-31  9:04 ` Stanley Chu
  0 siblings, 2 replies; 4+ messages in thread
From: Ed Tsai @ 2023-05-31  8:38 UTC (permalink / raw)
  To: axboe
  Cc: kbusch, liusong, linux-block, linux-kernel, linux-arm-kernel,
	linux-mediatek, wsd_upstream, peter.wang, stanley.chu, powen.kao,
	alice.chao, naomi.chu, Ed Tsai

commit f168420 ("blk-mq: don't redirect completion for hctx withs only
one ctx mapping") When nvme applies a 1:1 mapping of hctx and ctx, there
will be no remote request.

But for ufs, the submission and completion queues could be asymmetric.
(e.g. Multiple SQs share one CQ) Therefore, 1:1 mapping of hctx and
ctx won't complete request on the submission cpu. In this situation,
this nr_ctx check could violate the QUEUE_FLAG_SAME_FORCE, as a result,
check on cpu id when there is only one ctx mapping.

Signed-off-by: Ed Tsai <ed.tsai@mediatek.com>
Signed-off-by: Po-Wen Kao <powen.kao@mediatek.com>
---
 block/blk-mq.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/block/blk-mq.c b/block/blk-mq.c
index 41f7e2b500bd..ecc30ebe9483 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -1176,7 +1176,8 @@ bool blk_mq_complete_request_remote(struct request *rq)
 	 * or a polled request, always complete locally,
 	 * it's pointless to redirect the completion.
 	 */
-	if (rq->mq_hctx->nr_ctx == 1 ||
+	if ((rq->mq_hctx->nr_ctx == 1 &&
+	     rq->mq_ctx->cpu == raw_smp_processor_id()) ||
 		rq->cmd_flags & REQ_POLLED)
 		return false;
 
-- 
2.18.0



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

* [PATCH v2] blk-mq: check on cpu id when there is only one ctx mapping
  2023-05-31  8:38 blk-mq: check on cpu id when there is only one ctx mapping Ed Tsai
@ 2023-05-31  8:38 ` Ed Tsai
  2023-05-31  9:40   ` Alexandre Mergnat
  2023-05-31  9:04 ` Stanley Chu
  1 sibling, 1 reply; 4+ messages in thread
From: Ed Tsai @ 2023-05-31  8:38 UTC (permalink / raw)
  To: axboe
  Cc: kbusch, liusong, linux-block, linux-kernel, linux-arm-kernel,
	linux-mediatek, wsd_upstream, peter.wang, stanley.chu, powen.kao,
	alice.chao, naomi.chu, Ed Tsai

commit f168420 ("blk-mq: don't redirect completion for hctx withs only
one ctx mapping") When nvme applies a 1:1 mapping of hctx and ctx, there
will be no remote request.

But for ufs, the submission and completion queues could be asymmetric.
(e.g. Multiple SQs share one CQ) Therefore, 1:1 mapping of hctx and
ctx won't complete request on the submission cpu. In this situation,
this nr_ctx check could violate the QUEUE_FLAG_SAME_FORCE, as a result,
check on cpu id when there is only one ctx mapping.

Signed-off-by: Ed Tsai <ed.tsai@mediatek.com>
Change-Id: I4f95d7538532f72dcb20dacfdd639c97951c2729
---
 block/blk-mq.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/block/blk-mq.c b/block/blk-mq.c
index 41f7e2b500bd..ecc30ebe9483 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -1176,7 +1176,8 @@ bool blk_mq_complete_request_remote(struct request *rq)
 	 * or a polled request, always complete locally,
 	 * it's pointless to redirect the completion.
 	 */
-	if (rq->mq_hctx->nr_ctx == 1 ||
+	if ((rq->mq_hctx->nr_ctx == 1 &&
+	     rq->mq_ctx->cpu == raw_smp_processor_id()) ||
 		rq->cmd_flags & REQ_POLLED)
 		return false;
 
-- 
2.18.0



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

* Re: blk-mq: check on cpu id when there is only one ctx mapping
  2023-05-31  8:38 blk-mq: check on cpu id when there is only one ctx mapping Ed Tsai
  2023-05-31  8:38 ` [PATCH v2] " Ed Tsai
@ 2023-05-31  9:04 ` Stanley Chu
  1 sibling, 0 replies; 4+ messages in thread
From: Stanley Chu @ 2023-05-31  9:04 UTC (permalink / raw)
  To: Ed Tsai
  Cc: axboe, kbusch, liusong, linux-block, linux-kernel,
	linux-arm-kernel, linux-mediatek, wsd_upstream, peter.wang,
	stanley.chu, powen.kao, alice.chao, naomi.chu

On Wed, May 31, 2023 at 4:49 PM Ed Tsai <ed.tsai@mediatek.com> wrote:
>
> commit f168420 ("blk-mq: don't redirect completion for hctx withs only
> one ctx mapping") When nvme applies a 1:1 mapping of hctx and ctx, there
> will be no remote request.
>
> But for ufs, the submission and completion queues could be asymmetric.
> (e.g. Multiple SQs share one CQ) Therefore, 1:1 mapping of hctx and
> ctx won't complete request on the submission cpu. In this situation,
> this nr_ctx check could violate the QUEUE_FLAG_SAME_FORCE, as a result,
> check on cpu id when there is only one ctx mapping.
>
> Signed-off-by: Ed Tsai <ed.tsai@mediatek.com>
> Signed-off-by: Po-Wen Kao <powen.kao@mediatek.com>

Reviewed-by: Stanley Chu <stanley.chu@mediatek.com>


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

* Re: [PATCH v2] blk-mq: check on cpu id when there is only one ctx mapping
  2023-05-31  8:38 ` [PATCH v2] " Ed Tsai
@ 2023-05-31  9:40   ` Alexandre Mergnat
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Mergnat @ 2023-05-31  9:40 UTC (permalink / raw)
  To: Ed Tsai, axboe
  Cc: kbusch, liusong, linux-block, linux-kernel, linux-arm-kernel,
	linux-mediatek, wsd_upstream, peter.wang, stanley.chu, powen.kao,
	alice.chao, naomi.chu

On 31/05/2023 10:38, Ed Tsai wrote:
> commit f168420 ("blk-mq: don't redirect completion for hctx withs only
> one ctx mapping") When nvme applies a 1:1 mapping of hctx and ctx, there
> will be no remote request.
> 
> But for ufs, the submission and completion queues could be asymmetric.
> (e.g. Multiple SQs share one CQ) Therefore, 1:1 mapping of hctx and
> ctx won't complete request on the submission cpu. In this situation,
> this nr_ctx check could violate the QUEUE_FLAG_SAME_FORCE, as a result,
> check on cpu id when there is only one ctx mapping.

Reviewed-by: Alexandre Mergnat <amergnat@baylibre.com>

-- 
Regards,
Alexandre



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

end of thread, other threads:[~2023-05-31  9:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-31  8:38 blk-mq: check on cpu id when there is only one ctx mapping Ed Tsai
2023-05-31  8:38 ` [PATCH v2] " Ed Tsai
2023-05-31  9:40   ` Alexandre Mergnat
2023-05-31  9:04 ` Stanley Chu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).