From: Tejun Heo <tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
To: axboe-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
avanzini.arianna-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
kernel-team-b10kYP2dOMg@public.gmane.org
Subject: [PATCHSET block/for-4.2/writeback] blkcg: blkcg stats cleanup
Date: Thu, 25 Jun 2015 17:38:51 -0400 [thread overview]
Message-ID: <1435268337-1738-1-git-send-email-tj@kernel.org> (raw)
Hello,
blkcg's stats have always been somwhat of a mess. This patchset tries
to improve the situation a bit.
* cfq-iosched implements custom recursive stats and blk-throttle
implements custom per-cpu stats. This patchset make blkcg core
support both by default.
* cfq-iosched and blk-throttle keep track of the same stats multiple
times. Unify them.
Jens, as we're in the middle of the 4.2 merge window, I'll ping /
repost this patchset along with other pending patchsets once -rc1
drops.
This patchset contains the following six patches.
0001-cgroup-make-cftype-private-a-unsigned-long.patch
0002-blkcg-add-blkg_-rw-stat-aux_cnt-and-replace-cfq_grou.patch
0003-blkcg-make-blkcg_-rw-stat-per-cpu.patch
0004-blkcg-make-blkg_-rw-stat_recursive_sum-to-be-able-to.patch
0005-blkcg-move-io_service_bytes-and-io_serviced-stats-in.patch
0006-blkcg-remove-cfqg_stats-sectors.patch
This patchset is also available in the following git branch.
git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git review-blkcg-stats-cleanup
and is on top of
[1] block/for-4.2/writeback
[2] [PATCHSET block/for-4.2/writeback] block, cgroup: make cfq charge async IOs to the appropriate blkcgs
[3] [PATCHSET block/for-4.2/writeback] blkcg: blkcg_policy methods cleanup
diffstat follows. Thanks.
block/blk-cgroup.c | 175 ++++++++++++++++++++++++++++++++------
block/blk-core.c | 4
block/blk-throttle.c | 115 +------------------------
block/cfq-iosched.c | 204 +++++++++++++++++++++++----------------------
include/linux/blk-cgroup.h | 181 ++++++++++++++++++++++++++-------------
include/linux/cgroup.h | 2
6 files changed, 385 insertions(+), 296 deletions(-)
--
tejun
[1] 5857cd637bc0 ("bdi: fix wrong error return value in cgwb_create()").
[2] http://lkml.kernel.org/g/1433753973-23684-1-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
[3] http://lkml.kernel.org/g/1435113853-12053-1-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org
WARNING: multiple messages have this Message-ID (diff)
From: Tejun Heo <tj@kernel.org>
To: axboe@kernel.dk
Cc: linux-kernel@vger.kernel.org, cgroups@vger.kernel.org,
vgoyal@redhat.com, avanzini.arianna@gmail.com,
kernel-team@fb.com
Subject: [PATCHSET block/for-4.2/writeback] blkcg: blkcg stats cleanup
Date: Thu, 25 Jun 2015 17:38:51 -0400 [thread overview]
Message-ID: <1435268337-1738-1-git-send-email-tj@kernel.org> (raw)
Hello,
blkcg's stats have always been somwhat of a mess. This patchset tries
to improve the situation a bit.
* cfq-iosched implements custom recursive stats and blk-throttle
implements custom per-cpu stats. This patchset make blkcg core
support both by default.
* cfq-iosched and blk-throttle keep track of the same stats multiple
times. Unify them.
Jens, as we're in the middle of the 4.2 merge window, I'll ping /
repost this patchset along with other pending patchsets once -rc1
drops.
This patchset contains the following six patches.
0001-cgroup-make-cftype-private-a-unsigned-long.patch
0002-blkcg-add-blkg_-rw-stat-aux_cnt-and-replace-cfq_grou.patch
0003-blkcg-make-blkcg_-rw-stat-per-cpu.patch
0004-blkcg-make-blkg_-rw-stat_recursive_sum-to-be-able-to.patch
0005-blkcg-move-io_service_bytes-and-io_serviced-stats-in.patch
0006-blkcg-remove-cfqg_stats-sectors.patch
This patchset is also available in the following git branch.
git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git review-blkcg-stats-cleanup
and is on top of
[1] block/for-4.2/writeback
[2] [PATCHSET block/for-4.2/writeback] block, cgroup: make cfq charge async IOs to the appropriate blkcgs
[3] [PATCHSET block/for-4.2/writeback] blkcg: blkcg_policy methods cleanup
diffstat follows. Thanks.
block/blk-cgroup.c | 175 ++++++++++++++++++++++++++++++++------
block/blk-core.c | 4
block/blk-throttle.c | 115 +------------------------
block/cfq-iosched.c | 204 +++++++++++++++++++++++----------------------
include/linux/blk-cgroup.h | 181 ++++++++++++++++++++++++++-------------
include/linux/cgroup.h | 2
6 files changed, 385 insertions(+), 296 deletions(-)
--
tejun
[1] 5857cd637bc0 ("bdi: fix wrong error return value in cgwb_create()").
[2] http://lkml.kernel.org/g/1433753973-23684-1-git-send-email-tj@kernel.org
[3] http://lkml.kernel.org/g/1435113853-12053-1-git-send-email-tj@kernel.org
next reply other threads:[~2015-06-25 21:38 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-25 21:38 Tejun Heo [this message]
2015-06-25 21:38 ` [PATCHSET block/for-4.2/writeback] blkcg: blkcg stats cleanup Tejun Heo
[not found] ` <1435268337-1738-1-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2015-06-25 21:38 ` [PATCH 1/6] cgroup: make cftype->private a unsigned long Tejun Heo
2015-06-25 21:38 ` Tejun Heo
[not found] ` <1435268337-1738-2-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2015-06-30 6:50 ` Zefan Li
2015-06-30 6:50 ` Zefan Li
2015-06-25 21:38 ` [PATCH 2/6] blkcg: add blkg_[rw]stat->aux_cnt and replace cfq_group->dead_stats with it Tejun Heo
2015-06-25 21:38 ` Tejun Heo
[not found] ` <1435268337-1738-3-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2015-06-26 13:27 ` Vivek Goyal
2015-06-26 13:27 ` Vivek Goyal
[not found] ` <20150626132702.GA14803-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-06-26 13:35 ` Tejun Heo
2015-06-26 13:35 ` Tejun Heo
[not found] ` <20150626133540.GA15805-qYNAdHglDFBN0TnZuCh8vA@public.gmane.org>
2015-06-26 13:45 ` Vivek Goyal
2015-06-26 13:45 ` Vivek Goyal
[not found] ` <20150626134525.GB14803-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-06-26 13:55 ` Tejun Heo
2015-06-26 13:55 ` Tejun Heo
2015-06-25 21:38 ` [PATCH 3/6] blkcg: make blkcg_[rw]stat per-cpu Tejun Heo
2015-06-25 21:38 ` Tejun Heo
2015-06-25 21:38 ` [PATCH 6/6] blkcg: remove cfqg_stats->sectors Tejun Heo
2015-06-25 21:38 ` Tejun Heo
2015-06-25 21:38 ` [PATCH 4/6] blkcg: make blkg_[rw]stat_recursive_sum() to be able to index into blkcg_gq Tejun Heo
2015-06-25 21:38 ` [PATCH 5/6] blkcg: move io_service_bytes and io_serviced stats " Tejun Heo
[not found] ` <1435268337-1738-6-git-send-email-tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
2015-06-26 16:01 ` Vivek Goyal
2015-06-26 16:01 ` Vivek Goyal
[not found] ` <20150626160142.GA24554-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-06-26 16:09 ` Tejun Heo
2015-06-26 16:09 ` Tejun Heo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1435268337-1738-1-git-send-email-tj@kernel.org \
--to=tj-dgejt+ai2ygdnm+yrofe0a@public.gmane.org \
--cc=avanzini.arianna-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=axboe-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org \
--cc=cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=kernel-team-b10kYP2dOMg@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=vgoyal-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.