aboutsummaryrefslogtreecommitdiffstats
path: root/block/blk-cgroup.c
diff options
context:
space:
mode:
Diffstat (limited to 'block/blk-cgroup.c')
-rw-r--r--block/blk-cgroup.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c
index f3b44a65fc7a..cafcd7431189 100644
--- a/block/blk-cgroup.c
+++ b/block/blk-cgroup.c
@@ -737,6 +737,14 @@ struct cgroup_subsys blkio_subsys = {
737 .subsys_id = blkio_subsys_id, 737 .subsys_id = blkio_subsys_id,
738 .base_cftypes = blkcg_files, 738 .base_cftypes = blkcg_files,
739 .module = THIS_MODULE, 739 .module = THIS_MODULE,
740
741 /*
742 * blkio subsystem is utterly broken in terms of hierarchy support.
743 * It treats all cgroups equally regardless of where they're
744 * located in the hierarchy - all cgroups are treated as if they're
745 * right below the root. Fix it and remove the following.
746 */
747 .broken_hierarchy = true,
740}; 748};
741EXPORT_SYMBOL_GPL(blkio_subsys); 749EXPORT_SYMBOL_GPL(blkio_subsys);
742 750