All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] blk-mq: do not update io_ticks with passthrough requests
@ 2022-05-30  6:40 iamhswang
  2022-05-30 13:08 ` Christoph Hellwig
  2022-05-30 13:13 ` Jens Axboe
  0 siblings, 2 replies; 3+ messages in thread
From: iamhswang @ 2022-05-30  6:40 UTC (permalink / raw)
  To: axboe; +Cc: zhangwensheng5, linux-block, linux-kernel, Haisu Wang, samuelliao

From: Haisu Wang <haisuwang@tencent.com>

Flush or passthrough requests are not accounted as normal IO in completion.
To reflect iostat for slow IO, io_ticks is updated when stat show called
based on inflight numbers.
It may cause inconsistent io_ticks calculation result.

So do not account non-passthrough request when check inflight.

Fixes: 86d7331299fd ("block: update io_ticks when io hang")
Signed-off-by: Haisu Wang <haisuwang@tencent.com>
Reviewed-by: samuelliao <samuelliao@tencent.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 ae116b755648..3912cae42da3 100644
--- a/block/blk-mq.c
+++ b/block/blk-mq.c
@@ -133,7 +133,8 @@ static bool blk_mq_check_inflight(struct request *rq, void *priv,
 {
 	struct mq_inflight *mi = priv;
 
-	if ((!mi->part->bd_partno || rq->part == mi->part) &&
+	if (rq->part && blk_do_io_stat(rq) &&
+	    (!mi->part->bd_partno || rq->part == mi->part) &&
 	    blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT)
 		mi->inflight[rq_data_dir(rq)]++;
 
-- 
2.27.0


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

* Re: [PATCH] blk-mq: do not update io_ticks with passthrough requests
  2022-05-30  6:40 [PATCH] blk-mq: do not update io_ticks with passthrough requests iamhswang
@ 2022-05-30 13:08 ` Christoph Hellwig
  2022-05-30 13:13 ` Jens Axboe
  1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2022-05-30 13:08 UTC (permalink / raw)
  To: iamhswang
  Cc: axboe, zhangwensheng5, linux-block, linux-kernel, Haisu Wang, samuelliao

Looks good:

Reviewed-by: Christoph Hellwig <hch@lst.de>

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

* Re: [PATCH] blk-mq: do not update io_ticks with passthrough requests
  2022-05-30  6:40 [PATCH] blk-mq: do not update io_ticks with passthrough requests iamhswang
  2022-05-30 13:08 ` Christoph Hellwig
@ 2022-05-30 13:13 ` Jens Axboe
  1 sibling, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2022-05-30 13:13 UTC (permalink / raw)
  To: iamhswang
  Cc: linux-kernel, haisuwang, samuelliao, zhangwensheng5, linux-block

On Mon, 30 May 2022 14:40:59 +0800, iamhswang@gmail.com wrote:
> From: Haisu Wang <haisuwang@tencent.com>
> 
> Flush or passthrough requests are not accounted as normal IO in completion.
> To reflect iostat for slow IO, io_ticks is updated when stat show called
> based on inflight numbers.
> It may cause inconsistent io_ticks calculation result.
> 
> [...]

Applied, thanks!

[1/1] blk-mq: do not update io_ticks with passthrough requests
      commit: b81c14ca14b631aa1abae32fb5ae75b5e9251012

Best regards,
-- 
Jens Axboe



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

end of thread, other threads:[~2022-05-30 13:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-30  6:40 [PATCH] blk-mq: do not update io_ticks with passthrough requests iamhswang
2022-05-30 13:08 ` Christoph Hellwig
2022-05-30 13:13 ` Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.