diff options
author | Vivek Goyal <vgoyal@redhat.com> | 2009-12-03 12:59:52 -0500 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2009-12-03 13:28:53 -0500 |
commit | f8d461d692c341add957fb973fb5ee1f62039dc7 (patch) | |
tree | 42c6cf987aa4d38b271a60d2b62e92c6c748cd69 /block/blk-cgroup.c | |
parent | 24610333d578478d354144ab4709a203684afc5f (diff) |
blkio: Propagate cgroup weight updation to cfq groups
o Propagate blkio cgroup weight updation to associated cfq groups.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'block/blk-cgroup.c')
-rw-r--r-- | block/blk-cgroup.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index 4ef78d35cbd2..179ddfaebc5c 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include "blk-cgroup.h" | 16 | #include "blk-cgroup.h" |
17 | 17 | ||
18 | extern void cfq_unlink_blkio_group(void *, struct blkio_group *); | 18 | extern void cfq_unlink_blkio_group(void *, struct blkio_group *); |
19 | extern void cfq_update_blkio_group_weight(struct blkio_group *, unsigned int); | ||
19 | 20 | ||
20 | struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT }; | 21 | struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT }; |
21 | 22 | ||
@@ -116,12 +117,18 @@ static int | |||
116 | blkiocg_weight_write(struct cgroup *cgroup, struct cftype *cftype, u64 val) | 117 | blkiocg_weight_write(struct cgroup *cgroup, struct cftype *cftype, u64 val) |
117 | { | 118 | { |
118 | struct blkio_cgroup *blkcg; | 119 | struct blkio_cgroup *blkcg; |
120 | struct blkio_group *blkg; | ||
121 | struct hlist_node *n; | ||
119 | 122 | ||
120 | if (val < BLKIO_WEIGHT_MIN || val > BLKIO_WEIGHT_MAX) | 123 | if (val < BLKIO_WEIGHT_MIN || val > BLKIO_WEIGHT_MAX) |
121 | return -EINVAL; | 124 | return -EINVAL; |
122 | 125 | ||
123 | blkcg = cgroup_to_blkio_cgroup(cgroup); | 126 | blkcg = cgroup_to_blkio_cgroup(cgroup); |
127 | spin_lock_irq(&blkcg->lock); | ||
124 | blkcg->weight = (unsigned int)val; | 128 | blkcg->weight = (unsigned int)val; |
129 | hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) | ||
130 | cfq_update_blkio_group_weight(blkg, blkcg->weight); | ||
131 | spin_unlock_irq(&blkcg->lock); | ||
125 | return 0; | 132 | return 0; |
126 | } | 133 | } |
127 | 134 | ||