aboutsummaryrefslogtreecommitdiffstats
path: root/mm/backing-dev.c
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2015-08-18 17:55:29 -0400
committerJens Axboe <axboe@fb.com>2015-08-18 18:49:18 -0400
commitc165b3e3c7bb68c2ed55a5ac2623f030d01d9567 (patch)
treef00e66da0185811f050ada324a6c54e5a2ed536e /mm/backing-dev.c
parent20386ce0143899ccb5bcbda714436a82d3029f33 (diff)
blkcg: rename subsystem name from blkio to io
blkio interface has become messy over time and is currently the largest. In addition to the inconsistent naming scheme, it has multiple stat files which report more or less the same thing, a number of debug stat files which expose internal details which shouldn't have been part of the public interface in the first place, recursive and non-recursive stats and leaf and non-leaf knobs. Both recursive vs. non-recursive and leaf vs. non-leaf distinctions don't make any sense on the unified hierarchy as only leaf cgroups can contain processes. cgroups is going through a major interface revision with the unified hierarchy involving significant fundamental usage changes and given that a significant portion of the interface doesn't make sense anymore, it's a good time to reorganize the interface. As the first step, this patch renames the external visible subsystem name from "blkio" to "io". This is more concise, matches the other two major subsystem names, "cpu" and "memory", and better suited as blkcg will be involved in anything writeback related too whether an actual block device is involved or not. As the subsystem legacy_name is set to "blkio", the only userland visible change outside the unified hierarchy is that blkcg is reported as "io" instead of "blkio" in the subsystem initialized message during boot. On the unified hierarchy, blkcg now appears as "io". Signed-off-by: Tejun Heo <tj@kernel.org> Cc: Li Zefan <lizefan@huawei.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: cgroups@vger.kernel.org Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'mm/backing-dev.c')
-rw-r--r--mm/backing-dev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/backing-dev.c b/mm/backing-dev.c
index dac5bf59309d..d0ee90e72867 100644
--- a/mm/backing-dev.c
+++ b/mm/backing-dev.c
@@ -523,7 +523,7 @@ static int cgwb_create(struct backing_dev_info *bdi,
523 int ret = 0; 523 int ret = 0;
524 524
525 memcg = mem_cgroup_from_css(memcg_css); 525 memcg = mem_cgroup_from_css(memcg_css);
526 blkcg_css = cgroup_get_e_css(memcg_css->cgroup, &blkio_cgrp_subsys); 526 blkcg_css = cgroup_get_e_css(memcg_css->cgroup, &io_cgrp_subsys);
527 blkcg = css_to_blkcg(blkcg_css); 527 blkcg = css_to_blkcg(blkcg_css);
528 memcg_cgwb_list = mem_cgroup_cgwb_list(memcg); 528 memcg_cgwb_list = mem_cgroup_cgwb_list(memcg);
529 blkcg_cgwb_list = &blkcg->cgwb_list; 529 blkcg_cgwb_list = &blkcg->cgwb_list;
@@ -645,7 +645,7 @@ struct bdi_writeback *wb_get_create(struct backing_dev_info *bdi,
645 645
646 /* see whether the blkcg association has changed */ 646 /* see whether the blkcg association has changed */
647 blkcg_css = cgroup_get_e_css(memcg_css->cgroup, 647 blkcg_css = cgroup_get_e_css(memcg_css->cgroup,
648 &blkio_cgrp_subsys); 648 &io_cgrp_subsys);
649 if (unlikely(wb->blkcg_css != blkcg_css || 649 if (unlikely(wb->blkcg_css != blkcg_css ||
650 !wb_tryget(wb))) 650 !wb_tryget(wb)))
651 wb = NULL; 651 wb = NULL;