2 * Common Block IO controller cgroup interface
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
13 #include <linux/ioprio.h>
14 #include <linux/seq_file.h>
15 #include <linux/kdev_t.h>
16 #include <linux/module.h>
17 #include <linux/err.h>
18 #include <linux/blkdev.h>
19 #include <linux/slab.h>
20 #include "blk-cgroup.h"
21 #include <linux/genhd.h>
23 #define MAX_KEY_LEN 100
25 static DEFINE_SPINLOCK(blkio_list_lock
);
26 static LIST_HEAD(blkio_list
);
28 struct blkio_cgroup blkio_root_cgroup
= { .weight
= 2*BLKIO_WEIGHT_DEFAULT
};
29 EXPORT_SYMBOL_GPL(blkio_root_cgroup
);
31 static struct cgroup_subsys_state
*blkiocg_create(struct cgroup_subsys
*,
33 static int blkiocg_can_attach(struct cgroup_subsys
*, struct cgroup
*,
34 struct task_struct
*, bool);
35 static void blkiocg_attach(struct cgroup_subsys
*, struct cgroup
*,
36 struct cgroup
*, struct task_struct
*, bool);
37 static void blkiocg_destroy(struct cgroup_subsys
*, struct cgroup
*);
38 static int blkiocg_populate(struct cgroup_subsys
*, struct cgroup
*);
40 /* 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)
46 struct cgroup_subsys blkio_subsys
= {
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
,
58 .module
= THIS_MODULE
,
60 EXPORT_SYMBOL_GPL(blkio_subsys
);
62 static inline void blkio_policy_insert_node(struct blkio_cgroup
*blkcg
,
63 struct blkio_policy_node
*pn
)
65 list_add(&pn
->node
, &blkcg
->policy_list
);
68 static inline bool cftype_blkg_same_policy(struct cftype
*cft
,
69 struct blkio_group
*blkg
)
71 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
73 if (blkg
->plid
== plid
)
79 /* Determines if policy node matches cgroup file being accessed */
80 static inline bool pn_matches_cftype(struct cftype
*cft
,
81 struct blkio_policy_node
*pn
)
83 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
84 int fileid
= BLKIOFILE_ATTR(cft
->private);
86 return (plid
== pn
->plid
&& fileid
== pn
->fileid
);
89 /* Must be called with blkcg->lock held */
90 static inline void blkio_policy_delete_node(struct blkio_policy_node
*pn
)
95 /* Must be called with blkcg->lock held */
96 static struct blkio_policy_node
*
97 blkio_policy_search_node(const struct blkio_cgroup
*blkcg
, dev_t dev
,
98 enum blkio_policy_id plid
, int fileid
)
100 struct blkio_policy_node
*pn
;
102 list_for_each_entry(pn
, &blkcg
->policy_list
, node
) {
103 if (pn
->dev
== dev
&& pn
->plid
== plid
&& pn
->fileid
== fileid
)
110 struct blkio_cgroup
*cgroup_to_blkio_cgroup(struct cgroup
*cgroup
)
112 return container_of(cgroup_subsys_state(cgroup
, blkio_subsys_id
),
113 struct blkio_cgroup
, css
);
115 EXPORT_SYMBOL_GPL(cgroup_to_blkio_cgroup
);
117 struct blkio_cgroup
*task_blkio_cgroup(struct task_struct
*tsk
)
119 return container_of(task_subsys_state(tsk
, blkio_subsys_id
),
120 struct blkio_cgroup
, css
);
122 EXPORT_SYMBOL_GPL(task_blkio_cgroup
);
125 blkio_update_group_weight(struct blkio_group
*blkg
, unsigned int weight
)
127 struct blkio_policy_type
*blkiop
;
129 list_for_each_entry(blkiop
, &blkio_list
, list
) {
130 /* If this policy does not own the blkg, do not send updates */
131 if (blkiop
->plid
!= blkg
->plid
)
133 if (blkiop
->ops
.blkio_update_group_weight_fn
)
134 blkiop
->ops
.blkio_update_group_weight_fn(blkg
->key
,
139 static inline void blkio_update_group_bps(struct blkio_group
*blkg
, u64 bps
,
142 struct blkio_policy_type
*blkiop
;
144 list_for_each_entry(blkiop
, &blkio_list
, list
) {
146 /* If this policy does not own the blkg, do not send updates */
147 if (blkiop
->plid
!= blkg
->plid
)
150 if (fileid
== BLKIO_THROTL_read_bps_device
151 && blkiop
->ops
.blkio_update_group_read_bps_fn
)
152 blkiop
->ops
.blkio_update_group_read_bps_fn(blkg
->key
,
155 if (fileid
== BLKIO_THROTL_write_bps_device
156 && blkiop
->ops
.blkio_update_group_write_bps_fn
)
157 blkiop
->ops
.blkio_update_group_write_bps_fn(blkg
->key
,
162 static inline void blkio_update_group_iops(struct blkio_group
*blkg
,
163 unsigned int iops
, int fileid
)
165 struct blkio_policy_type
*blkiop
;
167 list_for_each_entry(blkiop
, &blkio_list
, list
) {
169 /* If this policy does not own the blkg, do not send updates */
170 if (blkiop
->plid
!= blkg
->plid
)
173 if (fileid
== BLKIO_THROTL_read_iops_device
174 && blkiop
->ops
.blkio_update_group_read_iops_fn
)
175 blkiop
->ops
.blkio_update_group_read_iops_fn(blkg
->key
,
178 if (fileid
== BLKIO_THROTL_write_iops_device
179 && blkiop
->ops
.blkio_update_group_write_iops_fn
)
180 blkiop
->ops
.blkio_update_group_write_iops_fn(blkg
->key
,
186 * Add to the appropriate stat variable depending on the request type.
187 * This should be called with the blkg->stats_lock held.
189 static void blkio_add_stat(uint64_t *stat
, uint64_t add
, bool direction
,
193 stat
[BLKIO_STAT_WRITE
] += add
;
195 stat
[BLKIO_STAT_READ
] += add
;
197 stat
[BLKIO_STAT_SYNC
] += add
;
199 stat
[BLKIO_STAT_ASYNC
] += add
;
203 * Decrements the appropriate stat variable if non-zero depending on the
204 * request type. Panics on value being zero.
205 * This should be called with the blkg->stats_lock held.
207 static void blkio_check_and_dec_stat(uint64_t *stat
, bool direction
, bool sync
)
210 BUG_ON(stat
[BLKIO_STAT_WRITE
] == 0);
211 stat
[BLKIO_STAT_WRITE
]--;
213 BUG_ON(stat
[BLKIO_STAT_READ
] == 0);
214 stat
[BLKIO_STAT_READ
]--;
217 BUG_ON(stat
[BLKIO_STAT_SYNC
] == 0);
218 stat
[BLKIO_STAT_SYNC
]--;
220 BUG_ON(stat
[BLKIO_STAT_ASYNC
] == 0);
221 stat
[BLKIO_STAT_ASYNC
]--;
225 #ifdef CONFIG_DEBUG_BLK_CGROUP
226 /* This should be called with the blkg->stats_lock held. */
227 static void blkio_set_start_group_wait_time(struct blkio_group
*blkg
,
228 struct blkio_group
*curr_blkg
)
230 if (blkio_blkg_waiting(&blkg
->stats
))
232 if (blkg
== curr_blkg
)
234 blkg
->stats
.start_group_wait_time
= sched_clock();
235 blkio_mark_blkg_waiting(&blkg
->stats
);
238 /* This should be called with the blkg->stats_lock held. */
239 static void blkio_update_group_wait_time(struct blkio_group_stats
*stats
)
241 unsigned long long now
;
243 if (!blkio_blkg_waiting(stats
))
247 if (time_after64(now
, stats
->start_group_wait_time
))
248 stats
->group_wait_time
+= now
- stats
->start_group_wait_time
;
249 blkio_clear_blkg_waiting(stats
);
252 /* This should be called with the blkg->stats_lock held. */
253 static void blkio_end_empty_time(struct blkio_group_stats
*stats
)
255 unsigned long long now
;
257 if (!blkio_blkg_empty(stats
))
261 if (time_after64(now
, stats
->start_empty_time
))
262 stats
->empty_time
+= now
- stats
->start_empty_time
;
263 blkio_clear_blkg_empty(stats
);
266 void blkiocg_update_set_idle_time_stats(struct blkio_group
*blkg
)
270 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
271 BUG_ON(blkio_blkg_idling(&blkg
->stats
));
272 blkg
->stats
.start_idle_time
= sched_clock();
273 blkio_mark_blkg_idling(&blkg
->stats
);
274 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
276 EXPORT_SYMBOL_GPL(blkiocg_update_set_idle_time_stats
);
278 void blkiocg_update_idle_time_stats(struct blkio_group
*blkg
)
281 unsigned long long now
;
282 struct blkio_group_stats
*stats
;
284 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
285 stats
= &blkg
->stats
;
286 if (blkio_blkg_idling(stats
)) {
288 if (time_after64(now
, stats
->start_idle_time
))
289 stats
->idle_time
+= now
- stats
->start_idle_time
;
290 blkio_clear_blkg_idling(stats
);
292 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
294 EXPORT_SYMBOL_GPL(blkiocg_update_idle_time_stats
);
296 void blkiocg_update_avg_queue_size_stats(struct blkio_group
*blkg
)
299 struct blkio_group_stats
*stats
;
301 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
302 stats
= &blkg
->stats
;
303 stats
->avg_queue_size_sum
+=
304 stats
->stat_arr
[BLKIO_STAT_QUEUED
][BLKIO_STAT_READ
] +
305 stats
->stat_arr
[BLKIO_STAT_QUEUED
][BLKIO_STAT_WRITE
];
306 stats
->avg_queue_size_samples
++;
307 blkio_update_group_wait_time(stats
);
308 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
310 EXPORT_SYMBOL_GPL(blkiocg_update_avg_queue_size_stats
);
312 void blkiocg_set_start_empty_time(struct blkio_group
*blkg
)
315 struct blkio_group_stats
*stats
;
317 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
318 stats
= &blkg
->stats
;
320 if (stats
->stat_arr
[BLKIO_STAT_QUEUED
][BLKIO_STAT_READ
] ||
321 stats
->stat_arr
[BLKIO_STAT_QUEUED
][BLKIO_STAT_WRITE
]) {
322 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
327 * group is already marked empty. This can happen if cfqq got new
328 * request in parent group and moved to this group while being added
329 * to service tree. Just ignore the event and move on.
331 if(blkio_blkg_empty(stats
)) {
332 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
336 stats
->start_empty_time
= sched_clock();
337 blkio_mark_blkg_empty(stats
);
338 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
340 EXPORT_SYMBOL_GPL(blkiocg_set_start_empty_time
);
342 void blkiocg_update_dequeue_stats(struct blkio_group
*blkg
,
343 unsigned long dequeue
)
345 blkg
->stats
.dequeue
+= dequeue
;
347 EXPORT_SYMBOL_GPL(blkiocg_update_dequeue_stats
);
349 static inline void blkio_set_start_group_wait_time(struct blkio_group
*blkg
,
350 struct blkio_group
*curr_blkg
) {}
351 static inline void blkio_end_empty_time(struct blkio_group_stats
*stats
) {}
354 void blkiocg_update_io_add_stats(struct blkio_group
*blkg
,
355 struct blkio_group
*curr_blkg
, bool direction
,
360 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
361 blkio_add_stat(blkg
->stats
.stat_arr
[BLKIO_STAT_QUEUED
], 1, direction
,
363 blkio_end_empty_time(&blkg
->stats
);
364 blkio_set_start_group_wait_time(blkg
, curr_blkg
);
365 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
367 EXPORT_SYMBOL_GPL(blkiocg_update_io_add_stats
);
369 void blkiocg_update_io_remove_stats(struct blkio_group
*blkg
,
370 bool direction
, bool sync
)
374 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
375 blkio_check_and_dec_stat(blkg
->stats
.stat_arr
[BLKIO_STAT_QUEUED
],
377 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
379 EXPORT_SYMBOL_GPL(blkiocg_update_io_remove_stats
);
381 void blkiocg_update_timeslice_used(struct blkio_group
*blkg
, unsigned long time
,
382 unsigned long unaccounted_time
)
386 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
387 blkg
->stats
.time
+= time
;
388 blkg
->stats
.unaccounted_time
+= unaccounted_time
;
389 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
391 EXPORT_SYMBOL_GPL(blkiocg_update_timeslice_used
);
393 void blkiocg_update_dispatch_stats(struct blkio_group
*blkg
,
394 uint64_t bytes
, bool direction
, bool sync
)
396 struct blkio_group_stats
*stats
;
399 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
400 stats
= &blkg
->stats
;
401 stats
->sectors
+= bytes
>> 9;
402 blkio_add_stat(stats
->stat_arr
[BLKIO_STAT_SERVICED
], 1, direction
,
404 blkio_add_stat(stats
->stat_arr
[BLKIO_STAT_SERVICE_BYTES
], bytes
,
406 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
408 EXPORT_SYMBOL_GPL(blkiocg_update_dispatch_stats
);
410 void blkiocg_update_completion_stats(struct blkio_group
*blkg
,
411 uint64_t start_time
, uint64_t io_start_time
, bool direction
, bool sync
)
413 struct blkio_group_stats
*stats
;
415 unsigned long long now
= sched_clock();
417 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
418 stats
= &blkg
->stats
;
419 if (time_after64(now
, io_start_time
))
420 blkio_add_stat(stats
->stat_arr
[BLKIO_STAT_SERVICE_TIME
],
421 now
- io_start_time
, direction
, sync
);
422 if (time_after64(io_start_time
, start_time
))
423 blkio_add_stat(stats
->stat_arr
[BLKIO_STAT_WAIT_TIME
],
424 io_start_time
- start_time
, direction
, sync
);
425 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
427 EXPORT_SYMBOL_GPL(blkiocg_update_completion_stats
);
429 void blkiocg_update_io_merged_stats(struct blkio_group
*blkg
, bool direction
,
434 spin_lock_irqsave(&blkg
->stats_lock
, flags
);
435 blkio_add_stat(blkg
->stats
.stat_arr
[BLKIO_STAT_MERGED
], 1, direction
,
437 spin_unlock_irqrestore(&blkg
->stats_lock
, flags
);
439 EXPORT_SYMBOL_GPL(blkiocg_update_io_merged_stats
);
441 void blkiocg_add_blkio_group(struct blkio_cgroup
*blkcg
,
442 struct blkio_group
*blkg
, void *key
, dev_t dev
,
443 enum blkio_policy_id plid
)
447 spin_lock_irqsave(&blkcg
->lock
, flags
);
448 spin_lock_init(&blkg
->stats_lock
);
449 rcu_assign_pointer(blkg
->key
, key
);
450 blkg
->blkcg_id
= css_id(&blkcg
->css
);
451 hlist_add_head_rcu(&blkg
->blkcg_node
, &blkcg
->blkg_list
);
453 spin_unlock_irqrestore(&blkcg
->lock
, flags
);
454 /* Need to take css reference ? */
455 cgroup_path(blkcg
->css
.cgroup
, blkg
->path
, sizeof(blkg
->path
));
458 EXPORT_SYMBOL_GPL(blkiocg_add_blkio_group
);
460 static void __blkiocg_del_blkio_group(struct blkio_group
*blkg
)
462 hlist_del_init_rcu(&blkg
->blkcg_node
);
467 * returns 0 if blkio_group was still on cgroup list. Otherwise returns 1
468 * indicating that blk_group was unhashed by the time we got to it.
470 int blkiocg_del_blkio_group(struct blkio_group
*blkg
)
472 struct blkio_cgroup
*blkcg
;
474 struct cgroup_subsys_state
*css
;
478 css
= css_lookup(&blkio_subsys
, blkg
->blkcg_id
);
480 blkcg
= container_of(css
, struct blkio_cgroup
, css
);
481 spin_lock_irqsave(&blkcg
->lock
, flags
);
482 if (!hlist_unhashed(&blkg
->blkcg_node
)) {
483 __blkiocg_del_blkio_group(blkg
);
486 spin_unlock_irqrestore(&blkcg
->lock
, flags
);
492 EXPORT_SYMBOL_GPL(blkiocg_del_blkio_group
);
494 /* called under rcu_read_lock(). */
495 struct blkio_group
*blkiocg_lookup_group(struct blkio_cgroup
*blkcg
, void *key
)
497 struct blkio_group
*blkg
;
498 struct hlist_node
*n
;
501 hlist_for_each_entry_rcu(blkg
, n
, &blkcg
->blkg_list
, blkcg_node
) {
509 EXPORT_SYMBOL_GPL(blkiocg_lookup_group
);
512 blkiocg_reset_stats(struct cgroup
*cgroup
, struct cftype
*cftype
, u64 val
)
514 struct blkio_cgroup
*blkcg
;
515 struct blkio_group
*blkg
;
516 struct blkio_group_stats
*stats
;
517 struct hlist_node
*n
;
518 uint64_t queued
[BLKIO_STAT_TOTAL
];
520 #ifdef CONFIG_DEBUG_BLK_CGROUP
521 bool idling
, waiting
, empty
;
522 unsigned long long now
= sched_clock();
525 blkcg
= cgroup_to_blkio_cgroup(cgroup
);
526 spin_lock_irq(&blkcg
->lock
);
527 hlist_for_each_entry(blkg
, n
, &blkcg
->blkg_list
, blkcg_node
) {
528 spin_lock(&blkg
->stats_lock
);
529 stats
= &blkg
->stats
;
530 #ifdef CONFIG_DEBUG_BLK_CGROUP
531 idling
= blkio_blkg_idling(stats
);
532 waiting
= blkio_blkg_waiting(stats
);
533 empty
= blkio_blkg_empty(stats
);
535 for (i
= 0; i
< BLKIO_STAT_TOTAL
; i
++)
536 queued
[i
] = stats
->stat_arr
[BLKIO_STAT_QUEUED
][i
];
537 memset(stats
, 0, sizeof(struct blkio_group_stats
));
538 for (i
= 0; i
< BLKIO_STAT_TOTAL
; i
++)
539 stats
->stat_arr
[BLKIO_STAT_QUEUED
][i
] = queued
[i
];
540 #ifdef CONFIG_DEBUG_BLK_CGROUP
542 blkio_mark_blkg_idling(stats
);
543 stats
->start_idle_time
= now
;
546 blkio_mark_blkg_waiting(stats
);
547 stats
->start_group_wait_time
= now
;
550 blkio_mark_blkg_empty(stats
);
551 stats
->start_empty_time
= now
;
554 spin_unlock(&blkg
->stats_lock
);
556 spin_unlock_irq(&blkcg
->lock
);
560 static void blkio_get_key_name(enum stat_sub_type type
, dev_t dev
, char *str
,
561 int chars_left
, bool diskname_only
)
563 snprintf(str
, chars_left
, "%d:%d", MAJOR(dev
), MINOR(dev
));
564 chars_left
-= strlen(str
);
565 if (chars_left
<= 0) {
567 "Possibly incorrect cgroup stat display format");
573 case BLKIO_STAT_READ
:
574 strlcat(str
, " Read", chars_left
);
576 case BLKIO_STAT_WRITE
:
577 strlcat(str
, " Write", chars_left
);
579 case BLKIO_STAT_SYNC
:
580 strlcat(str
, " Sync", chars_left
);
582 case BLKIO_STAT_ASYNC
:
583 strlcat(str
, " Async", chars_left
);
585 case BLKIO_STAT_TOTAL
:
586 strlcat(str
, " Total", chars_left
);
589 strlcat(str
, " Invalid", chars_left
);
593 static uint64_t blkio_fill_stat(char *str
, int chars_left
, uint64_t val
,
594 struct cgroup_map_cb
*cb
, dev_t dev
)
596 blkio_get_key_name(0, dev
, str
, chars_left
, true);
597 cb
->fill(cb
, str
, val
);
601 /* This should be called with blkg->stats_lock held */
602 static uint64_t blkio_get_stat(struct blkio_group
*blkg
,
603 struct cgroup_map_cb
*cb
, dev_t dev
, enum stat_type type
)
606 char key_str
[MAX_KEY_LEN
];
607 enum stat_sub_type sub_type
;
609 if (type
== BLKIO_STAT_TIME
)
610 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
611 blkg
->stats
.time
, cb
, dev
);
612 if (type
== BLKIO_STAT_SECTORS
)
613 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
614 blkg
->stats
.sectors
, cb
, dev
);
615 #ifdef CONFIG_DEBUG_BLK_CGROUP
616 if (type
== BLKIO_STAT_UNACCOUNTED_TIME
)
617 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
618 blkg
->stats
.unaccounted_time
, cb
, dev
);
619 if (type
== BLKIO_STAT_AVG_QUEUE_SIZE
) {
620 uint64_t sum
= blkg
->stats
.avg_queue_size_sum
;
621 uint64_t samples
= blkg
->stats
.avg_queue_size_samples
;
623 do_div(sum
, samples
);
626 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1, sum
, cb
, dev
);
628 if (type
== BLKIO_STAT_GROUP_WAIT_TIME
)
629 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
630 blkg
->stats
.group_wait_time
, cb
, dev
);
631 if (type
== BLKIO_STAT_IDLE_TIME
)
632 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
633 blkg
->stats
.idle_time
, cb
, dev
);
634 if (type
== BLKIO_STAT_EMPTY_TIME
)
635 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
636 blkg
->stats
.empty_time
, cb
, dev
);
637 if (type
== BLKIO_STAT_DEQUEUE
)
638 return blkio_fill_stat(key_str
, MAX_KEY_LEN
- 1,
639 blkg
->stats
.dequeue
, cb
, dev
);
642 for (sub_type
= BLKIO_STAT_READ
; sub_type
< BLKIO_STAT_TOTAL
;
644 blkio_get_key_name(sub_type
, dev
, key_str
, MAX_KEY_LEN
, false);
645 cb
->fill(cb
, key_str
, blkg
->stats
.stat_arr
[type
][sub_type
]);
647 disk_total
= blkg
->stats
.stat_arr
[type
][BLKIO_STAT_READ
] +
648 blkg
->stats
.stat_arr
[type
][BLKIO_STAT_WRITE
];
649 blkio_get_key_name(BLKIO_STAT_TOTAL
, dev
, key_str
, MAX_KEY_LEN
, false);
650 cb
->fill(cb
, key_str
, disk_total
);
654 static int blkio_check_dev_num(dev_t dev
)
657 struct gendisk
*disk
;
659 disk
= get_gendisk(dev
, &part
);
666 static int blkio_policy_parse_and_set(char *buf
,
667 struct blkio_policy_node
*newpn
, enum blkio_policy_id plid
, int fileid
)
669 char *s
[4], *p
, *major_s
= NULL
, *minor_s
= NULL
;
671 unsigned long major
, minor
, temp
;
676 memset(s
, 0, sizeof(s
));
678 while ((p
= strsep(&buf
, " ")) != NULL
) {
684 /* Prevent from inputing too many things */
692 p
= strsep(&s
[0], ":");
702 ret
= strict_strtoul(major_s
, 10, &major
);
706 ret
= strict_strtoul(minor_s
, 10, &minor
);
710 dev
= MKDEV(major
, minor
);
712 ret
= blkio_check_dev_num(dev
);
722 case BLKIO_POLICY_PROP
:
723 ret
= strict_strtoul(s
[1], 10, &temp
);
724 if (ret
|| (temp
< BLKIO_WEIGHT_MIN
&& temp
> 0) ||
725 temp
> BLKIO_WEIGHT_MAX
)
729 newpn
->fileid
= fileid
;
730 newpn
->val
.weight
= temp
;
732 case BLKIO_POLICY_THROTL
:
734 case BLKIO_THROTL_read_bps_device
:
735 case BLKIO_THROTL_write_bps_device
:
736 ret
= strict_strtoull(s
[1], 10, &bps
);
741 newpn
->fileid
= fileid
;
742 newpn
->val
.bps
= bps
;
744 case BLKIO_THROTL_read_iops_device
:
745 case BLKIO_THROTL_write_iops_device
:
746 ret
= strict_strtoull(s
[1], 10, &iops
);
750 if (iops
> THROTL_IOPS_MAX
)
754 newpn
->fileid
= fileid
;
755 newpn
->val
.iops
= (unsigned int)iops
;
766 unsigned int blkcg_get_weight(struct blkio_cgroup
*blkcg
,
769 struct blkio_policy_node
*pn
;
771 pn
= blkio_policy_search_node(blkcg
, dev
, BLKIO_POLICY_PROP
,
772 BLKIO_PROP_weight_device
);
774 return pn
->val
.weight
;
776 return blkcg
->weight
;
778 EXPORT_SYMBOL_GPL(blkcg_get_weight
);
780 uint64_t blkcg_get_read_bps(struct blkio_cgroup
*blkcg
, dev_t dev
)
782 struct blkio_policy_node
*pn
;
784 pn
= blkio_policy_search_node(blkcg
, dev
, BLKIO_POLICY_THROTL
,
785 BLKIO_THROTL_read_bps_device
);
792 uint64_t blkcg_get_write_bps(struct blkio_cgroup
*blkcg
, dev_t dev
)
794 struct blkio_policy_node
*pn
;
795 pn
= blkio_policy_search_node(blkcg
, dev
, BLKIO_POLICY_THROTL
,
796 BLKIO_THROTL_write_bps_device
);
803 unsigned int blkcg_get_read_iops(struct blkio_cgroup
*blkcg
, dev_t dev
)
805 struct blkio_policy_node
*pn
;
807 pn
= blkio_policy_search_node(blkcg
, dev
, BLKIO_POLICY_THROTL
,
808 BLKIO_THROTL_read_iops_device
);
815 unsigned int blkcg_get_write_iops(struct blkio_cgroup
*blkcg
, dev_t dev
)
817 struct blkio_policy_node
*pn
;
818 pn
= blkio_policy_search_node(blkcg
, dev
, BLKIO_POLICY_THROTL
,
819 BLKIO_THROTL_write_iops_device
);
826 /* Checks whether user asked for deleting a policy rule */
827 static bool blkio_delete_rule_command(struct blkio_policy_node
*pn
)
830 case BLKIO_POLICY_PROP
:
831 if (pn
->val
.weight
== 0)
834 case BLKIO_POLICY_THROTL
:
836 case BLKIO_THROTL_read_bps_device
:
837 case BLKIO_THROTL_write_bps_device
:
838 if (pn
->val
.bps
== 0)
841 case BLKIO_THROTL_read_iops_device
:
842 case BLKIO_THROTL_write_iops_device
:
843 if (pn
->val
.iops
== 0)
854 static void blkio_update_policy_rule(struct blkio_policy_node
*oldpn
,
855 struct blkio_policy_node
*newpn
)
857 switch(oldpn
->plid
) {
858 case BLKIO_POLICY_PROP
:
859 oldpn
->val
.weight
= newpn
->val
.weight
;
861 case BLKIO_POLICY_THROTL
:
862 switch(newpn
->fileid
) {
863 case BLKIO_THROTL_read_bps_device
:
864 case BLKIO_THROTL_write_bps_device
:
865 oldpn
->val
.bps
= newpn
->val
.bps
;
867 case BLKIO_THROTL_read_iops_device
:
868 case BLKIO_THROTL_write_iops_device
:
869 oldpn
->val
.iops
= newpn
->val
.iops
;
878 * Some rules/values in blkg have changed. Propagate those to respective
881 static void blkio_update_blkg_policy(struct blkio_cgroup
*blkcg
,
882 struct blkio_group
*blkg
, struct blkio_policy_node
*pn
)
884 unsigned int weight
, iops
;
888 case BLKIO_POLICY_PROP
:
889 weight
= pn
->val
.weight
? pn
->val
.weight
:
891 blkio_update_group_weight(blkg
, weight
);
893 case BLKIO_POLICY_THROTL
:
895 case BLKIO_THROTL_read_bps_device
:
896 case BLKIO_THROTL_write_bps_device
:
897 bps
= pn
->val
.bps
? pn
->val
.bps
: (-1);
898 blkio_update_group_bps(blkg
, bps
, pn
->fileid
);
900 case BLKIO_THROTL_read_iops_device
:
901 case BLKIO_THROTL_write_iops_device
:
902 iops
= pn
->val
.iops
? pn
->val
.iops
: (-1);
903 blkio_update_group_iops(blkg
, iops
, pn
->fileid
);
913 * A policy node rule has been updated. Propagate this update to all the
914 * block groups which might be affected by this update.
916 static void blkio_update_policy_node_blkg(struct blkio_cgroup
*blkcg
,
917 struct blkio_policy_node
*pn
)
919 struct blkio_group
*blkg
;
920 struct hlist_node
*n
;
922 spin_lock(&blkio_list_lock
);
923 spin_lock_irq(&blkcg
->lock
);
925 hlist_for_each_entry(blkg
, n
, &blkcg
->blkg_list
, blkcg_node
) {
926 if (pn
->dev
!= blkg
->dev
|| pn
->plid
!= blkg
->plid
)
928 blkio_update_blkg_policy(blkcg
, blkg
, pn
);
931 spin_unlock_irq(&blkcg
->lock
);
932 spin_unlock(&blkio_list_lock
);
935 static int blkiocg_file_write(struct cgroup
*cgrp
, struct cftype
*cft
,
940 struct blkio_policy_node
*newpn
, *pn
;
941 struct blkio_cgroup
*blkcg
;
943 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
944 int fileid
= BLKIOFILE_ATTR(cft
->private);
946 buf
= kstrdup(buffer
, GFP_KERNEL
);
950 newpn
= kzalloc(sizeof(*newpn
), GFP_KERNEL
);
956 ret
= blkio_policy_parse_and_set(buf
, newpn
, plid
, fileid
);
960 blkcg
= cgroup_to_blkio_cgroup(cgrp
);
962 spin_lock_irq(&blkcg
->lock
);
964 pn
= blkio_policy_search_node(blkcg
, newpn
->dev
, plid
, fileid
);
966 if (!blkio_delete_rule_command(newpn
)) {
967 blkio_policy_insert_node(blkcg
, newpn
);
970 spin_unlock_irq(&blkcg
->lock
);
971 goto update_io_group
;
974 if (blkio_delete_rule_command(newpn
)) {
975 blkio_policy_delete_node(pn
);
976 spin_unlock_irq(&blkcg
->lock
);
977 goto update_io_group
;
979 spin_unlock_irq(&blkcg
->lock
);
981 blkio_update_policy_rule(pn
, newpn
);
984 blkio_update_policy_node_blkg(blkcg
, newpn
);
995 blkio_print_policy_node(struct seq_file
*m
, struct blkio_policy_node
*pn
)
998 case BLKIO_POLICY_PROP
:
999 if (pn
->fileid
== BLKIO_PROP_weight_device
)
1000 seq_printf(m
, "%u:%u\t%u\n", MAJOR(pn
->dev
),
1001 MINOR(pn
->dev
), pn
->val
.weight
);
1003 case BLKIO_POLICY_THROTL
:
1004 switch(pn
->fileid
) {
1005 case BLKIO_THROTL_read_bps_device
:
1006 case BLKIO_THROTL_write_bps_device
:
1007 seq_printf(m
, "%u:%u\t%llu\n", MAJOR(pn
->dev
),
1008 MINOR(pn
->dev
), pn
->val
.bps
);
1010 case BLKIO_THROTL_read_iops_device
:
1011 case BLKIO_THROTL_write_iops_device
:
1012 seq_printf(m
, "%u:%u\t%u\n", MAJOR(pn
->dev
),
1013 MINOR(pn
->dev
), pn
->val
.iops
);
1022 /* cgroup files which read their data from policy nodes end up here */
1023 static void blkio_read_policy_node_files(struct cftype
*cft
,
1024 struct blkio_cgroup
*blkcg
, struct seq_file
*m
)
1026 struct blkio_policy_node
*pn
;
1028 if (!list_empty(&blkcg
->policy_list
)) {
1029 spin_lock_irq(&blkcg
->lock
);
1030 list_for_each_entry(pn
, &blkcg
->policy_list
, node
) {
1031 if (!pn_matches_cftype(cft
, pn
))
1033 blkio_print_policy_node(m
, pn
);
1035 spin_unlock_irq(&blkcg
->lock
);
1039 static int blkiocg_file_read(struct cgroup
*cgrp
, struct cftype
*cft
,
1042 struct blkio_cgroup
*blkcg
;
1043 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
1044 int name
= BLKIOFILE_ATTR(cft
->private);
1046 blkcg
= cgroup_to_blkio_cgroup(cgrp
);
1049 case BLKIO_POLICY_PROP
:
1051 case BLKIO_PROP_weight_device
:
1052 blkio_read_policy_node_files(cft
, blkcg
, m
);
1058 case BLKIO_POLICY_THROTL
:
1060 case BLKIO_THROTL_read_bps_device
:
1061 case BLKIO_THROTL_write_bps_device
:
1062 case BLKIO_THROTL_read_iops_device
:
1063 case BLKIO_THROTL_write_iops_device
:
1064 blkio_read_policy_node_files(cft
, blkcg
, m
);
1077 static int blkio_read_blkg_stats(struct blkio_cgroup
*blkcg
,
1078 struct cftype
*cft
, struct cgroup_map_cb
*cb
, enum stat_type type
,
1081 struct blkio_group
*blkg
;
1082 struct hlist_node
*n
;
1083 uint64_t cgroup_total
= 0;
1086 hlist_for_each_entry_rcu(blkg
, n
, &blkcg
->blkg_list
, blkcg_node
) {
1088 if (!cftype_blkg_same_policy(cft
, blkg
))
1090 spin_lock_irq(&blkg
->stats_lock
);
1091 cgroup_total
+= blkio_get_stat(blkg
, cb
, blkg
->dev
,
1093 spin_unlock_irq(&blkg
->stats_lock
);
1097 cb
->fill(cb
, "Total", cgroup_total
);
1102 /* All map kind of cgroup file get serviced by this function */
1103 static int blkiocg_file_read_map(struct cgroup
*cgrp
, struct cftype
*cft
,
1104 struct cgroup_map_cb
*cb
)
1106 struct blkio_cgroup
*blkcg
;
1107 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
1108 int name
= BLKIOFILE_ATTR(cft
->private);
1110 blkcg
= cgroup_to_blkio_cgroup(cgrp
);
1113 case BLKIO_POLICY_PROP
:
1115 case BLKIO_PROP_time
:
1116 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1117 BLKIO_STAT_TIME
, 0);
1118 case BLKIO_PROP_sectors
:
1119 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1120 BLKIO_STAT_SECTORS
, 0);
1121 case BLKIO_PROP_io_service_bytes
:
1122 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1123 BLKIO_STAT_SERVICE_BYTES
, 1);
1124 case BLKIO_PROP_io_serviced
:
1125 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1126 BLKIO_STAT_SERVICED
, 1);
1127 case BLKIO_PROP_io_service_time
:
1128 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1129 BLKIO_STAT_SERVICE_TIME
, 1);
1130 case BLKIO_PROP_io_wait_time
:
1131 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1132 BLKIO_STAT_WAIT_TIME
, 1);
1133 case BLKIO_PROP_io_merged
:
1134 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1135 BLKIO_STAT_MERGED
, 1);
1136 case BLKIO_PROP_io_queued
:
1137 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1138 BLKIO_STAT_QUEUED
, 1);
1139 #ifdef CONFIG_DEBUG_BLK_CGROUP
1140 case BLKIO_PROP_unaccounted_time
:
1141 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1142 BLKIO_STAT_UNACCOUNTED_TIME
, 0);
1143 case BLKIO_PROP_dequeue
:
1144 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1145 BLKIO_STAT_DEQUEUE
, 0);
1146 case BLKIO_PROP_avg_queue_size
:
1147 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1148 BLKIO_STAT_AVG_QUEUE_SIZE
, 0);
1149 case BLKIO_PROP_group_wait_time
:
1150 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1151 BLKIO_STAT_GROUP_WAIT_TIME
, 0);
1152 case BLKIO_PROP_idle_time
:
1153 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1154 BLKIO_STAT_IDLE_TIME
, 0);
1155 case BLKIO_PROP_empty_time
:
1156 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1157 BLKIO_STAT_EMPTY_TIME
, 0);
1163 case BLKIO_POLICY_THROTL
:
1165 case BLKIO_THROTL_io_service_bytes
:
1166 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1167 BLKIO_STAT_SERVICE_BYTES
, 1);
1168 case BLKIO_THROTL_io_serviced
:
1169 return blkio_read_blkg_stats(blkcg
, cft
, cb
,
1170 BLKIO_STAT_SERVICED
, 1);
1182 static int blkio_weight_write(struct blkio_cgroup
*blkcg
, u64 val
)
1184 struct blkio_group
*blkg
;
1185 struct hlist_node
*n
;
1186 struct blkio_policy_node
*pn
;
1188 if (val
< BLKIO_WEIGHT_MIN
|| val
> BLKIO_WEIGHT_MAX
)
1191 spin_lock(&blkio_list_lock
);
1192 spin_lock_irq(&blkcg
->lock
);
1193 blkcg
->weight
= (unsigned int)val
;
1195 hlist_for_each_entry(blkg
, n
, &blkcg
->blkg_list
, blkcg_node
) {
1196 pn
= blkio_policy_search_node(blkcg
, blkg
->dev
,
1197 BLKIO_POLICY_PROP
, BLKIO_PROP_weight_device
);
1201 blkio_update_group_weight(blkg
, blkcg
->weight
);
1203 spin_unlock_irq(&blkcg
->lock
);
1204 spin_unlock(&blkio_list_lock
);
1208 static u64
blkiocg_file_read_u64 (struct cgroup
*cgrp
, struct cftype
*cft
) {
1209 struct blkio_cgroup
*blkcg
;
1210 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
1211 int name
= BLKIOFILE_ATTR(cft
->private);
1213 blkcg
= cgroup_to_blkio_cgroup(cgrp
);
1216 case BLKIO_POLICY_PROP
:
1218 case BLKIO_PROP_weight
:
1219 return (u64
)blkcg
->weight
;
1229 blkiocg_file_write_u64(struct cgroup
*cgrp
, struct cftype
*cft
, u64 val
)
1231 struct blkio_cgroup
*blkcg
;
1232 enum blkio_policy_id plid
= BLKIOFILE_POLICY(cft
->private);
1233 int name
= BLKIOFILE_ATTR(cft
->private);
1235 blkcg
= cgroup_to_blkio_cgroup(cgrp
);
1238 case BLKIO_POLICY_PROP
:
1240 case BLKIO_PROP_weight
:
1241 return blkio_weight_write(blkcg
, val
);
1251 struct cftype blkio_files
[] = {
1253 .name
= "weight_device",
1254 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1255 BLKIO_PROP_weight_device
),
1256 .read_seq_string
= blkiocg_file_read
,
1257 .write_string
= blkiocg_file_write
,
1258 .max_write_len
= 256,
1262 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1264 .read_u64
= blkiocg_file_read_u64
,
1265 .write_u64
= blkiocg_file_write_u64
,
1269 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1271 .read_map
= blkiocg_file_read_map
,
1275 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1276 BLKIO_PROP_sectors
),
1277 .read_map
= blkiocg_file_read_map
,
1280 .name
= "io_service_bytes",
1281 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1282 BLKIO_PROP_io_service_bytes
),
1283 .read_map
= blkiocg_file_read_map
,
1286 .name
= "io_serviced",
1287 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1288 BLKIO_PROP_io_serviced
),
1289 .read_map
= blkiocg_file_read_map
,
1292 .name
= "io_service_time",
1293 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1294 BLKIO_PROP_io_service_time
),
1295 .read_map
= blkiocg_file_read_map
,
1298 .name
= "io_wait_time",
1299 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1300 BLKIO_PROP_io_wait_time
),
1301 .read_map
= blkiocg_file_read_map
,
1304 .name
= "io_merged",
1305 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1306 BLKIO_PROP_io_merged
),
1307 .read_map
= blkiocg_file_read_map
,
1310 .name
= "io_queued",
1311 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1312 BLKIO_PROP_io_queued
),
1313 .read_map
= blkiocg_file_read_map
,
1316 .name
= "reset_stats",
1317 .write_u64
= blkiocg_reset_stats
,
1319 #ifdef CONFIG_BLK_DEV_THROTTLING
1321 .name
= "throttle.read_bps_device",
1322 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1323 BLKIO_THROTL_read_bps_device
),
1324 .read_seq_string
= blkiocg_file_read
,
1325 .write_string
= blkiocg_file_write
,
1326 .max_write_len
= 256,
1330 .name
= "throttle.write_bps_device",
1331 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1332 BLKIO_THROTL_write_bps_device
),
1333 .read_seq_string
= blkiocg_file_read
,
1334 .write_string
= blkiocg_file_write
,
1335 .max_write_len
= 256,
1339 .name
= "throttle.read_iops_device",
1340 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1341 BLKIO_THROTL_read_iops_device
),
1342 .read_seq_string
= blkiocg_file_read
,
1343 .write_string
= blkiocg_file_write
,
1344 .max_write_len
= 256,
1348 .name
= "throttle.write_iops_device",
1349 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1350 BLKIO_THROTL_write_iops_device
),
1351 .read_seq_string
= blkiocg_file_read
,
1352 .write_string
= blkiocg_file_write
,
1353 .max_write_len
= 256,
1356 .name
= "throttle.io_service_bytes",
1357 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1358 BLKIO_THROTL_io_service_bytes
),
1359 .read_map
= blkiocg_file_read_map
,
1362 .name
= "throttle.io_serviced",
1363 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL
,
1364 BLKIO_THROTL_io_serviced
),
1365 .read_map
= blkiocg_file_read_map
,
1367 #endif /* CONFIG_BLK_DEV_THROTTLING */
1369 #ifdef CONFIG_DEBUG_BLK_CGROUP
1371 .name
= "avg_queue_size",
1372 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1373 BLKIO_PROP_avg_queue_size
),
1374 .read_map
= blkiocg_file_read_map
,
1377 .name
= "group_wait_time",
1378 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1379 BLKIO_PROP_group_wait_time
),
1380 .read_map
= blkiocg_file_read_map
,
1383 .name
= "idle_time",
1384 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1385 BLKIO_PROP_idle_time
),
1386 .read_map
= blkiocg_file_read_map
,
1389 .name
= "empty_time",
1390 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1391 BLKIO_PROP_empty_time
),
1392 .read_map
= blkiocg_file_read_map
,
1396 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1397 BLKIO_PROP_dequeue
),
1398 .read_map
= blkiocg_file_read_map
,
1401 .name
= "unaccounted_time",
1402 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP
,
1403 BLKIO_PROP_unaccounted_time
),
1404 .read_map
= blkiocg_file_read_map
,
1409 static int blkiocg_populate(struct cgroup_subsys
*subsys
, struct cgroup
*cgroup
)
1411 return cgroup_add_files(cgroup
, subsys
, blkio_files
,
1412 ARRAY_SIZE(blkio_files
));
1415 static void blkiocg_destroy(struct cgroup_subsys
*subsys
, struct cgroup
*cgroup
)
1417 struct blkio_cgroup
*blkcg
= cgroup_to_blkio_cgroup(cgroup
);
1418 unsigned long flags
;
1419 struct blkio_group
*blkg
;
1421 struct blkio_policy_type
*blkiop
;
1422 struct blkio_policy_node
*pn
, *pntmp
;
1426 spin_lock_irqsave(&blkcg
->lock
, flags
);
1428 if (hlist_empty(&blkcg
->blkg_list
)) {
1429 spin_unlock_irqrestore(&blkcg
->lock
, flags
);
1433 blkg
= hlist_entry(blkcg
->blkg_list
.first
, struct blkio_group
,
1435 key
= rcu_dereference(blkg
->key
);
1436 __blkiocg_del_blkio_group(blkg
);
1438 spin_unlock_irqrestore(&blkcg
->lock
, flags
);
1441 * This blkio_group is being unlinked as associated cgroup is
1442 * going away. Let all the IO controlling policies know about
1445 spin_lock(&blkio_list_lock
);
1446 list_for_each_entry(blkiop
, &blkio_list
, list
) {
1447 if (blkiop
->plid
!= blkg
->plid
)
1449 blkiop
->ops
.blkio_unlink_group_fn(key
, blkg
);
1451 spin_unlock(&blkio_list_lock
);
1454 list_for_each_entry_safe(pn
, pntmp
, &blkcg
->policy_list
, node
) {
1455 blkio_policy_delete_node(pn
);
1459 free_css_id(&blkio_subsys
, &blkcg
->css
);
1461 if (blkcg
!= &blkio_root_cgroup
)
1465 static struct cgroup_subsys_state
*
1466 blkiocg_create(struct cgroup_subsys
*subsys
, struct cgroup
*cgroup
)
1468 struct blkio_cgroup
*blkcg
;
1469 struct cgroup
*parent
= cgroup
->parent
;
1472 blkcg
= &blkio_root_cgroup
;
1476 blkcg
= kzalloc(sizeof(*blkcg
), GFP_KERNEL
);
1478 return ERR_PTR(-ENOMEM
);
1480 blkcg
->weight
= BLKIO_WEIGHT_DEFAULT
;
1482 spin_lock_init(&blkcg
->lock
);
1483 INIT_HLIST_HEAD(&blkcg
->blkg_list
);
1485 INIT_LIST_HEAD(&blkcg
->policy_list
);
1490 * We cannot support shared io contexts, as we have no mean to support
1491 * two tasks with the same ioc in two different groups without major rework
1492 * of the main cic data structures. For now we allow a task to change
1493 * its cgroup only if it's the only owner of its ioc.
1495 static int blkiocg_can_attach(struct cgroup_subsys
*subsys
,
1496 struct cgroup
*cgroup
, struct task_struct
*tsk
,
1499 struct io_context
*ioc
;
1502 /* task_lock() is needed to avoid races with exit_io_context() */
1504 ioc
= tsk
->io_context
;
1505 if (ioc
&& atomic_read(&ioc
->nr_tasks
) > 1)
1512 static void blkiocg_attach(struct cgroup_subsys
*subsys
, struct cgroup
*cgroup
,
1513 struct cgroup
*prev
, struct task_struct
*tsk
,
1516 struct io_context
*ioc
;
1519 ioc
= tsk
->io_context
;
1521 ioc
->cgroup_changed
= 1;
1525 void blkio_policy_register(struct blkio_policy_type
*blkiop
)
1527 spin_lock(&blkio_list_lock
);
1528 list_add_tail(&blkiop
->list
, &blkio_list
);
1529 spin_unlock(&blkio_list_lock
);
1531 EXPORT_SYMBOL_GPL(blkio_policy_register
);
1533 void blkio_policy_unregister(struct blkio_policy_type
*blkiop
)
1535 spin_lock(&blkio_list_lock
);
1536 list_del_init(&blkiop
->list
);
1537 spin_unlock(&blkio_list_lock
);
1539 EXPORT_SYMBOL_GPL(blkio_policy_unregister
);
1541 static int __init
init_cgroup_blkio(void)
1543 return cgroup_load_subsys(&blkio_subsys
);
1546 static void __exit
exit_cgroup_blkio(void)
1548 cgroup_unload_subsys(&blkio_subsys
);
1551 module_init(init_cgroup_blkio
);
1552 module_exit(exit_cgroup_blkio
);
1553 MODULE_LICENSE("GPL");