[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191217142828.79295-1-wenyang@linux.alibaba.com>
Date: Tue, 17 Dec 2019 22:28:28 +0800
From: Wen Yang <wenyang@...ux.alibaba.com>
To: Jens Axboe <axboe@...nel.dk>
Cc: Joseph Qi <joseph.qi@...ux.alibaba.com>, xlpang@...ux.alibaba.com,
Wen Yang <wenyang@...ux.alibaba.com>,
Mikulas Patocka <mpatocka@...hat.com>,
Mike Snitzer <snitzer@...hat.com>, linux-block@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH] block: make the io_ticks counter more accurate
Instead of the jiffies, we should update the io_ticks counter
with the passed in parameter 'now'.
Signed-off-by: Wen Yang <wenyang@...ux.alibaba.com>
Cc: Jens Axboe <axboe@...nel.dk>
Cc: Mikulas Patocka <mpatocka@...hat.com>
Cc: Mike Snitzer <snitzer@...hat.com>
Cc: linux-block@...r.kernel.org
Cc: linux-kernel@...r.kernel.org
---
block/blk-core.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/block/blk-core.c b/block/blk-core.c
index 379f6f5..eb71873 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1365,7 +1365,7 @@ void blk_account_io_done(struct request *req, u64 now)
part_stat_lock();
part = req->part;
- update_io_ticks(part, jiffies);
+ update_io_ticks(part, now);
part_stat_inc(part, ios[sgrp]);
part_stat_add(part, nsecs[sgrp], now - req->start_time_ns);
part_stat_add(part, time_in_queue, nsecs_to_jiffies64(now - req->start_time_ns));
--
1.8.3.1
Powered by blists - more mailing lists