2020-06-01 23:14:00

by Boris Burkov

[permalink] [raw]
Subject: [PATCH] blk-cgroup: don't account iostat for root cgroup

This data is never flushed by rstat, so it is never used. We shouldn't
bother collecting it. We can access global disk stats to compute io
statistics for the root cgroup.

Signed-off-by: Boris Burkov <[email protected]>
---
include/linux/blk-cgroup.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/blk-cgroup.h b/include/linux/blk-cgroup.h
index a57ebe2f00ab..e9de4ec07182 100644
--- a/include/linux/blk-cgroup.h
+++ b/include/linux/blk-cgroup.h
@@ -591,7 +591,7 @@ static inline bool blkcg_bio_issue_check(struct request_queue *q,

throtl = blk_throtl_bio(q, blkg, bio);

- if (!throtl) {
+ if (blkg->parent && !throtl) {
struct blkg_iostat_set *bis;
int rwd, cpu;

--
2.24.1


2020-06-02 02:54:14

by Tejun Heo

[permalink] [raw]
Subject: Re: [PATCH] blk-cgroup: don't account iostat for root cgroup

On Mon, Jun 01, 2020 at 04:11:41PM -0700, Boris Burkov wrote:
> This data is never flushed by rstat, so it is never used. We shouldn't
> bother collecting it. We can access global disk stats to compute io
> statistics for the root cgroup.
>
> Signed-off-by: Boris Burkov <[email protected]>

Acked-by: Tejun Heo <[email protected]>

Thanks.

--
tejun