blob: 77ee3c1ec1a7abc08f1fbf421f9b78bcb602892b [file] [log] [blame]
Vivek Goyal31e4c282009-12-03 12:59:42 -05001/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
12 */
13#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050014#include <linux/seq_file.h>
15#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050016#include <linux/module.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110017#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070018#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Vivek Goyal31e4c282009-12-03 12:59:42 -050020#include "blk-cgroup.h"
Gui Jianfeng34d0f172010-04-13 16:05:49 +080021#include <linux/genhd.h>
Vivek Goyal3e252062009-12-04 10:36:42 -050022
Divyesh Shah84c124d2010-04-09 08:31:19 +020023#define MAX_KEY_LEN 100
24
Vivek Goyal3e252062009-12-04 10:36:42 -050025static DEFINE_SPINLOCK(blkio_list_lock);
26static LIST_HEAD(blkio_list);
Vivek Goyalb1c35762009-12-03 12:59:47 -050027
Vivek Goyal31e4c282009-12-03 12:59:42 -050028struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT };
Vivek Goyal9d6a9862009-12-04 10:36:41 -050029EXPORT_SYMBOL_GPL(blkio_root_cgroup);
30
Ben Blum67523c42010-03-10 15:22:11 -080031static struct cgroup_subsys_state *blkiocg_create(struct cgroup_subsys *,
32 struct cgroup *);
33static int blkiocg_can_attach(struct cgroup_subsys *, struct cgroup *,
34 struct task_struct *, bool);
35static void blkiocg_attach(struct cgroup_subsys *, struct cgroup *,
36 struct cgroup *, struct task_struct *, bool);
37static void blkiocg_destroy(struct cgroup_subsys *, struct cgroup *);
38static int blkiocg_populate(struct cgroup_subsys *, struct cgroup *);
39
Vivek Goyal062a6442010-09-15 17:06:33 -040040/* for encoding cft->private value on file */
41#define BLKIOFILE_PRIVATE(x, val) (((x) << 16) | (val))
42/* What policy owns the file, proportional or throttle */
43#define BLKIOFILE_POLICY(val) (((val) >> 16) & 0xffff)
44#define BLKIOFILE_ATTR(val) ((val) & 0xffff)
45
Ben Blum67523c42010-03-10 15:22:11 -080046struct cgroup_subsys blkio_subsys = {
47 .name = "blkio",
48 .create = blkiocg_create,
49 .can_attach = blkiocg_can_attach,
50 .attach = blkiocg_attach,
51 .destroy = blkiocg_destroy,
52 .populate = blkiocg_populate,
53#ifdef CONFIG_BLK_CGROUP
54 /* note: blkio_subsys_id is otherwise defined in blk-cgroup.h */
55 .subsys_id = blkio_subsys_id,
56#endif
57 .use_id = 1,
58 .module = THIS_MODULE,
59};
60EXPORT_SYMBOL_GPL(blkio_subsys);
61
Gui Jianfeng34d0f172010-04-13 16:05:49 +080062static inline void blkio_policy_insert_node(struct blkio_cgroup *blkcg,
63 struct blkio_policy_node *pn)
64{
65 list_add(&pn->node, &blkcg->policy_list);
66}
67
Vivek Goyal062a6442010-09-15 17:06:33 -040068static inline bool cftype_blkg_same_policy(struct cftype *cft,
69 struct blkio_group *blkg)
70{
71 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
72
73 if (blkg->plid == plid)
74 return 1;
75
76 return 0;
77}
78
79/* Determines if policy node matches cgroup file being accessed */
80static inline bool pn_matches_cftype(struct cftype *cft,
81 struct blkio_policy_node *pn)
82{
83 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
84 int fileid = BLKIOFILE_ATTR(cft->private);
85
86 return (plid == pn->plid && fileid == pn->fileid);
87}
88
Gui Jianfeng34d0f172010-04-13 16:05:49 +080089/* Must be called with blkcg->lock held */
90static inline void blkio_policy_delete_node(struct blkio_policy_node *pn)
91{
92 list_del(&pn->node);
93}
94
95/* Must be called with blkcg->lock held */
96static struct blkio_policy_node *
Vivek Goyal062a6442010-09-15 17:06:33 -040097blkio_policy_search_node(const struct blkio_cgroup *blkcg, dev_t dev,
98 enum blkio_policy_id plid, int fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +080099{
100 struct blkio_policy_node *pn;
101
102 list_for_each_entry(pn, &blkcg->policy_list, node) {
Vivek Goyal062a6442010-09-15 17:06:33 -0400103 if (pn->dev == dev && pn->plid == plid && pn->fileid == fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800104 return pn;
105 }
106
107 return NULL;
108}
109
Vivek Goyal31e4c282009-12-03 12:59:42 -0500110struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup)
111{
112 return container_of(cgroup_subsys_state(cgroup, blkio_subsys_id),
113 struct blkio_cgroup, css);
114}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500115EXPORT_SYMBOL_GPL(cgroup_to_blkio_cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500116
Vivek Goyal062a6442010-09-15 17:06:33 -0400117static inline void
118blkio_update_group_weight(struct blkio_group *blkg, unsigned int weight)
119{
120 struct blkio_policy_type *blkiop;
121
122 list_for_each_entry(blkiop, &blkio_list, list) {
123 /* If this policy does not own the blkg, do not send updates */
124 if (blkiop->plid != blkg->plid)
125 continue;
126 if (blkiop->ops.blkio_update_group_weight_fn)
Vivek Goyalfe071432010-10-01 14:49:49 +0200127 blkiop->ops.blkio_update_group_weight_fn(blkg->key,
128 blkg, weight);
Vivek Goyal062a6442010-09-15 17:06:33 -0400129 }
130}
131
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400132static inline void blkio_update_group_bps(struct blkio_group *blkg, u64 bps,
133 int fileid)
134{
135 struct blkio_policy_type *blkiop;
136
137 list_for_each_entry(blkiop, &blkio_list, list) {
138
139 /* If this policy does not own the blkg, do not send updates */
140 if (blkiop->plid != blkg->plid)
141 continue;
142
143 if (fileid == BLKIO_THROTL_read_bps_device
144 && blkiop->ops.blkio_update_group_read_bps_fn)
Vivek Goyalfe071432010-10-01 14:49:49 +0200145 blkiop->ops.blkio_update_group_read_bps_fn(blkg->key,
146 blkg, bps);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400147
148 if (fileid == BLKIO_THROTL_write_bps_device
149 && blkiop->ops.blkio_update_group_write_bps_fn)
Vivek Goyalfe071432010-10-01 14:49:49 +0200150 blkiop->ops.blkio_update_group_write_bps_fn(blkg->key,
151 blkg, bps);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400152 }
153}
154
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400155static inline void blkio_update_group_iops(struct blkio_group *blkg,
156 unsigned int iops, int fileid)
157{
158 struct blkio_policy_type *blkiop;
159
160 list_for_each_entry(blkiop, &blkio_list, list) {
161
162 /* If this policy does not own the blkg, do not send updates */
163 if (blkiop->plid != blkg->plid)
164 continue;
165
166 if (fileid == BLKIO_THROTL_read_iops_device
167 && blkiop->ops.blkio_update_group_read_iops_fn)
Vivek Goyalfe071432010-10-01 14:49:49 +0200168 blkiop->ops.blkio_update_group_read_iops_fn(blkg->key,
169 blkg, iops);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400170
171 if (fileid == BLKIO_THROTL_write_iops_device
172 && blkiop->ops.blkio_update_group_write_iops_fn)
Vivek Goyalfe071432010-10-01 14:49:49 +0200173 blkiop->ops.blkio_update_group_write_iops_fn(blkg->key,
174 blkg,iops);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400175 }
176}
177
Divyesh Shah91952912010-04-01 15:01:41 -0700178/*
179 * Add to the appropriate stat variable depending on the request type.
180 * This should be called with the blkg->stats_lock held.
181 */
Divyesh Shah84c124d2010-04-09 08:31:19 +0200182static void blkio_add_stat(uint64_t *stat, uint64_t add, bool direction,
183 bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700184{
Divyesh Shah84c124d2010-04-09 08:31:19 +0200185 if (direction)
186 stat[BLKIO_STAT_WRITE] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700187 else
Divyesh Shah84c124d2010-04-09 08:31:19 +0200188 stat[BLKIO_STAT_READ] += add;
189 if (sync)
190 stat[BLKIO_STAT_SYNC] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700191 else
Divyesh Shah84c124d2010-04-09 08:31:19 +0200192 stat[BLKIO_STAT_ASYNC] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700193}
194
Divyesh Shahcdc11842010-04-08 21:15:10 -0700195/*
196 * Decrements the appropriate stat variable if non-zero depending on the
197 * request type. Panics on value being zero.
198 * This should be called with the blkg->stats_lock held.
199 */
200static void blkio_check_and_dec_stat(uint64_t *stat, bool direction, bool sync)
201{
202 if (direction) {
203 BUG_ON(stat[BLKIO_STAT_WRITE] == 0);
204 stat[BLKIO_STAT_WRITE]--;
205 } else {
206 BUG_ON(stat[BLKIO_STAT_READ] == 0);
207 stat[BLKIO_STAT_READ]--;
208 }
209 if (sync) {
210 BUG_ON(stat[BLKIO_STAT_SYNC] == 0);
211 stat[BLKIO_STAT_SYNC]--;
212 } else {
213 BUG_ON(stat[BLKIO_STAT_ASYNC] == 0);
214 stat[BLKIO_STAT_ASYNC]--;
215 }
216}
217
218#ifdef CONFIG_DEBUG_BLK_CGROUP
Divyesh Shah812df482010-04-08 21:15:35 -0700219/* This should be called with the blkg->stats_lock held. */
220static void blkio_set_start_group_wait_time(struct blkio_group *blkg,
221 struct blkio_group *curr_blkg)
222{
223 if (blkio_blkg_waiting(&blkg->stats))
224 return;
225 if (blkg == curr_blkg)
226 return;
227 blkg->stats.start_group_wait_time = sched_clock();
228 blkio_mark_blkg_waiting(&blkg->stats);
229}
230
231/* This should be called with the blkg->stats_lock held. */
232static void blkio_update_group_wait_time(struct blkio_group_stats *stats)
233{
234 unsigned long long now;
235
236 if (!blkio_blkg_waiting(stats))
237 return;
238
239 now = sched_clock();
240 if (time_after64(now, stats->start_group_wait_time))
241 stats->group_wait_time += now - stats->start_group_wait_time;
242 blkio_clear_blkg_waiting(stats);
243}
244
245/* This should be called with the blkg->stats_lock held. */
246static void blkio_end_empty_time(struct blkio_group_stats *stats)
247{
248 unsigned long long now;
249
250 if (!blkio_blkg_empty(stats))
251 return;
252
253 now = sched_clock();
254 if (time_after64(now, stats->start_empty_time))
255 stats->empty_time += now - stats->start_empty_time;
256 blkio_clear_blkg_empty(stats);
257}
258
259void blkiocg_update_set_idle_time_stats(struct blkio_group *blkg)
260{
261 unsigned long flags;
262
263 spin_lock_irqsave(&blkg->stats_lock, flags);
264 BUG_ON(blkio_blkg_idling(&blkg->stats));
265 blkg->stats.start_idle_time = sched_clock();
266 blkio_mark_blkg_idling(&blkg->stats);
267 spin_unlock_irqrestore(&blkg->stats_lock, flags);
268}
269EXPORT_SYMBOL_GPL(blkiocg_update_set_idle_time_stats);
270
271void blkiocg_update_idle_time_stats(struct blkio_group *blkg)
272{
273 unsigned long flags;
274 unsigned long long now;
275 struct blkio_group_stats *stats;
276
277 spin_lock_irqsave(&blkg->stats_lock, flags);
278 stats = &blkg->stats;
279 if (blkio_blkg_idling(stats)) {
280 now = sched_clock();
281 if (time_after64(now, stats->start_idle_time))
282 stats->idle_time += now - stats->start_idle_time;
283 blkio_clear_blkg_idling(stats);
284 }
285 spin_unlock_irqrestore(&blkg->stats_lock, flags);
286}
287EXPORT_SYMBOL_GPL(blkiocg_update_idle_time_stats);
288
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200289void blkiocg_update_avg_queue_size_stats(struct blkio_group *blkg)
Divyesh Shahcdc11842010-04-08 21:15:10 -0700290{
291 unsigned long flags;
292 struct blkio_group_stats *stats;
293
294 spin_lock_irqsave(&blkg->stats_lock, flags);
295 stats = &blkg->stats;
296 stats->avg_queue_size_sum +=
297 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_READ] +
298 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_WRITE];
299 stats->avg_queue_size_samples++;
Divyesh Shah812df482010-04-08 21:15:35 -0700300 blkio_update_group_wait_time(stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700301 spin_unlock_irqrestore(&blkg->stats_lock, flags);
302}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200303EXPORT_SYMBOL_GPL(blkiocg_update_avg_queue_size_stats);
304
Vivek Goyale5ff0822010-04-26 19:25:11 +0200305void blkiocg_set_start_empty_time(struct blkio_group *blkg)
Divyesh Shah28baf442010-04-14 11:22:38 +0200306{
307 unsigned long flags;
308 struct blkio_group_stats *stats;
309
310 spin_lock_irqsave(&blkg->stats_lock, flags);
311 stats = &blkg->stats;
312
313 if (stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_READ] ||
314 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_WRITE]) {
315 spin_unlock_irqrestore(&blkg->stats_lock, flags);
316 return;
317 }
318
319 /*
Vivek Goyale5ff0822010-04-26 19:25:11 +0200320 * group is already marked empty. This can happen if cfqq got new
321 * request in parent group and moved to this group while being added
322 * to service tree. Just ignore the event and move on.
Divyesh Shah28baf442010-04-14 11:22:38 +0200323 */
Vivek Goyale5ff0822010-04-26 19:25:11 +0200324 if(blkio_blkg_empty(stats)) {
325 spin_unlock_irqrestore(&blkg->stats_lock, flags);
326 return;
327 }
328
Divyesh Shah28baf442010-04-14 11:22:38 +0200329 stats->start_empty_time = sched_clock();
330 blkio_mark_blkg_empty(stats);
331 spin_unlock_irqrestore(&blkg->stats_lock, flags);
332}
333EXPORT_SYMBOL_GPL(blkiocg_set_start_empty_time);
334
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200335void blkiocg_update_dequeue_stats(struct blkio_group *blkg,
336 unsigned long dequeue)
337{
338 blkg->stats.dequeue += dequeue;
339}
340EXPORT_SYMBOL_GPL(blkiocg_update_dequeue_stats);
Divyesh Shah812df482010-04-08 21:15:35 -0700341#else
342static inline void blkio_set_start_group_wait_time(struct blkio_group *blkg,
343 struct blkio_group *curr_blkg) {}
344static inline void blkio_end_empty_time(struct blkio_group_stats *stats) {}
Divyesh Shahcdc11842010-04-08 21:15:10 -0700345#endif
346
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200347void blkiocg_update_io_add_stats(struct blkio_group *blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -0700348 struct blkio_group *curr_blkg, bool direction,
349 bool sync)
350{
351 unsigned long flags;
352
353 spin_lock_irqsave(&blkg->stats_lock, flags);
354 blkio_add_stat(blkg->stats.stat_arr[BLKIO_STAT_QUEUED], 1, direction,
355 sync);
Divyesh Shah812df482010-04-08 21:15:35 -0700356 blkio_end_empty_time(&blkg->stats);
357 blkio_set_start_group_wait_time(blkg, curr_blkg);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700358 spin_unlock_irqrestore(&blkg->stats_lock, flags);
359}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200360EXPORT_SYMBOL_GPL(blkiocg_update_io_add_stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700361
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200362void blkiocg_update_io_remove_stats(struct blkio_group *blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -0700363 bool direction, bool sync)
364{
365 unsigned long flags;
366
367 spin_lock_irqsave(&blkg->stats_lock, flags);
368 blkio_check_and_dec_stat(blkg->stats.stat_arr[BLKIO_STAT_QUEUED],
369 direction, sync);
370 spin_unlock_irqrestore(&blkg->stats_lock, flags);
371}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200372EXPORT_SYMBOL_GPL(blkiocg_update_io_remove_stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700373
Justin TerAvest167400d2011-03-12 16:54:00 +0100374void blkiocg_update_timeslice_used(struct blkio_group *blkg, unsigned long time,
375 unsigned long unaccounted_time)
Vivek Goyal22084192009-12-03 12:59:49 -0500376{
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700377 unsigned long flags;
378
379 spin_lock_irqsave(&blkg->stats_lock, flags);
380 blkg->stats.time += time;
Justin TerAvest167400d2011-03-12 16:54:00 +0100381 blkg->stats.unaccounted_time += unaccounted_time;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700382 spin_unlock_irqrestore(&blkg->stats_lock, flags);
Vivek Goyal22084192009-12-03 12:59:49 -0500383}
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700384EXPORT_SYMBOL_GPL(blkiocg_update_timeslice_used);
Vivek Goyal22084192009-12-03 12:59:49 -0500385
Divyesh Shah84c124d2010-04-09 08:31:19 +0200386void blkiocg_update_dispatch_stats(struct blkio_group *blkg,
387 uint64_t bytes, bool direction, bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700388{
389 struct blkio_group_stats *stats;
390 unsigned long flags;
391
392 spin_lock_irqsave(&blkg->stats_lock, flags);
393 stats = &blkg->stats;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200394 stats->sectors += bytes >> 9;
395 blkio_add_stat(stats->stat_arr[BLKIO_STAT_SERVICED], 1, direction,
396 sync);
397 blkio_add_stat(stats->stat_arr[BLKIO_STAT_SERVICE_BYTES], bytes,
398 direction, sync);
Divyesh Shah91952912010-04-01 15:01:41 -0700399 spin_unlock_irqrestore(&blkg->stats_lock, flags);
400}
Divyesh Shah84c124d2010-04-09 08:31:19 +0200401EXPORT_SYMBOL_GPL(blkiocg_update_dispatch_stats);
Divyesh Shah91952912010-04-01 15:01:41 -0700402
Divyesh Shah84c124d2010-04-09 08:31:19 +0200403void blkiocg_update_completion_stats(struct blkio_group *blkg,
404 uint64_t start_time, uint64_t io_start_time, bool direction, bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700405{
406 struct blkio_group_stats *stats;
407 unsigned long flags;
408 unsigned long long now = sched_clock();
409
410 spin_lock_irqsave(&blkg->stats_lock, flags);
411 stats = &blkg->stats;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200412 if (time_after64(now, io_start_time))
413 blkio_add_stat(stats->stat_arr[BLKIO_STAT_SERVICE_TIME],
414 now - io_start_time, direction, sync);
415 if (time_after64(io_start_time, start_time))
416 blkio_add_stat(stats->stat_arr[BLKIO_STAT_WAIT_TIME],
417 io_start_time - start_time, direction, sync);
Divyesh Shah91952912010-04-01 15:01:41 -0700418 spin_unlock_irqrestore(&blkg->stats_lock, flags);
419}
Divyesh Shah84c124d2010-04-09 08:31:19 +0200420EXPORT_SYMBOL_GPL(blkiocg_update_completion_stats);
Divyesh Shah91952912010-04-01 15:01:41 -0700421
Divyesh Shah812d4022010-04-08 21:14:23 -0700422void blkiocg_update_io_merged_stats(struct blkio_group *blkg, bool direction,
423 bool sync)
424{
425 unsigned long flags;
426
427 spin_lock_irqsave(&blkg->stats_lock, flags);
428 blkio_add_stat(blkg->stats.stat_arr[BLKIO_STAT_MERGED], 1, direction,
429 sync);
430 spin_unlock_irqrestore(&blkg->stats_lock, flags);
431}
432EXPORT_SYMBOL_GPL(blkiocg_update_io_merged_stats);
433
Vivek Goyal31e4c282009-12-03 12:59:42 -0500434void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
Vivek Goyal062a6442010-09-15 17:06:33 -0400435 struct blkio_group *blkg, void *key, dev_t dev,
436 enum blkio_policy_id plid)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500437{
438 unsigned long flags;
439
440 spin_lock_irqsave(&blkcg->lock, flags);
Divyesh Shah8d2a91f2010-04-16 08:10:51 +0200441 spin_lock_init(&blkg->stats_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500442 rcu_assign_pointer(blkg->key, key);
Vivek Goyalb1c35762009-12-03 12:59:47 -0500443 blkg->blkcg_id = css_id(&blkcg->css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500444 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
Vivek Goyal062a6442010-09-15 17:06:33 -0400445 blkg->plid = plid;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500446 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyal2868ef72009-12-03 12:59:48 -0500447 /* Need to take css reference ? */
448 cgroup_path(blkcg->css.cgroup, blkg->path, sizeof(blkg->path));
Vivek Goyal22084192009-12-03 12:59:49 -0500449 blkg->dev = dev;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500450}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500451EXPORT_SYMBOL_GPL(blkiocg_add_blkio_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500452
Vivek Goyalb1c35762009-12-03 12:59:47 -0500453static void __blkiocg_del_blkio_group(struct blkio_group *blkg)
454{
455 hlist_del_init_rcu(&blkg->blkcg_node);
456 blkg->blkcg_id = 0;
457}
458
459/*
460 * returns 0 if blkio_group was still on cgroup list. Otherwise returns 1
461 * indicating that blk_group was unhashed by the time we got to it.
462 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500463int blkiocg_del_blkio_group(struct blkio_group *blkg)
464{
Vivek Goyalb1c35762009-12-03 12:59:47 -0500465 struct blkio_cgroup *blkcg;
466 unsigned long flags;
467 struct cgroup_subsys_state *css;
468 int ret = 1;
469
470 rcu_read_lock();
471 css = css_lookup(&blkio_subsys, blkg->blkcg_id);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200472 if (css) {
473 blkcg = container_of(css, struct blkio_cgroup, css);
474 spin_lock_irqsave(&blkcg->lock, flags);
475 if (!hlist_unhashed(&blkg->blkcg_node)) {
476 __blkiocg_del_blkio_group(blkg);
477 ret = 0;
478 }
479 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -0500480 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200481
Vivek Goyalb1c35762009-12-03 12:59:47 -0500482 rcu_read_unlock();
483 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500484}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500485EXPORT_SYMBOL_GPL(blkiocg_del_blkio_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500486
487/* called under rcu_read_lock(). */
488struct blkio_group *blkiocg_lookup_group(struct blkio_cgroup *blkcg, void *key)
489{
490 struct blkio_group *blkg;
491 struct hlist_node *n;
492 void *__key;
493
494 hlist_for_each_entry_rcu(blkg, n, &blkcg->blkg_list, blkcg_node) {
495 __key = blkg->key;
496 if (__key == key)
497 return blkg;
498 }
499
500 return NULL;
501}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500502EXPORT_SYMBOL_GPL(blkiocg_lookup_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500503
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700504static int
Divyesh Shah84c124d2010-04-09 08:31:19 +0200505blkiocg_reset_stats(struct cgroup *cgroup, struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700506{
507 struct blkio_cgroup *blkcg;
508 struct blkio_group *blkg;
Divyesh Shah812df482010-04-08 21:15:35 -0700509 struct blkio_group_stats *stats;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700510 struct hlist_node *n;
Divyesh Shahcdc11842010-04-08 21:15:10 -0700511 uint64_t queued[BLKIO_STAT_TOTAL];
512 int i;
Divyesh Shah812df482010-04-08 21:15:35 -0700513#ifdef CONFIG_DEBUG_BLK_CGROUP
514 bool idling, waiting, empty;
515 unsigned long long now = sched_clock();
516#endif
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700517
518 blkcg = cgroup_to_blkio_cgroup(cgroup);
519 spin_lock_irq(&blkcg->lock);
520 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
521 spin_lock(&blkg->stats_lock);
Divyesh Shah812df482010-04-08 21:15:35 -0700522 stats = &blkg->stats;
523#ifdef CONFIG_DEBUG_BLK_CGROUP
524 idling = blkio_blkg_idling(stats);
525 waiting = blkio_blkg_waiting(stats);
526 empty = blkio_blkg_empty(stats);
527#endif
Divyesh Shahcdc11842010-04-08 21:15:10 -0700528 for (i = 0; i < BLKIO_STAT_TOTAL; i++)
Divyesh Shah812df482010-04-08 21:15:35 -0700529 queued[i] = stats->stat_arr[BLKIO_STAT_QUEUED][i];
530 memset(stats, 0, sizeof(struct blkio_group_stats));
Divyesh Shahcdc11842010-04-08 21:15:10 -0700531 for (i = 0; i < BLKIO_STAT_TOTAL; i++)
Divyesh Shah812df482010-04-08 21:15:35 -0700532 stats->stat_arr[BLKIO_STAT_QUEUED][i] = queued[i];
533#ifdef CONFIG_DEBUG_BLK_CGROUP
534 if (idling) {
535 blkio_mark_blkg_idling(stats);
536 stats->start_idle_time = now;
537 }
538 if (waiting) {
539 blkio_mark_blkg_waiting(stats);
540 stats->start_group_wait_time = now;
541 }
542 if (empty) {
543 blkio_mark_blkg_empty(stats);
544 stats->start_empty_time = now;
545 }
546#endif
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700547 spin_unlock(&blkg->stats_lock);
548 }
549 spin_unlock_irq(&blkcg->lock);
550 return 0;
551}
552
Divyesh Shah84c124d2010-04-09 08:31:19 +0200553static void blkio_get_key_name(enum stat_sub_type type, dev_t dev, char *str,
554 int chars_left, bool diskname_only)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700555{
Divyesh Shah84c124d2010-04-09 08:31:19 +0200556 snprintf(str, chars_left, "%d:%d", MAJOR(dev), MINOR(dev));
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700557 chars_left -= strlen(str);
558 if (chars_left <= 0) {
559 printk(KERN_WARNING
560 "Possibly incorrect cgroup stat display format");
561 return;
562 }
Divyesh Shah84c124d2010-04-09 08:31:19 +0200563 if (diskname_only)
564 return;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700565 switch (type) {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200566 case BLKIO_STAT_READ:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700567 strlcat(str, " Read", chars_left);
568 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200569 case BLKIO_STAT_WRITE:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700570 strlcat(str, " Write", chars_left);
571 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200572 case BLKIO_STAT_SYNC:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700573 strlcat(str, " Sync", chars_left);
574 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200575 case BLKIO_STAT_ASYNC:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700576 strlcat(str, " Async", chars_left);
577 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200578 case BLKIO_STAT_TOTAL:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700579 strlcat(str, " Total", chars_left);
580 break;
581 default:
582 strlcat(str, " Invalid", chars_left);
583 }
584}
585
Divyesh Shah84c124d2010-04-09 08:31:19 +0200586static uint64_t blkio_fill_stat(char *str, int chars_left, uint64_t val,
587 struct cgroup_map_cb *cb, dev_t dev)
588{
589 blkio_get_key_name(0, dev, str, chars_left, true);
590 cb->fill(cb, str, val);
591 return val;
592}
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700593
Divyesh Shah84c124d2010-04-09 08:31:19 +0200594/* This should be called with blkg->stats_lock held */
595static uint64_t blkio_get_stat(struct blkio_group *blkg,
596 struct cgroup_map_cb *cb, dev_t dev, enum stat_type type)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700597{
598 uint64_t disk_total;
599 char key_str[MAX_KEY_LEN];
Divyesh Shah84c124d2010-04-09 08:31:19 +0200600 enum stat_sub_type sub_type;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700601
Divyesh Shah84c124d2010-04-09 08:31:19 +0200602 if (type == BLKIO_STAT_TIME)
603 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
604 blkg->stats.time, cb, dev);
605 if (type == BLKIO_STAT_SECTORS)
606 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
607 blkg->stats.sectors, cb, dev);
Justin TerAvest167400d2011-03-12 16:54:00 +0100608 if (type == BLKIO_STAT_UNACCOUNTED_TIME)
609 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
610 blkg->stats.unaccounted_time, cb, dev);
Divyesh Shah84c124d2010-04-09 08:31:19 +0200611#ifdef CONFIG_DEBUG_BLK_CGROUP
Divyesh Shahcdc11842010-04-08 21:15:10 -0700612 if (type == BLKIO_STAT_AVG_QUEUE_SIZE) {
613 uint64_t sum = blkg->stats.avg_queue_size_sum;
614 uint64_t samples = blkg->stats.avg_queue_size_samples;
615 if (samples)
616 do_div(sum, samples);
617 else
618 sum = 0;
619 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1, sum, cb, dev);
620 }
Divyesh Shah812df482010-04-08 21:15:35 -0700621 if (type == BLKIO_STAT_GROUP_WAIT_TIME)
622 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
623 blkg->stats.group_wait_time, cb, dev);
624 if (type == BLKIO_STAT_IDLE_TIME)
625 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
626 blkg->stats.idle_time, cb, dev);
627 if (type == BLKIO_STAT_EMPTY_TIME)
628 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
629 blkg->stats.empty_time, cb, dev);
Divyesh Shah84c124d2010-04-09 08:31:19 +0200630 if (type == BLKIO_STAT_DEQUEUE)
631 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
632 blkg->stats.dequeue, cb, dev);
633#endif
634
635 for (sub_type = BLKIO_STAT_READ; sub_type < BLKIO_STAT_TOTAL;
636 sub_type++) {
637 blkio_get_key_name(sub_type, dev, key_str, MAX_KEY_LEN, false);
638 cb->fill(cb, key_str, blkg->stats.stat_arr[type][sub_type]);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700639 }
Divyesh Shah84c124d2010-04-09 08:31:19 +0200640 disk_total = blkg->stats.stat_arr[type][BLKIO_STAT_READ] +
641 blkg->stats.stat_arr[type][BLKIO_STAT_WRITE];
642 blkio_get_key_name(BLKIO_STAT_TOTAL, dev, key_str, MAX_KEY_LEN, false);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700643 cb->fill(cb, key_str, disk_total);
644 return disk_total;
645}
646
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800647static int blkio_check_dev_num(dev_t dev)
648{
649 int part = 0;
650 struct gendisk *disk;
651
652 disk = get_gendisk(dev, &part);
653 if (!disk || part)
654 return -ENODEV;
655
656 return 0;
657}
658
659static int blkio_policy_parse_and_set(char *buf,
Vivek Goyal062a6442010-09-15 17:06:33 -0400660 struct blkio_policy_node *newpn, enum blkio_policy_id plid, int fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800661{
662 char *s[4], *p, *major_s = NULL, *minor_s = NULL;
663 int ret;
664 unsigned long major, minor, temp;
665 int i = 0;
666 dev_t dev;
Vivek Goyal9355aed2010-10-01 21:16:41 +0200667 u64 bps, iops;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800668
669 memset(s, 0, sizeof(s));
670
671 while ((p = strsep(&buf, " ")) != NULL) {
672 if (!*p)
673 continue;
674
675 s[i++] = p;
676
677 /* Prevent from inputing too many things */
678 if (i == 3)
679 break;
680 }
681
682 if (i != 2)
683 return -EINVAL;
684
685 p = strsep(&s[0], ":");
686 if (p != NULL)
687 major_s = p;
688 else
689 return -EINVAL;
690
691 minor_s = s[0];
692 if (!minor_s)
693 return -EINVAL;
694
695 ret = strict_strtoul(major_s, 10, &major);
696 if (ret)
697 return -EINVAL;
698
699 ret = strict_strtoul(minor_s, 10, &minor);
700 if (ret)
701 return -EINVAL;
702
703 dev = MKDEV(major, minor);
704
705 ret = blkio_check_dev_num(dev);
706 if (ret)
707 return ret;
708
709 newpn->dev = dev;
710
711 if (s[1] == NULL)
712 return -EINVAL;
713
Vivek Goyal062a6442010-09-15 17:06:33 -0400714 switch (plid) {
715 case BLKIO_POLICY_PROP:
716 ret = strict_strtoul(s[1], 10, &temp);
717 if (ret || (temp < BLKIO_WEIGHT_MIN && temp > 0) ||
718 temp > BLKIO_WEIGHT_MAX)
719 return -EINVAL;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800720
Vivek Goyal062a6442010-09-15 17:06:33 -0400721 newpn->plid = plid;
722 newpn->fileid = fileid;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400723 newpn->val.weight = temp;
724 break;
725 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400726 switch(fileid) {
727 case BLKIO_THROTL_read_bps_device:
728 case BLKIO_THROTL_write_bps_device:
729 ret = strict_strtoull(s[1], 10, &bps);
730 if (ret)
731 return -EINVAL;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400732
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400733 newpn->plid = plid;
734 newpn->fileid = fileid;
735 newpn->val.bps = bps;
736 break;
737 case BLKIO_THROTL_read_iops_device:
738 case BLKIO_THROTL_write_iops_device:
Vivek Goyal9355aed2010-10-01 21:16:41 +0200739 ret = strict_strtoull(s[1], 10, &iops);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400740 if (ret)
741 return -EINVAL;
742
Vivek Goyal9355aed2010-10-01 21:16:41 +0200743 if (iops > THROTL_IOPS_MAX)
744 return -EINVAL;
745
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400746 newpn->plid = plid;
747 newpn->fileid = fileid;
Vivek Goyal9355aed2010-10-01 21:16:41 +0200748 newpn->val.iops = (unsigned int)iops;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400749 break;
750 }
Vivek Goyal062a6442010-09-15 17:06:33 -0400751 break;
752 default:
753 BUG();
754 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800755
756 return 0;
757}
758
759unsigned int blkcg_get_weight(struct blkio_cgroup *blkcg,
760 dev_t dev)
761{
762 struct blkio_policy_node *pn;
763
Vivek Goyal062a6442010-09-15 17:06:33 -0400764 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_PROP,
765 BLKIO_PROP_weight_device);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800766 if (pn)
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400767 return pn->val.weight;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800768 else
769 return blkcg->weight;
770}
771EXPORT_SYMBOL_GPL(blkcg_get_weight);
772
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400773uint64_t blkcg_get_read_bps(struct blkio_cgroup *blkcg, dev_t dev)
774{
775 struct blkio_policy_node *pn;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800776
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400777 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
778 BLKIO_THROTL_read_bps_device);
779 if (pn)
780 return pn->val.bps;
781 else
782 return -1;
783}
784
785uint64_t blkcg_get_write_bps(struct blkio_cgroup *blkcg, dev_t dev)
786{
787 struct blkio_policy_node *pn;
788 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
789 BLKIO_THROTL_write_bps_device);
790 if (pn)
791 return pn->val.bps;
792 else
793 return -1;
794}
795
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400796unsigned int blkcg_get_read_iops(struct blkio_cgroup *blkcg, dev_t dev)
797{
798 struct blkio_policy_node *pn;
799
800 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
801 BLKIO_THROTL_read_iops_device);
802 if (pn)
803 return pn->val.iops;
804 else
805 return -1;
806}
807
808unsigned int blkcg_get_write_iops(struct blkio_cgroup *blkcg, dev_t dev)
809{
810 struct blkio_policy_node *pn;
811 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
812 BLKIO_THROTL_write_iops_device);
813 if (pn)
814 return pn->val.iops;
815 else
816 return -1;
817}
818
Vivek Goyal062a6442010-09-15 17:06:33 -0400819/* Checks whether user asked for deleting a policy rule */
820static bool blkio_delete_rule_command(struct blkio_policy_node *pn)
821{
822 switch(pn->plid) {
823 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400824 if (pn->val.weight == 0)
825 return 1;
826 break;
827 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400828 switch(pn->fileid) {
829 case BLKIO_THROTL_read_bps_device:
830 case BLKIO_THROTL_write_bps_device:
831 if (pn->val.bps == 0)
832 return 1;
833 break;
834 case BLKIO_THROTL_read_iops_device:
835 case BLKIO_THROTL_write_iops_device:
836 if (pn->val.iops == 0)
837 return 1;
838 }
Vivek Goyal062a6442010-09-15 17:06:33 -0400839 break;
840 default:
841 BUG();
842 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800843
Vivek Goyal062a6442010-09-15 17:06:33 -0400844 return 0;
845}
846
847static void blkio_update_policy_rule(struct blkio_policy_node *oldpn,
848 struct blkio_policy_node *newpn)
849{
850 switch(oldpn->plid) {
851 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400852 oldpn->val.weight = newpn->val.weight;
853 break;
854 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400855 switch(newpn->fileid) {
856 case BLKIO_THROTL_read_bps_device:
857 case BLKIO_THROTL_write_bps_device:
858 oldpn->val.bps = newpn->val.bps;
859 break;
860 case BLKIO_THROTL_read_iops_device:
861 case BLKIO_THROTL_write_iops_device:
862 oldpn->val.iops = newpn->val.iops;
863 }
Vivek Goyal062a6442010-09-15 17:06:33 -0400864 break;
865 default:
866 BUG();
867 }
868}
869
870/*
871 * Some rules/values in blkg have changed. Propogate those to respective
872 * policies.
873 */
874static void blkio_update_blkg_policy(struct blkio_cgroup *blkcg,
875 struct blkio_group *blkg, struct blkio_policy_node *pn)
876{
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400877 unsigned int weight, iops;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400878 u64 bps;
Vivek Goyal062a6442010-09-15 17:06:33 -0400879
880 switch(pn->plid) {
881 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400882 weight = pn->val.weight ? pn->val.weight :
Vivek Goyal062a6442010-09-15 17:06:33 -0400883 blkcg->weight;
884 blkio_update_group_weight(blkg, weight);
885 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400886 case BLKIO_POLICY_THROTL:
887 switch(pn->fileid) {
888 case BLKIO_THROTL_read_bps_device:
889 case BLKIO_THROTL_write_bps_device:
890 bps = pn->val.bps ? pn->val.bps : (-1);
891 blkio_update_group_bps(blkg, bps, pn->fileid);
892 break;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400893 case BLKIO_THROTL_read_iops_device:
894 case BLKIO_THROTL_write_iops_device:
895 iops = pn->val.iops ? pn->val.iops : (-1);
896 blkio_update_group_iops(blkg, iops, pn->fileid);
897 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400898 }
899 break;
Vivek Goyal062a6442010-09-15 17:06:33 -0400900 default:
901 BUG();
902 }
903}
904
905/*
906 * A policy node rule has been updated. Propogate this update to all the
907 * block groups which might be affected by this update.
908 */
909static void blkio_update_policy_node_blkg(struct blkio_cgroup *blkcg,
910 struct blkio_policy_node *pn)
911{
912 struct blkio_group *blkg;
913 struct hlist_node *n;
914
915 spin_lock(&blkio_list_lock);
916 spin_lock_irq(&blkcg->lock);
917
918 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
919 if (pn->dev != blkg->dev || pn->plid != blkg->plid)
920 continue;
921 blkio_update_blkg_policy(blkcg, blkg, pn);
922 }
923
924 spin_unlock_irq(&blkcg->lock);
925 spin_unlock(&blkio_list_lock);
926}
927
928static int blkiocg_file_write(struct cgroup *cgrp, struct cftype *cft,
929 const char *buffer)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800930{
931 int ret = 0;
932 char *buf;
933 struct blkio_policy_node *newpn, *pn;
934 struct blkio_cgroup *blkcg;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800935 int keep_newpn = 0;
Vivek Goyal062a6442010-09-15 17:06:33 -0400936 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
937 int fileid = BLKIOFILE_ATTR(cft->private);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800938
939 buf = kstrdup(buffer, GFP_KERNEL);
940 if (!buf)
941 return -ENOMEM;
942
943 newpn = kzalloc(sizeof(*newpn), GFP_KERNEL);
944 if (!newpn) {
945 ret = -ENOMEM;
946 goto free_buf;
947 }
948
Vivek Goyal062a6442010-09-15 17:06:33 -0400949 ret = blkio_policy_parse_and_set(buf, newpn, plid, fileid);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800950 if (ret)
951 goto free_newpn;
952
953 blkcg = cgroup_to_blkio_cgroup(cgrp);
954
955 spin_lock_irq(&blkcg->lock);
956
Vivek Goyal062a6442010-09-15 17:06:33 -0400957 pn = blkio_policy_search_node(blkcg, newpn->dev, plid, fileid);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800958 if (!pn) {
Vivek Goyal062a6442010-09-15 17:06:33 -0400959 if (!blkio_delete_rule_command(newpn)) {
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800960 blkio_policy_insert_node(blkcg, newpn);
961 keep_newpn = 1;
962 }
963 spin_unlock_irq(&blkcg->lock);
964 goto update_io_group;
965 }
966
Vivek Goyal062a6442010-09-15 17:06:33 -0400967 if (blkio_delete_rule_command(newpn)) {
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800968 blkio_policy_delete_node(pn);
969 spin_unlock_irq(&blkcg->lock);
970 goto update_io_group;
971 }
972 spin_unlock_irq(&blkcg->lock);
973
Vivek Goyal062a6442010-09-15 17:06:33 -0400974 blkio_update_policy_rule(pn, newpn);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800975
976update_io_group:
Vivek Goyal062a6442010-09-15 17:06:33 -0400977 blkio_update_policy_node_blkg(blkcg, newpn);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800978
979free_newpn:
980 if (!keep_newpn)
981 kfree(newpn);
982free_buf:
983 kfree(buf);
984 return ret;
985}
986
Vivek Goyal062a6442010-09-15 17:06:33 -0400987static void
988blkio_print_policy_node(struct seq_file *m, struct blkio_policy_node *pn)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800989{
Vivek Goyal062a6442010-09-15 17:06:33 -0400990 switch(pn->plid) {
991 case BLKIO_POLICY_PROP:
992 if (pn->fileid == BLKIO_PROP_weight_device)
993 seq_printf(m, "%u:%u\t%u\n", MAJOR(pn->dev),
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400994 MINOR(pn->dev), pn->val.weight);
995 break;
996 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400997 switch(pn->fileid) {
998 case BLKIO_THROTL_read_bps_device:
999 case BLKIO_THROTL_write_bps_device:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001000 seq_printf(m, "%u:%u\t%llu\n", MAJOR(pn->dev),
1001 MINOR(pn->dev), pn->val.bps);
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001002 break;
1003 case BLKIO_THROTL_read_iops_device:
1004 case BLKIO_THROTL_write_iops_device:
1005 seq_printf(m, "%u:%u\t%u\n", MAJOR(pn->dev),
1006 MINOR(pn->dev), pn->val.iops);
1007 break;
1008 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001009 break;
1010 default:
1011 BUG();
1012 }
1013}
1014
1015/* cgroup files which read their data from policy nodes end up here */
1016static void blkio_read_policy_node_files(struct cftype *cft,
1017 struct blkio_cgroup *blkcg, struct seq_file *m)
1018{
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001019 struct blkio_policy_node *pn;
1020
Jens Axboe0f3942a2010-05-03 14:28:55 +02001021 if (!list_empty(&blkcg->policy_list)) {
1022 spin_lock_irq(&blkcg->lock);
1023 list_for_each_entry(pn, &blkcg->policy_list, node) {
Vivek Goyal062a6442010-09-15 17:06:33 -04001024 if (!pn_matches_cftype(cft, pn))
1025 continue;
1026 blkio_print_policy_node(m, pn);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001027 }
1028 spin_unlock_irq(&blkcg->lock);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001029 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001030}
1031
1032static int blkiocg_file_read(struct cgroup *cgrp, struct cftype *cft,
1033 struct seq_file *m)
1034{
1035 struct blkio_cgroup *blkcg;
1036 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1037 int name = BLKIOFILE_ATTR(cft->private);
1038
1039 blkcg = cgroup_to_blkio_cgroup(cgrp);
1040
1041 switch(plid) {
1042 case BLKIO_POLICY_PROP:
1043 switch(name) {
1044 case BLKIO_PROP_weight_device:
1045 blkio_read_policy_node_files(cft, blkcg, m);
1046 return 0;
1047 default:
1048 BUG();
1049 }
1050 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001051 case BLKIO_POLICY_THROTL:
1052 switch(name){
1053 case BLKIO_THROTL_read_bps_device:
1054 case BLKIO_THROTL_write_bps_device:
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001055 case BLKIO_THROTL_read_iops_device:
1056 case BLKIO_THROTL_write_iops_device:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001057 blkio_read_policy_node_files(cft, blkcg, m);
1058 return 0;
1059 default:
1060 BUG();
1061 }
1062 break;
Vivek Goyal062a6442010-09-15 17:06:33 -04001063 default:
1064 BUG();
1065 }
1066
1067 return 0;
1068}
1069
1070static int blkio_read_blkg_stats(struct blkio_cgroup *blkcg,
1071 struct cftype *cft, struct cgroup_map_cb *cb, enum stat_type type,
1072 bool show_total)
1073{
1074 struct blkio_group *blkg;
1075 struct hlist_node *n;
1076 uint64_t cgroup_total = 0;
1077
1078 rcu_read_lock();
1079 hlist_for_each_entry_rcu(blkg, n, &blkcg->blkg_list, blkcg_node) {
1080 if (blkg->dev) {
1081 if (!cftype_blkg_same_policy(cft, blkg))
1082 continue;
1083 spin_lock_irq(&blkg->stats_lock);
1084 cgroup_total += blkio_get_stat(blkg, cb, blkg->dev,
1085 type);
1086 spin_unlock_irq(&blkg->stats_lock);
1087 }
1088 }
1089 if (show_total)
1090 cb->fill(cb, "Total", cgroup_total);
1091 rcu_read_unlock();
1092 return 0;
1093}
1094
1095/* All map kind of cgroup file get serviced by this function */
1096static int blkiocg_file_read_map(struct cgroup *cgrp, struct cftype *cft,
1097 struct cgroup_map_cb *cb)
1098{
1099 struct blkio_cgroup *blkcg;
1100 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1101 int name = BLKIOFILE_ATTR(cft->private);
1102
1103 blkcg = cgroup_to_blkio_cgroup(cgrp);
1104
1105 switch(plid) {
1106 case BLKIO_POLICY_PROP:
1107 switch(name) {
1108 case BLKIO_PROP_time:
1109 return blkio_read_blkg_stats(blkcg, cft, cb,
1110 BLKIO_STAT_TIME, 0);
1111 case BLKIO_PROP_sectors:
1112 return blkio_read_blkg_stats(blkcg, cft, cb,
1113 BLKIO_STAT_SECTORS, 0);
Justin TerAvest167400d2011-03-12 16:54:00 +01001114 case BLKIO_PROP_unaccounted_time:
1115 return blkio_read_blkg_stats(blkcg, cft, cb,
1116 BLKIO_STAT_UNACCOUNTED_TIME, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001117 case BLKIO_PROP_io_service_bytes:
1118 return blkio_read_blkg_stats(blkcg, cft, cb,
1119 BLKIO_STAT_SERVICE_BYTES, 1);
1120 case BLKIO_PROP_io_serviced:
1121 return blkio_read_blkg_stats(blkcg, cft, cb,
1122 BLKIO_STAT_SERVICED, 1);
1123 case BLKIO_PROP_io_service_time:
1124 return blkio_read_blkg_stats(blkcg, cft, cb,
1125 BLKIO_STAT_SERVICE_TIME, 1);
1126 case BLKIO_PROP_io_wait_time:
1127 return blkio_read_blkg_stats(blkcg, cft, cb,
1128 BLKIO_STAT_WAIT_TIME, 1);
1129 case BLKIO_PROP_io_merged:
1130 return blkio_read_blkg_stats(blkcg, cft, cb,
1131 BLKIO_STAT_MERGED, 1);
1132 case BLKIO_PROP_io_queued:
1133 return blkio_read_blkg_stats(blkcg, cft, cb,
1134 BLKIO_STAT_QUEUED, 1);
1135#ifdef CONFIG_DEBUG_BLK_CGROUP
1136 case BLKIO_PROP_dequeue:
1137 return blkio_read_blkg_stats(blkcg, cft, cb,
1138 BLKIO_STAT_DEQUEUE, 0);
1139 case BLKIO_PROP_avg_queue_size:
1140 return blkio_read_blkg_stats(blkcg, cft, cb,
1141 BLKIO_STAT_AVG_QUEUE_SIZE, 0);
1142 case BLKIO_PROP_group_wait_time:
1143 return blkio_read_blkg_stats(blkcg, cft, cb,
1144 BLKIO_STAT_GROUP_WAIT_TIME, 0);
1145 case BLKIO_PROP_idle_time:
1146 return blkio_read_blkg_stats(blkcg, cft, cb,
1147 BLKIO_STAT_IDLE_TIME, 0);
1148 case BLKIO_PROP_empty_time:
1149 return blkio_read_blkg_stats(blkcg, cft, cb,
1150 BLKIO_STAT_EMPTY_TIME, 0);
1151#endif
1152 default:
1153 BUG();
1154 }
1155 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001156 case BLKIO_POLICY_THROTL:
1157 switch(name){
1158 case BLKIO_THROTL_io_service_bytes:
1159 return blkio_read_blkg_stats(blkcg, cft, cb,
1160 BLKIO_STAT_SERVICE_BYTES, 1);
1161 case BLKIO_THROTL_io_serviced:
1162 return blkio_read_blkg_stats(blkcg, cft, cb,
1163 BLKIO_STAT_SERVICED, 1);
1164 default:
1165 BUG();
1166 }
1167 break;
Vivek Goyal062a6442010-09-15 17:06:33 -04001168 default:
1169 BUG();
1170 }
1171
1172 return 0;
1173}
1174
1175static int blkio_weight_write(struct blkio_cgroup *blkcg, u64 val)
1176{
1177 struct blkio_group *blkg;
1178 struct hlist_node *n;
1179 struct blkio_policy_node *pn;
1180
1181 if (val < BLKIO_WEIGHT_MIN || val > BLKIO_WEIGHT_MAX)
1182 return -EINVAL;
1183
1184 spin_lock(&blkio_list_lock);
1185 spin_lock_irq(&blkcg->lock);
1186 blkcg->weight = (unsigned int)val;
1187
1188 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
1189 pn = blkio_policy_search_node(blkcg, blkg->dev,
1190 BLKIO_POLICY_PROP, BLKIO_PROP_weight_device);
1191 if (pn)
1192 continue;
1193
1194 blkio_update_group_weight(blkg, blkcg->weight);
1195 }
1196 spin_unlock_irq(&blkcg->lock);
1197 spin_unlock(&blkio_list_lock);
1198 return 0;
1199}
1200
1201static u64 blkiocg_file_read_u64 (struct cgroup *cgrp, struct cftype *cft) {
1202 struct blkio_cgroup *blkcg;
1203 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1204 int name = BLKIOFILE_ATTR(cft->private);
1205
1206 blkcg = cgroup_to_blkio_cgroup(cgrp);
1207
1208 switch(plid) {
1209 case BLKIO_POLICY_PROP:
1210 switch(name) {
1211 case BLKIO_PROP_weight:
1212 return (u64)blkcg->weight;
1213 }
1214 break;
1215 default:
1216 BUG();
1217 }
1218 return 0;
1219}
1220
1221static int
1222blkiocg_file_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
1223{
1224 struct blkio_cgroup *blkcg;
1225 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1226 int name = BLKIOFILE_ATTR(cft->private);
1227
1228 blkcg = cgroup_to_blkio_cgroup(cgrp);
1229
1230 switch(plid) {
1231 case BLKIO_POLICY_PROP:
1232 switch(name) {
1233 case BLKIO_PROP_weight:
1234 return blkio_weight_write(blkcg, val);
1235 }
1236 break;
1237 default:
1238 BUG();
1239 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001240
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001241 return 0;
1242}
1243
Vivek Goyal31e4c282009-12-03 12:59:42 -05001244struct cftype blkio_files[] = {
1245 {
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001246 .name = "weight_device",
Vivek Goyal062a6442010-09-15 17:06:33 -04001247 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1248 BLKIO_PROP_weight_device),
1249 .read_seq_string = blkiocg_file_read,
1250 .write_string = blkiocg_file_write,
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001251 .max_write_len = 256,
1252 },
1253 {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001254 .name = "weight",
Vivek Goyal062a6442010-09-15 17:06:33 -04001255 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1256 BLKIO_PROP_weight),
1257 .read_u64 = blkiocg_file_read_u64,
1258 .write_u64 = blkiocg_file_write_u64,
Vivek Goyal31e4c282009-12-03 12:59:42 -05001259 },
Vivek Goyal22084192009-12-03 12:59:49 -05001260 {
1261 .name = "time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001262 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1263 BLKIO_PROP_time),
1264 .read_map = blkiocg_file_read_map,
Vivek Goyal22084192009-12-03 12:59:49 -05001265 },
1266 {
1267 .name = "sectors",
Vivek Goyal13f98252010-10-01 14:49:41 +02001268 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1269 BLKIO_PROP_sectors),
1270 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001271 },
1272 {
Justin TerAvest167400d2011-03-12 16:54:00 +01001273 .name = "unaccounted_time",
1274 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1275 BLKIO_PROP_unaccounted_time),
1276 .read_map = blkiocg_file_read_map,
1277 },
1278 {
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001279 .name = "io_service_bytes",
Vivek Goyal13f98252010-10-01 14:49:41 +02001280 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1281 BLKIO_PROP_io_service_bytes),
1282 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001283 },
1284 {
1285 .name = "io_serviced",
Vivek Goyal13f98252010-10-01 14:49:41 +02001286 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1287 BLKIO_PROP_io_serviced),
1288 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001289 },
1290 {
1291 .name = "io_service_time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001292 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1293 BLKIO_PROP_io_service_time),
1294 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001295 },
1296 {
1297 .name = "io_wait_time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001298 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1299 BLKIO_PROP_io_wait_time),
1300 .read_map = blkiocg_file_read_map,
Divyesh Shah84c124d2010-04-09 08:31:19 +02001301 },
1302 {
Divyesh Shah812d4022010-04-08 21:14:23 -07001303 .name = "io_merged",
Vivek Goyal13f98252010-10-01 14:49:41 +02001304 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1305 BLKIO_PROP_io_merged),
1306 .read_map = blkiocg_file_read_map,
Divyesh Shah812d4022010-04-08 21:14:23 -07001307 },
1308 {
Divyesh Shahcdc11842010-04-08 21:15:10 -07001309 .name = "io_queued",
Vivek Goyal13f98252010-10-01 14:49:41 +02001310 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1311 BLKIO_PROP_io_queued),
1312 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001313 },
1314 {
Divyesh Shah84c124d2010-04-09 08:31:19 +02001315 .name = "reset_stats",
1316 .write_u64 = blkiocg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001317 },
Vivek Goyal13f98252010-10-01 14:49:41 +02001318#ifdef CONFIG_BLK_DEV_THROTTLING
1319 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001320 .name = "throttle.read_bps_device",
1321 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1322 BLKIO_THROTL_read_bps_device),
1323 .read_seq_string = blkiocg_file_read,
1324 .write_string = blkiocg_file_write,
1325 .max_write_len = 256,
1326 },
1327
1328 {
1329 .name = "throttle.write_bps_device",
1330 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1331 BLKIO_THROTL_write_bps_device),
1332 .read_seq_string = blkiocg_file_read,
1333 .write_string = blkiocg_file_write,
1334 .max_write_len = 256,
1335 },
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001336
1337 {
1338 .name = "throttle.read_iops_device",
1339 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1340 BLKIO_THROTL_read_iops_device),
1341 .read_seq_string = blkiocg_file_read,
1342 .write_string = blkiocg_file_write,
1343 .max_write_len = 256,
1344 },
1345
1346 {
1347 .name = "throttle.write_iops_device",
1348 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1349 BLKIO_THROTL_write_iops_device),
1350 .read_seq_string = blkiocg_file_read,
1351 .write_string = blkiocg_file_write,
1352 .max_write_len = 256,
1353 },
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001354 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001355 .name = "throttle.io_service_bytes",
1356 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1357 BLKIO_THROTL_io_service_bytes),
1358 .read_map = blkiocg_file_read_map,
1359 },
1360 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001361 .name = "throttle.io_serviced",
1362 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1363 BLKIO_THROTL_io_serviced),
1364 .read_map = blkiocg_file_read_map,
1365 },
Vivek Goyal13f98252010-10-01 14:49:41 +02001366#endif /* CONFIG_BLK_DEV_THROTTLING */
1367
Vivek Goyal22084192009-12-03 12:59:49 -05001368#ifdef CONFIG_DEBUG_BLK_CGROUP
Divyesh Shahcdc11842010-04-08 21:15:10 -07001369 {
1370 .name = "avg_queue_size",
Vivek Goyal062a6442010-09-15 17:06:33 -04001371 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1372 BLKIO_PROP_avg_queue_size),
1373 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001374 },
1375 {
Divyesh Shah812df482010-04-08 21:15:35 -07001376 .name = "group_wait_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001377 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1378 BLKIO_PROP_group_wait_time),
1379 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001380 },
1381 {
1382 .name = "idle_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001383 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1384 BLKIO_PROP_idle_time),
1385 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001386 },
1387 {
1388 .name = "empty_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001389 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1390 BLKIO_PROP_empty_time),
1391 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001392 },
1393 {
Vivek Goyal22084192009-12-03 12:59:49 -05001394 .name = "dequeue",
Vivek Goyal062a6442010-09-15 17:06:33 -04001395 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1396 BLKIO_PROP_dequeue),
1397 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001398 },
Vivek Goyal22084192009-12-03 12:59:49 -05001399#endif
Vivek Goyal31e4c282009-12-03 12:59:42 -05001400};
1401
1402static int blkiocg_populate(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1403{
1404 return cgroup_add_files(cgroup, subsys, blkio_files,
1405 ARRAY_SIZE(blkio_files));
1406}
1407
1408static void blkiocg_destroy(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1409{
1410 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001411 unsigned long flags;
1412 struct blkio_group *blkg;
1413 void *key;
Vivek Goyal3e252062009-12-04 10:36:42 -05001414 struct blkio_policy_type *blkiop;
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001415 struct blkio_policy_node *pn, *pntmp;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001416
Vivek Goyalb1c35762009-12-03 12:59:47 -05001417 rcu_read_lock();
Jens Axboe0f3942a2010-05-03 14:28:55 +02001418 do {
1419 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001420
Jens Axboe0f3942a2010-05-03 14:28:55 +02001421 if (hlist_empty(&blkcg->blkg_list)) {
1422 spin_unlock_irqrestore(&blkcg->lock, flags);
1423 break;
1424 }
1425
1426 blkg = hlist_entry(blkcg->blkg_list.first, struct blkio_group,
1427 blkcg_node);
1428 key = rcu_dereference(blkg->key);
1429 __blkiocg_del_blkio_group(blkg);
1430
Vivek Goyalb1c35762009-12-03 12:59:47 -05001431 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001432
Jens Axboe0f3942a2010-05-03 14:28:55 +02001433 /*
1434 * This blkio_group is being unlinked as associated cgroup is
1435 * going away. Let all the IO controlling policies know about
Vivek Goyal61014e92010-10-01 14:49:44 +02001436 * this event.
Jens Axboe0f3942a2010-05-03 14:28:55 +02001437 */
1438 spin_lock(&blkio_list_lock);
Vivek Goyal61014e92010-10-01 14:49:44 +02001439 list_for_each_entry(blkiop, &blkio_list, list) {
1440 if (blkiop->plid != blkg->plid)
1441 continue;
Jens Axboe0f3942a2010-05-03 14:28:55 +02001442 blkiop->ops.blkio_unlink_group_fn(key, blkg);
Vivek Goyal61014e92010-10-01 14:49:44 +02001443 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001444 spin_unlock(&blkio_list_lock);
1445 } while (1);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001446
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001447 list_for_each_entry_safe(pn, pntmp, &blkcg->policy_list, node) {
1448 blkio_policy_delete_node(pn);
1449 kfree(pn);
1450 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001451
Vivek Goyal31e4c282009-12-03 12:59:42 -05001452 free_css_id(&blkio_subsys, &blkcg->css);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001453 rcu_read_unlock();
Ben Blum67523c42010-03-10 15:22:11 -08001454 if (blkcg != &blkio_root_cgroup)
1455 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001456}
1457
1458static struct cgroup_subsys_state *
1459blkiocg_create(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1460{
Li Zefan03415092010-05-07 08:57:00 +02001461 struct blkio_cgroup *blkcg;
1462 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001463
Li Zefan03415092010-05-07 08:57:00 +02001464 if (!parent) {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001465 blkcg = &blkio_root_cgroup;
1466 goto done;
1467 }
1468
Vivek Goyal31e4c282009-12-03 12:59:42 -05001469 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1470 if (!blkcg)
1471 return ERR_PTR(-ENOMEM);
1472
1473 blkcg->weight = BLKIO_WEIGHT_DEFAULT;
1474done:
1475 spin_lock_init(&blkcg->lock);
1476 INIT_HLIST_HEAD(&blkcg->blkg_list);
1477
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001478 INIT_LIST_HEAD(&blkcg->policy_list);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001479 return &blkcg->css;
1480}
1481
1482/*
1483 * We cannot support shared io contexts, as we have no mean to support
1484 * two tasks with the same ioc in two different groups without major rework
1485 * of the main cic data structures. For now we allow a task to change
1486 * its cgroup only if it's the only owner of its ioc.
1487 */
1488static int blkiocg_can_attach(struct cgroup_subsys *subsys,
1489 struct cgroup *cgroup, struct task_struct *tsk,
1490 bool threadgroup)
1491{
1492 struct io_context *ioc;
1493 int ret = 0;
1494
1495 /* task_lock() is needed to avoid races with exit_io_context() */
1496 task_lock(tsk);
1497 ioc = tsk->io_context;
1498 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1499 ret = -EINVAL;
1500 task_unlock(tsk);
1501
1502 return ret;
1503}
1504
1505static void blkiocg_attach(struct cgroup_subsys *subsys, struct cgroup *cgroup,
1506 struct cgroup *prev, struct task_struct *tsk,
1507 bool threadgroup)
1508{
1509 struct io_context *ioc;
1510
1511 task_lock(tsk);
1512 ioc = tsk->io_context;
1513 if (ioc)
1514 ioc->cgroup_changed = 1;
1515 task_unlock(tsk);
1516}
1517
Vivek Goyal3e252062009-12-04 10:36:42 -05001518void blkio_policy_register(struct blkio_policy_type *blkiop)
1519{
1520 spin_lock(&blkio_list_lock);
1521 list_add_tail(&blkiop->list, &blkio_list);
1522 spin_unlock(&blkio_list_lock);
1523}
1524EXPORT_SYMBOL_GPL(blkio_policy_register);
1525
1526void blkio_policy_unregister(struct blkio_policy_type *blkiop)
1527{
1528 spin_lock(&blkio_list_lock);
1529 list_del_init(&blkiop->list);
1530 spin_unlock(&blkio_list_lock);
1531}
1532EXPORT_SYMBOL_GPL(blkio_policy_unregister);
Ben Blum67523c42010-03-10 15:22:11 -08001533
1534static int __init init_cgroup_blkio(void)
1535{
1536 return cgroup_load_subsys(&blkio_subsys);
1537}
1538
1539static void __exit exit_cgroup_blkio(void)
1540{
1541 cgroup_unload_subsys(&blkio_subsys);
1542}
1543
1544module_init(init_cgroup_blkio);
1545module_exit(exit_cgroup_blkio);
1546MODULE_LICENSE("GPL");