linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] block: move non sync requests complete flow to softirq
@ 2024-09-03 11:54 ZhangHui
  2024-09-03 17:28 ` Bart Van Assche
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: ZhangHui @ 2024-09-03 11:54 UTC (permalink / raw)
  To: axboe, bvanassche; +Cc: linux-block, linux-kernel, zhanghui31

From: zhanghui <zhanghui31@xiaomi.com>

Currently, for a controller that supports multiple queues, like UFS4.0,
the mq_ops->complete is executed in the interrupt top-half. Therefore, 
the file system's end io is executed during the request completion process,
such as f2fs_write_end_io on smartphone.

However, we found that the execution time of the file system end io
is strongly related to the size of the bio and the processing speed
of the CPU. Because the file system's end io will traverse every page
in bio, this is a very time-consuming operation.

We measured that the 80M bio write operation on the little CPU will
cause the execution time of the top-half to be greater than 100ms.
The CPU tick on a smartphone is only 4ms, which will undoubtedly affect
scheduling efficiency.

Let's fixed this issue by moved non sync request completion flow to
softirq, and keep the sync request completion in the top-half.

Signed-off-by: zhanghui <zhanghui31@xiaomi.com>
---
 block/blk-mq.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/block/blk-mq.c b/block/blk-mq.c
index e3c3c0c21b55..06b232edff11 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -1193,6 +1193,8 @@ static void blk_mq_raise_softirq(struct request *rq)
 
 bool blk_mq_complete_request_remote(struct request *rq)
 {
+	const bool is_sync = rq_is_sync(rq);
+
 	WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
 
 	/*
@@ -1210,7 +1212,7 @@ bool blk_mq_complete_request_remote(struct request *rq)
 		return true;
 	}
 
-	if (rq->q->nr_hw_queues == 1) {
+	if ((rq->q->nr_hw_queues == 1) || !is_sync) {
 		blk_mq_raise_softirq(rq);
 		return true;
 	}
-- 
2.43.0


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

end of thread, other threads:[~2024-09-05  7:33 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-03 11:54 [PATCH v3] block: move non sync requests complete flow to softirq ZhangHui
2024-09-03 17:28 ` Bart Van Assche
2024-09-03 17:47   ` Jens Axboe
2024-09-04  3:35   ` [External Mail]Re: " 章辉
2024-09-04 17:22     ` Bart Van Assche
2024-09-05  3:05       ` 章辉
2024-09-03 17:49 ` Jens Axboe
2024-09-04  3:25   ` [External Mail]Re: " 章辉
2024-09-04  4:29   ` Christoph Hellwig
2024-09-05  2:52     ` [External Mail]Re: " 章辉
2024-09-04  8:01 ` Ming Lei
2024-09-05  2:46   ` [External Mail]Re: " 章辉
2024-09-05  3:49     ` Ming Lei
2024-09-05  7:33       ` 章辉

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).