blob: 5e50ca1f5b47734f742efbdf1d498ce9f0fcc90e [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>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080020#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080021#include <linux/delay.h>
22#include "blk-cgroup.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050023
Divyesh Shah84c124d2010-04-09 08:31:19 +020024#define MAX_KEY_LEN 100
25
Vivek Goyal3e252062009-12-04 10:36:42 -050026static DEFINE_SPINLOCK(blkio_list_lock);
27static LIST_HEAD(blkio_list);
Vivek Goyalb1c35762009-12-03 12:59:47 -050028
Vivek Goyal31e4c282009-12-03 12:59:42 -050029struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT };
Vivek Goyal9d6a9862009-12-04 10:36:41 -050030EXPORT_SYMBOL_GPL(blkio_root_cgroup);
31
Ben Blum67523c42010-03-10 15:22:11 -080032static struct cgroup_subsys_state *blkiocg_create(struct cgroup_subsys *,
33 struct cgroup *);
Tejun Heobb9d97b2011-12-12 18:12:21 -080034static int blkiocg_can_attach(struct cgroup_subsys *, struct cgroup *,
35 struct cgroup_taskset *);
36static void blkiocg_attach(struct cgroup_subsys *, struct cgroup *,
37 struct cgroup_taskset *);
Ben Blum67523c42010-03-10 15:22:11 -080038static void blkiocg_destroy(struct cgroup_subsys *, struct cgroup *);
39static int blkiocg_populate(struct cgroup_subsys *, struct cgroup *);
40
Vivek Goyal062a6442010-09-15 17:06:33 -040041/* for encoding cft->private value on file */
42#define BLKIOFILE_PRIVATE(x, val) (((x) << 16) | (val))
43/* What policy owns the file, proportional or throttle */
44#define BLKIOFILE_POLICY(val) (((val) >> 16) & 0xffff)
45#define BLKIOFILE_ATTR(val) ((val) & 0xffff)
46
Ben Blum67523c42010-03-10 15:22:11 -080047struct cgroup_subsys blkio_subsys = {
48 .name = "blkio",
49 .create = blkiocg_create,
Tejun Heobb9d97b2011-12-12 18:12:21 -080050 .can_attach = blkiocg_can_attach,
51 .attach = blkiocg_attach,
Ben Blum67523c42010-03-10 15:22:11 -080052 .destroy = blkiocg_destroy,
53 .populate = blkiocg_populate,
Ben Blum67523c42010-03-10 15:22:11 -080054 .subsys_id = blkio_subsys_id,
Ben Blum67523c42010-03-10 15:22:11 -080055 .use_id = 1,
56 .module = THIS_MODULE,
57};
58EXPORT_SYMBOL_GPL(blkio_subsys);
59
Gui Jianfeng34d0f172010-04-13 16:05:49 +080060static inline void blkio_policy_insert_node(struct blkio_cgroup *blkcg,
61 struct blkio_policy_node *pn)
62{
63 list_add(&pn->node, &blkcg->policy_list);
64}
65
Vivek Goyal062a6442010-09-15 17:06:33 -040066static inline bool cftype_blkg_same_policy(struct cftype *cft,
67 struct blkio_group *blkg)
68{
69 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
70
71 if (blkg->plid == plid)
72 return 1;
73
74 return 0;
75}
76
77/* Determines if policy node matches cgroup file being accessed */
78static inline bool pn_matches_cftype(struct cftype *cft,
79 struct blkio_policy_node *pn)
80{
81 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
82 int fileid = BLKIOFILE_ATTR(cft->private);
83
84 return (plid == pn->plid && fileid == pn->fileid);
85}
86
Gui Jianfeng34d0f172010-04-13 16:05:49 +080087/* Must be called with blkcg->lock held */
88static inline void blkio_policy_delete_node(struct blkio_policy_node *pn)
89{
90 list_del(&pn->node);
91}
92
93/* Must be called with blkcg->lock held */
94static struct blkio_policy_node *
Vivek Goyal062a6442010-09-15 17:06:33 -040095blkio_policy_search_node(const struct blkio_cgroup *blkcg, dev_t dev,
96 enum blkio_policy_id plid, int fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +080097{
98 struct blkio_policy_node *pn;
99
100 list_for_each_entry(pn, &blkcg->policy_list, node) {
Vivek Goyal062a6442010-09-15 17:06:33 -0400101 if (pn->dev == dev && pn->plid == plid && pn->fileid == fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800102 return pn;
103 }
104
105 return NULL;
106}
107
Vivek Goyal31e4c282009-12-03 12:59:42 -0500108struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup)
109{
110 return container_of(cgroup_subsys_state(cgroup, blkio_subsys_id),
111 struct blkio_cgroup, css);
112}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500113EXPORT_SYMBOL_GPL(cgroup_to_blkio_cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500114
Vivek Goyal70087dc2011-05-16 15:24:08 +0200115struct blkio_cgroup *task_blkio_cgroup(struct task_struct *tsk)
116{
117 return container_of(task_subsys_state(tsk, blkio_subsys_id),
118 struct blkio_cgroup, css);
119}
120EXPORT_SYMBOL_GPL(task_blkio_cgroup);
121
Vivek Goyal062a6442010-09-15 17:06:33 -0400122static inline void
123blkio_update_group_weight(struct blkio_group *blkg, unsigned int weight)
124{
125 struct blkio_policy_type *blkiop;
126
127 list_for_each_entry(blkiop, &blkio_list, list) {
128 /* If this policy does not own the blkg, do not send updates */
129 if (blkiop->plid != blkg->plid)
130 continue;
131 if (blkiop->ops.blkio_update_group_weight_fn)
Tejun Heoca32aef2012-03-05 13:15:03 -0800132 blkiop->ops.blkio_update_group_weight_fn(blkg->q,
Vivek Goyalfe071432010-10-01 14:49:49 +0200133 blkg, weight);
Vivek Goyal062a6442010-09-15 17:06:33 -0400134 }
135}
136
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400137static inline void blkio_update_group_bps(struct blkio_group *blkg, u64 bps,
138 int fileid)
139{
140 struct blkio_policy_type *blkiop;
141
142 list_for_each_entry(blkiop, &blkio_list, list) {
143
144 /* If this policy does not own the blkg, do not send updates */
145 if (blkiop->plid != blkg->plid)
146 continue;
147
148 if (fileid == BLKIO_THROTL_read_bps_device
149 && blkiop->ops.blkio_update_group_read_bps_fn)
Tejun Heoca32aef2012-03-05 13:15:03 -0800150 blkiop->ops.blkio_update_group_read_bps_fn(blkg->q,
Vivek Goyalfe071432010-10-01 14:49:49 +0200151 blkg, bps);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400152
153 if (fileid == BLKIO_THROTL_write_bps_device
154 && blkiop->ops.blkio_update_group_write_bps_fn)
Tejun Heoca32aef2012-03-05 13:15:03 -0800155 blkiop->ops.blkio_update_group_write_bps_fn(blkg->q,
Vivek Goyalfe071432010-10-01 14:49:49 +0200156 blkg, bps);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400157 }
158}
159
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400160static inline void blkio_update_group_iops(struct blkio_group *blkg,
161 unsigned int iops, int fileid)
162{
163 struct blkio_policy_type *blkiop;
164
165 list_for_each_entry(blkiop, &blkio_list, list) {
166
167 /* If this policy does not own the blkg, do not send updates */
168 if (blkiop->plid != blkg->plid)
169 continue;
170
171 if (fileid == BLKIO_THROTL_read_iops_device
172 && blkiop->ops.blkio_update_group_read_iops_fn)
Tejun Heoca32aef2012-03-05 13:15:03 -0800173 blkiop->ops.blkio_update_group_read_iops_fn(blkg->q,
Vivek Goyalfe071432010-10-01 14:49:49 +0200174 blkg, iops);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400175
176 if (fileid == BLKIO_THROTL_write_iops_device
177 && blkiop->ops.blkio_update_group_write_iops_fn)
Tejun Heoca32aef2012-03-05 13:15:03 -0800178 blkiop->ops.blkio_update_group_write_iops_fn(blkg->q,
Vivek Goyalfe071432010-10-01 14:49:49 +0200179 blkg,iops);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400180 }
181}
182
Divyesh Shah91952912010-04-01 15:01:41 -0700183/*
184 * Add to the appropriate stat variable depending on the request type.
185 * This should be called with the blkg->stats_lock held.
186 */
Divyesh Shah84c124d2010-04-09 08:31:19 +0200187static void blkio_add_stat(uint64_t *stat, uint64_t add, bool direction,
188 bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700189{
Divyesh Shah84c124d2010-04-09 08:31:19 +0200190 if (direction)
191 stat[BLKIO_STAT_WRITE] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700192 else
Divyesh Shah84c124d2010-04-09 08:31:19 +0200193 stat[BLKIO_STAT_READ] += add;
194 if (sync)
195 stat[BLKIO_STAT_SYNC] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700196 else
Divyesh Shah84c124d2010-04-09 08:31:19 +0200197 stat[BLKIO_STAT_ASYNC] += add;
Divyesh Shah91952912010-04-01 15:01:41 -0700198}
199
Divyesh Shahcdc11842010-04-08 21:15:10 -0700200/*
201 * Decrements the appropriate stat variable if non-zero depending on the
202 * request type. Panics on value being zero.
203 * This should be called with the blkg->stats_lock held.
204 */
205static void blkio_check_and_dec_stat(uint64_t *stat, bool direction, bool sync)
206{
207 if (direction) {
208 BUG_ON(stat[BLKIO_STAT_WRITE] == 0);
209 stat[BLKIO_STAT_WRITE]--;
210 } else {
211 BUG_ON(stat[BLKIO_STAT_READ] == 0);
212 stat[BLKIO_STAT_READ]--;
213 }
214 if (sync) {
215 BUG_ON(stat[BLKIO_STAT_SYNC] == 0);
216 stat[BLKIO_STAT_SYNC]--;
217 } else {
218 BUG_ON(stat[BLKIO_STAT_ASYNC] == 0);
219 stat[BLKIO_STAT_ASYNC]--;
220 }
221}
222
223#ifdef CONFIG_DEBUG_BLK_CGROUP
Divyesh Shah812df482010-04-08 21:15:35 -0700224/* This should be called with the blkg->stats_lock held. */
225static void blkio_set_start_group_wait_time(struct blkio_group *blkg,
226 struct blkio_group *curr_blkg)
227{
228 if (blkio_blkg_waiting(&blkg->stats))
229 return;
230 if (blkg == curr_blkg)
231 return;
232 blkg->stats.start_group_wait_time = sched_clock();
233 blkio_mark_blkg_waiting(&blkg->stats);
234}
235
236/* This should be called with the blkg->stats_lock held. */
237static void blkio_update_group_wait_time(struct blkio_group_stats *stats)
238{
239 unsigned long long now;
240
241 if (!blkio_blkg_waiting(stats))
242 return;
243
244 now = sched_clock();
245 if (time_after64(now, stats->start_group_wait_time))
246 stats->group_wait_time += now - stats->start_group_wait_time;
247 blkio_clear_blkg_waiting(stats);
248}
249
250/* This should be called with the blkg->stats_lock held. */
251static void blkio_end_empty_time(struct blkio_group_stats *stats)
252{
253 unsigned long long now;
254
255 if (!blkio_blkg_empty(stats))
256 return;
257
258 now = sched_clock();
259 if (time_after64(now, stats->start_empty_time))
260 stats->empty_time += now - stats->start_empty_time;
261 blkio_clear_blkg_empty(stats);
262}
263
264void blkiocg_update_set_idle_time_stats(struct blkio_group *blkg)
265{
266 unsigned long flags;
267
268 spin_lock_irqsave(&blkg->stats_lock, flags);
269 BUG_ON(blkio_blkg_idling(&blkg->stats));
270 blkg->stats.start_idle_time = sched_clock();
271 blkio_mark_blkg_idling(&blkg->stats);
272 spin_unlock_irqrestore(&blkg->stats_lock, flags);
273}
274EXPORT_SYMBOL_GPL(blkiocg_update_set_idle_time_stats);
275
276void blkiocg_update_idle_time_stats(struct blkio_group *blkg)
277{
278 unsigned long flags;
279 unsigned long long now;
280 struct blkio_group_stats *stats;
281
282 spin_lock_irqsave(&blkg->stats_lock, flags);
283 stats = &blkg->stats;
284 if (blkio_blkg_idling(stats)) {
285 now = sched_clock();
286 if (time_after64(now, stats->start_idle_time))
287 stats->idle_time += now - stats->start_idle_time;
288 blkio_clear_blkg_idling(stats);
289 }
290 spin_unlock_irqrestore(&blkg->stats_lock, flags);
291}
292EXPORT_SYMBOL_GPL(blkiocg_update_idle_time_stats);
293
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200294void blkiocg_update_avg_queue_size_stats(struct blkio_group *blkg)
Divyesh Shahcdc11842010-04-08 21:15:10 -0700295{
296 unsigned long flags;
297 struct blkio_group_stats *stats;
298
299 spin_lock_irqsave(&blkg->stats_lock, flags);
300 stats = &blkg->stats;
301 stats->avg_queue_size_sum +=
302 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_READ] +
303 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_WRITE];
304 stats->avg_queue_size_samples++;
Divyesh Shah812df482010-04-08 21:15:35 -0700305 blkio_update_group_wait_time(stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700306 spin_unlock_irqrestore(&blkg->stats_lock, flags);
307}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200308EXPORT_SYMBOL_GPL(blkiocg_update_avg_queue_size_stats);
309
Vivek Goyale5ff0822010-04-26 19:25:11 +0200310void blkiocg_set_start_empty_time(struct blkio_group *blkg)
Divyesh Shah28baf442010-04-14 11:22:38 +0200311{
312 unsigned long flags;
313 struct blkio_group_stats *stats;
314
315 spin_lock_irqsave(&blkg->stats_lock, flags);
316 stats = &blkg->stats;
317
318 if (stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_READ] ||
319 stats->stat_arr[BLKIO_STAT_QUEUED][BLKIO_STAT_WRITE]) {
320 spin_unlock_irqrestore(&blkg->stats_lock, flags);
321 return;
322 }
323
324 /*
Vivek Goyale5ff0822010-04-26 19:25:11 +0200325 * group is already marked empty. This can happen if cfqq got new
326 * request in parent group and moved to this group while being added
327 * to service tree. Just ignore the event and move on.
Divyesh Shah28baf442010-04-14 11:22:38 +0200328 */
Vivek Goyale5ff0822010-04-26 19:25:11 +0200329 if(blkio_blkg_empty(stats)) {
330 spin_unlock_irqrestore(&blkg->stats_lock, flags);
331 return;
332 }
333
Divyesh Shah28baf442010-04-14 11:22:38 +0200334 stats->start_empty_time = sched_clock();
335 blkio_mark_blkg_empty(stats);
336 spin_unlock_irqrestore(&blkg->stats_lock, flags);
337}
338EXPORT_SYMBOL_GPL(blkiocg_set_start_empty_time);
339
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200340void blkiocg_update_dequeue_stats(struct blkio_group *blkg,
341 unsigned long dequeue)
342{
343 blkg->stats.dequeue += dequeue;
344}
345EXPORT_SYMBOL_GPL(blkiocg_update_dequeue_stats);
Divyesh Shah812df482010-04-08 21:15:35 -0700346#else
347static inline void blkio_set_start_group_wait_time(struct blkio_group *blkg,
348 struct blkio_group *curr_blkg) {}
349static inline void blkio_end_empty_time(struct blkio_group_stats *stats) {}
Divyesh Shahcdc11842010-04-08 21:15:10 -0700350#endif
351
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200352void blkiocg_update_io_add_stats(struct blkio_group *blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -0700353 struct blkio_group *curr_blkg, bool direction,
354 bool sync)
355{
356 unsigned long flags;
357
358 spin_lock_irqsave(&blkg->stats_lock, flags);
359 blkio_add_stat(blkg->stats.stat_arr[BLKIO_STAT_QUEUED], 1, direction,
360 sync);
Divyesh Shah812df482010-04-08 21:15:35 -0700361 blkio_end_empty_time(&blkg->stats);
362 blkio_set_start_group_wait_time(blkg, curr_blkg);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700363 spin_unlock_irqrestore(&blkg->stats_lock, flags);
364}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200365EXPORT_SYMBOL_GPL(blkiocg_update_io_add_stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700366
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200367void blkiocg_update_io_remove_stats(struct blkio_group *blkg,
Divyesh Shahcdc11842010-04-08 21:15:10 -0700368 bool direction, bool sync)
369{
370 unsigned long flags;
371
372 spin_lock_irqsave(&blkg->stats_lock, flags);
373 blkio_check_and_dec_stat(blkg->stats.stat_arr[BLKIO_STAT_QUEUED],
374 direction, sync);
375 spin_unlock_irqrestore(&blkg->stats_lock, flags);
376}
Divyesh Shaha11cdaa2010-04-13 19:59:17 +0200377EXPORT_SYMBOL_GPL(blkiocg_update_io_remove_stats);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700378
Justin TerAvest167400d2011-03-12 16:54:00 +0100379void blkiocg_update_timeslice_used(struct blkio_group *blkg, unsigned long time,
380 unsigned long unaccounted_time)
Vivek Goyal22084192009-12-03 12:59:49 -0500381{
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700382 unsigned long flags;
383
384 spin_lock_irqsave(&blkg->stats_lock, flags);
385 blkg->stats.time += time;
Vivek Goyala23e6862011-05-19 15:38:20 -0400386#ifdef CONFIG_DEBUG_BLK_CGROUP
Justin TerAvest167400d2011-03-12 16:54:00 +0100387 blkg->stats.unaccounted_time += unaccounted_time;
Vivek Goyala23e6862011-05-19 15:38:20 -0400388#endif
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700389 spin_unlock_irqrestore(&blkg->stats_lock, flags);
Vivek Goyal22084192009-12-03 12:59:49 -0500390}
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700391EXPORT_SYMBOL_GPL(blkiocg_update_timeslice_used);
Vivek Goyal22084192009-12-03 12:59:49 -0500392
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400393/*
394 * should be called under rcu read lock or queue lock to make sure blkg pointer
395 * is valid.
396 */
Divyesh Shah84c124d2010-04-09 08:31:19 +0200397void blkiocg_update_dispatch_stats(struct blkio_group *blkg,
398 uint64_t bytes, bool direction, bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700399{
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400400 struct blkio_group_stats_cpu *stats_cpu;
Vivek Goyal575969a2011-05-19 15:38:29 -0400401 unsigned long flags;
402
403 /*
404 * Disabling interrupts to provide mutual exclusion between two
405 * writes on same cpu. It probably is not needed for 64bit. Not
406 * optimizing that case yet.
407 */
408 local_irq_save(flags);
Divyesh Shah91952912010-04-01 15:01:41 -0700409
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400410 stats_cpu = this_cpu_ptr(blkg->stats_cpu);
411
Vivek Goyal575969a2011-05-19 15:38:29 -0400412 u64_stats_update_begin(&stats_cpu->syncp);
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400413 stats_cpu->sectors += bytes >> 9;
414 blkio_add_stat(stats_cpu->stat_arr_cpu[BLKIO_STAT_CPU_SERVICED],
415 1, direction, sync);
416 blkio_add_stat(stats_cpu->stat_arr_cpu[BLKIO_STAT_CPU_SERVICE_BYTES],
417 bytes, direction, sync);
Vivek Goyal575969a2011-05-19 15:38:29 -0400418 u64_stats_update_end(&stats_cpu->syncp);
419 local_irq_restore(flags);
Divyesh Shah91952912010-04-01 15:01:41 -0700420}
Divyesh Shah84c124d2010-04-09 08:31:19 +0200421EXPORT_SYMBOL_GPL(blkiocg_update_dispatch_stats);
Divyesh Shah91952912010-04-01 15:01:41 -0700422
Divyesh Shah84c124d2010-04-09 08:31:19 +0200423void blkiocg_update_completion_stats(struct blkio_group *blkg,
424 uint64_t start_time, uint64_t io_start_time, bool direction, bool sync)
Divyesh Shah91952912010-04-01 15:01:41 -0700425{
426 struct blkio_group_stats *stats;
427 unsigned long flags;
428 unsigned long long now = sched_clock();
429
430 spin_lock_irqsave(&blkg->stats_lock, flags);
431 stats = &blkg->stats;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200432 if (time_after64(now, io_start_time))
433 blkio_add_stat(stats->stat_arr[BLKIO_STAT_SERVICE_TIME],
434 now - io_start_time, direction, sync);
435 if (time_after64(io_start_time, start_time))
436 blkio_add_stat(stats->stat_arr[BLKIO_STAT_WAIT_TIME],
437 io_start_time - start_time, direction, sync);
Divyesh Shah91952912010-04-01 15:01:41 -0700438 spin_unlock_irqrestore(&blkg->stats_lock, flags);
439}
Divyesh Shah84c124d2010-04-09 08:31:19 +0200440EXPORT_SYMBOL_GPL(blkiocg_update_completion_stats);
Divyesh Shah91952912010-04-01 15:01:41 -0700441
Vivek Goyal317389a2011-05-23 10:02:19 +0200442/* Merged stats are per cpu. */
Divyesh Shah812d4022010-04-08 21:14:23 -0700443void blkiocg_update_io_merged_stats(struct blkio_group *blkg, bool direction,
444 bool sync)
445{
Vivek Goyal317389a2011-05-23 10:02:19 +0200446 struct blkio_group_stats_cpu *stats_cpu;
Divyesh Shah812d4022010-04-08 21:14:23 -0700447 unsigned long flags;
448
Vivek Goyal317389a2011-05-23 10:02:19 +0200449 /*
450 * Disabling interrupts to provide mutual exclusion between two
451 * writes on same cpu. It probably is not needed for 64bit. Not
452 * optimizing that case yet.
453 */
454 local_irq_save(flags);
455
456 stats_cpu = this_cpu_ptr(blkg->stats_cpu);
457
458 u64_stats_update_begin(&stats_cpu->syncp);
459 blkio_add_stat(stats_cpu->stat_arr_cpu[BLKIO_STAT_CPU_MERGED], 1,
460 direction, sync);
461 u64_stats_update_end(&stats_cpu->syncp);
462 local_irq_restore(flags);
Divyesh Shah812d4022010-04-08 21:14:23 -0700463}
464EXPORT_SYMBOL_GPL(blkiocg_update_io_merged_stats);
465
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400466/*
467 * This function allocates the per cpu stats for blkio_group. Should be called
468 * from sleepable context as alloc_per_cpu() requires that.
469 */
470int blkio_alloc_blkg_stats(struct blkio_group *blkg)
471{
472 /* Allocate memory for per cpu stats */
473 blkg->stats_cpu = alloc_percpu(struct blkio_group_stats_cpu);
474 if (!blkg->stats_cpu)
475 return -ENOMEM;
476 return 0;
477}
478EXPORT_SYMBOL_GPL(blkio_alloc_blkg_stats);
479
Vivek Goyal31e4c282009-12-03 12:59:42 -0500480void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
Tejun Heoca32aef2012-03-05 13:15:03 -0800481 struct blkio_group *blkg, struct request_queue *q, dev_t dev,
Vivek Goyal062a6442010-09-15 17:06:33 -0400482 enum blkio_policy_id plid)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500483{
484 unsigned long flags;
485
486 spin_lock_irqsave(&blkcg->lock, flags);
Divyesh Shah8d2a91f2010-04-16 08:10:51 +0200487 spin_lock_init(&blkg->stats_lock);
Tejun Heoca32aef2012-03-05 13:15:03 -0800488 rcu_assign_pointer(blkg->q, q);
Vivek Goyalb1c35762009-12-03 12:59:47 -0500489 blkg->blkcg_id = css_id(&blkcg->css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500490 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
Vivek Goyal062a6442010-09-15 17:06:33 -0400491 blkg->plid = plid;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500492 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyal2868ef72009-12-03 12:59:48 -0500493 /* Need to take css reference ? */
494 cgroup_path(blkcg->css.cgroup, blkg->path, sizeof(blkg->path));
Vivek Goyal22084192009-12-03 12:59:49 -0500495 blkg->dev = dev;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500496}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500497EXPORT_SYMBOL_GPL(blkiocg_add_blkio_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500498
Vivek Goyalb1c35762009-12-03 12:59:47 -0500499static void __blkiocg_del_blkio_group(struct blkio_group *blkg)
500{
501 hlist_del_init_rcu(&blkg->blkcg_node);
502 blkg->blkcg_id = 0;
503}
504
505/*
506 * returns 0 if blkio_group was still on cgroup list. Otherwise returns 1
507 * indicating that blk_group was unhashed by the time we got to it.
508 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500509int blkiocg_del_blkio_group(struct blkio_group *blkg)
510{
Vivek Goyalb1c35762009-12-03 12:59:47 -0500511 struct blkio_cgroup *blkcg;
512 unsigned long flags;
513 struct cgroup_subsys_state *css;
514 int ret = 1;
515
516 rcu_read_lock();
517 css = css_lookup(&blkio_subsys, blkg->blkcg_id);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200518 if (css) {
519 blkcg = container_of(css, struct blkio_cgroup, css);
520 spin_lock_irqsave(&blkcg->lock, flags);
521 if (!hlist_unhashed(&blkg->blkcg_node)) {
522 __blkiocg_del_blkio_group(blkg);
523 ret = 0;
524 }
525 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -0500526 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200527
Vivek Goyalb1c35762009-12-03 12:59:47 -0500528 rcu_read_unlock();
529 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500530}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500531EXPORT_SYMBOL_GPL(blkiocg_del_blkio_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500532
533/* called under rcu_read_lock(). */
Tejun Heoca32aef2012-03-05 13:15:03 -0800534struct blkio_group *blkiocg_lookup_group(struct blkio_cgroup *blkcg,
535 struct request_queue *q,
536 enum blkio_policy_id plid)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500537{
538 struct blkio_group *blkg;
539 struct hlist_node *n;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500540
Tejun Heoca32aef2012-03-05 13:15:03 -0800541 hlist_for_each_entry_rcu(blkg, n, &blkcg->blkg_list, blkcg_node)
542 if (blkg->q == q && blkg->plid == plid)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500543 return blkg;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500544 return NULL;
545}
Vivek Goyal9d6a9862009-12-04 10:36:41 -0500546EXPORT_SYMBOL_GPL(blkiocg_lookup_group);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500547
Tejun Heo72e06c22012-03-05 13:15:00 -0800548void blkg_destroy_all(struct request_queue *q)
549{
550 struct blkio_policy_type *pol;
551
552 while (true) {
553 bool done = true;
554
555 spin_lock(&blkio_list_lock);
556 spin_lock_irq(q->queue_lock);
557
558 /*
559 * clear_queue_fn() might return with non-empty group list
560 * if it raced cgroup removal and lost. cgroup removal is
561 * guaranteed to make forward progress and retrying after a
562 * while is enough. This ugliness is scheduled to be
563 * removed after locking update.
564 */
565 list_for_each_entry(pol, &blkio_list, list)
566 if (!pol->ops.blkio_clear_queue_fn(q))
567 done = false;
568
569 spin_unlock_irq(q->queue_lock);
570 spin_unlock(&blkio_list_lock);
571
572 if (done)
573 break;
574
575 msleep(10); /* just some random duration I like */
576 }
577}
578
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400579static void blkio_reset_stats_cpu(struct blkio_group *blkg)
580{
581 struct blkio_group_stats_cpu *stats_cpu;
582 int i, j, k;
583 /*
584 * Note: On 64 bit arch this should not be an issue. This has the
585 * possibility of returning some inconsistent value on 32bit arch
586 * as 64bit update on 32bit is non atomic. Taking care of this
587 * corner case makes code very complicated, like sending IPIs to
588 * cpus, taking care of stats of offline cpus etc.
589 *
590 * reset stats is anyway more of a debug feature and this sounds a
591 * corner case. So I am not complicating the code yet until and
592 * unless this becomes a real issue.
593 */
594 for_each_possible_cpu(i) {
595 stats_cpu = per_cpu_ptr(blkg->stats_cpu, i);
596 stats_cpu->sectors = 0;
597 for(j = 0; j < BLKIO_STAT_CPU_NR; j++)
598 for (k = 0; k < BLKIO_STAT_TOTAL; k++)
599 stats_cpu->stat_arr_cpu[j][k] = 0;
600 }
601}
602
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700603static int
Divyesh Shah84c124d2010-04-09 08:31:19 +0200604blkiocg_reset_stats(struct cgroup *cgroup, struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700605{
606 struct blkio_cgroup *blkcg;
607 struct blkio_group *blkg;
Divyesh Shah812df482010-04-08 21:15:35 -0700608 struct blkio_group_stats *stats;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700609 struct hlist_node *n;
Divyesh Shahcdc11842010-04-08 21:15:10 -0700610 uint64_t queued[BLKIO_STAT_TOTAL];
611 int i;
Divyesh Shah812df482010-04-08 21:15:35 -0700612#ifdef CONFIG_DEBUG_BLK_CGROUP
613 bool idling, waiting, empty;
614 unsigned long long now = sched_clock();
615#endif
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700616
617 blkcg = cgroup_to_blkio_cgroup(cgroup);
618 spin_lock_irq(&blkcg->lock);
619 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
620 spin_lock(&blkg->stats_lock);
Divyesh Shah812df482010-04-08 21:15:35 -0700621 stats = &blkg->stats;
622#ifdef CONFIG_DEBUG_BLK_CGROUP
623 idling = blkio_blkg_idling(stats);
624 waiting = blkio_blkg_waiting(stats);
625 empty = blkio_blkg_empty(stats);
626#endif
Divyesh Shahcdc11842010-04-08 21:15:10 -0700627 for (i = 0; i < BLKIO_STAT_TOTAL; i++)
Divyesh Shah812df482010-04-08 21:15:35 -0700628 queued[i] = stats->stat_arr[BLKIO_STAT_QUEUED][i];
629 memset(stats, 0, sizeof(struct blkio_group_stats));
Divyesh Shahcdc11842010-04-08 21:15:10 -0700630 for (i = 0; i < BLKIO_STAT_TOTAL; i++)
Divyesh Shah812df482010-04-08 21:15:35 -0700631 stats->stat_arr[BLKIO_STAT_QUEUED][i] = queued[i];
632#ifdef CONFIG_DEBUG_BLK_CGROUP
633 if (idling) {
634 blkio_mark_blkg_idling(stats);
635 stats->start_idle_time = now;
636 }
637 if (waiting) {
638 blkio_mark_blkg_waiting(stats);
639 stats->start_group_wait_time = now;
640 }
641 if (empty) {
642 blkio_mark_blkg_empty(stats);
643 stats->start_empty_time = now;
644 }
645#endif
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700646 spin_unlock(&blkg->stats_lock);
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400647
648 /* Reset Per cpu stats which don't take blkg->stats_lock */
649 blkio_reset_stats_cpu(blkg);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700650 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400651
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700652 spin_unlock_irq(&blkcg->lock);
653 return 0;
654}
655
Divyesh Shah84c124d2010-04-09 08:31:19 +0200656static void blkio_get_key_name(enum stat_sub_type type, dev_t dev, char *str,
657 int chars_left, bool diskname_only)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700658{
Divyesh Shah84c124d2010-04-09 08:31:19 +0200659 snprintf(str, chars_left, "%d:%d", MAJOR(dev), MINOR(dev));
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700660 chars_left -= strlen(str);
661 if (chars_left <= 0) {
662 printk(KERN_WARNING
663 "Possibly incorrect cgroup stat display format");
664 return;
665 }
Divyesh Shah84c124d2010-04-09 08:31:19 +0200666 if (diskname_only)
667 return;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700668 switch (type) {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200669 case BLKIO_STAT_READ:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700670 strlcat(str, " Read", chars_left);
671 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200672 case BLKIO_STAT_WRITE:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700673 strlcat(str, " Write", chars_left);
674 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200675 case BLKIO_STAT_SYNC:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700676 strlcat(str, " Sync", chars_left);
677 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200678 case BLKIO_STAT_ASYNC:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700679 strlcat(str, " Async", chars_left);
680 break;
Divyesh Shah84c124d2010-04-09 08:31:19 +0200681 case BLKIO_STAT_TOTAL:
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700682 strlcat(str, " Total", chars_left);
683 break;
684 default:
685 strlcat(str, " Invalid", chars_left);
686 }
687}
688
Divyesh Shah84c124d2010-04-09 08:31:19 +0200689static uint64_t blkio_fill_stat(char *str, int chars_left, uint64_t val,
690 struct cgroup_map_cb *cb, dev_t dev)
691{
692 blkio_get_key_name(0, dev, str, chars_left, true);
693 cb->fill(cb, str, val);
694 return val;
695}
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700696
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400697
698static uint64_t blkio_read_stat_cpu(struct blkio_group *blkg,
699 enum stat_type_cpu type, enum stat_sub_type sub_type)
700{
701 int cpu;
702 struct blkio_group_stats_cpu *stats_cpu;
Vivek Goyal575969a2011-05-19 15:38:29 -0400703 u64 val = 0, tval;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400704
705 for_each_possible_cpu(cpu) {
Vivek Goyal575969a2011-05-19 15:38:29 -0400706 unsigned int start;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400707 stats_cpu = per_cpu_ptr(blkg->stats_cpu, cpu);
708
Vivek Goyal575969a2011-05-19 15:38:29 -0400709 do {
710 start = u64_stats_fetch_begin(&stats_cpu->syncp);
711 if (type == BLKIO_STAT_CPU_SECTORS)
712 tval = stats_cpu->sectors;
713 else
714 tval = stats_cpu->stat_arr_cpu[type][sub_type];
715 } while(u64_stats_fetch_retry(&stats_cpu->syncp, start));
716
717 val += tval;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400718 }
719
720 return val;
721}
722
723static uint64_t blkio_get_stat_cpu(struct blkio_group *blkg,
724 struct cgroup_map_cb *cb, dev_t dev, enum stat_type_cpu type)
725{
726 uint64_t disk_total, val;
727 char key_str[MAX_KEY_LEN];
728 enum stat_sub_type sub_type;
729
730 if (type == BLKIO_STAT_CPU_SECTORS) {
731 val = blkio_read_stat_cpu(blkg, type, 0);
732 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1, val, cb, dev);
733 }
734
735 for (sub_type = BLKIO_STAT_READ; sub_type < BLKIO_STAT_TOTAL;
736 sub_type++) {
737 blkio_get_key_name(sub_type, dev, key_str, MAX_KEY_LEN, false);
738 val = blkio_read_stat_cpu(blkg, type, sub_type);
739 cb->fill(cb, key_str, val);
740 }
741
742 disk_total = blkio_read_stat_cpu(blkg, type, BLKIO_STAT_READ) +
743 blkio_read_stat_cpu(blkg, type, BLKIO_STAT_WRITE);
744
745 blkio_get_key_name(BLKIO_STAT_TOTAL, dev, key_str, MAX_KEY_LEN, false);
746 cb->fill(cb, key_str, disk_total);
747 return disk_total;
748}
749
Divyesh Shah84c124d2010-04-09 08:31:19 +0200750/* This should be called with blkg->stats_lock held */
751static uint64_t blkio_get_stat(struct blkio_group *blkg,
752 struct cgroup_map_cb *cb, dev_t dev, enum stat_type type)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700753{
754 uint64_t disk_total;
755 char key_str[MAX_KEY_LEN];
Divyesh Shah84c124d2010-04-09 08:31:19 +0200756 enum stat_sub_type sub_type;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700757
Divyesh Shah84c124d2010-04-09 08:31:19 +0200758 if (type == BLKIO_STAT_TIME)
759 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
760 blkg->stats.time, cb, dev);
Justin TerAvest9026e522011-03-22 21:26:54 +0100761#ifdef CONFIG_DEBUG_BLK_CGROUP
Justin TerAvest167400d2011-03-12 16:54:00 +0100762 if (type == BLKIO_STAT_UNACCOUNTED_TIME)
763 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
764 blkg->stats.unaccounted_time, cb, dev);
Divyesh Shahcdc11842010-04-08 21:15:10 -0700765 if (type == BLKIO_STAT_AVG_QUEUE_SIZE) {
766 uint64_t sum = blkg->stats.avg_queue_size_sum;
767 uint64_t samples = blkg->stats.avg_queue_size_samples;
768 if (samples)
769 do_div(sum, samples);
770 else
771 sum = 0;
772 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1, sum, cb, dev);
773 }
Divyesh Shah812df482010-04-08 21:15:35 -0700774 if (type == BLKIO_STAT_GROUP_WAIT_TIME)
775 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
776 blkg->stats.group_wait_time, cb, dev);
777 if (type == BLKIO_STAT_IDLE_TIME)
778 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
779 blkg->stats.idle_time, cb, dev);
780 if (type == BLKIO_STAT_EMPTY_TIME)
781 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
782 blkg->stats.empty_time, cb, dev);
Divyesh Shah84c124d2010-04-09 08:31:19 +0200783 if (type == BLKIO_STAT_DEQUEUE)
784 return blkio_fill_stat(key_str, MAX_KEY_LEN - 1,
785 blkg->stats.dequeue, cb, dev);
786#endif
787
788 for (sub_type = BLKIO_STAT_READ; sub_type < BLKIO_STAT_TOTAL;
789 sub_type++) {
790 blkio_get_key_name(sub_type, dev, key_str, MAX_KEY_LEN, false);
791 cb->fill(cb, key_str, blkg->stats.stat_arr[type][sub_type]);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700792 }
Divyesh Shah84c124d2010-04-09 08:31:19 +0200793 disk_total = blkg->stats.stat_arr[type][BLKIO_STAT_READ] +
794 blkg->stats.stat_arr[type][BLKIO_STAT_WRITE];
795 blkio_get_key_name(BLKIO_STAT_TOTAL, dev, key_str, MAX_KEY_LEN, false);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700796 cb->fill(cb, key_str, disk_total);
797 return disk_total;
798}
799
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800800static int blkio_policy_parse_and_set(char *buf,
Vivek Goyal062a6442010-09-15 17:06:33 -0400801 struct blkio_policy_node *newpn, enum blkio_policy_id plid, int fileid)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800802{
Tejun Heoece84242011-10-19 14:31:15 +0200803 struct gendisk *disk = NULL;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800804 char *s[4], *p, *major_s = NULL, *minor_s = NULL;
Wanlong Gaod11bb442011-09-21 10:22:10 +0200805 unsigned long major, minor;
Tejun Heoece84242011-10-19 14:31:15 +0200806 int i = 0, ret = -EINVAL;
807 int part;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800808 dev_t dev;
Wanlong Gaod11bb442011-09-21 10:22:10 +0200809 u64 temp;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800810
811 memset(s, 0, sizeof(s));
812
813 while ((p = strsep(&buf, " ")) != NULL) {
814 if (!*p)
815 continue;
816
817 s[i++] = p;
818
819 /* Prevent from inputing too many things */
820 if (i == 3)
821 break;
822 }
823
824 if (i != 2)
Tejun Heoece84242011-10-19 14:31:15 +0200825 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800826
827 p = strsep(&s[0], ":");
828 if (p != NULL)
829 major_s = p;
830 else
Tejun Heoece84242011-10-19 14:31:15 +0200831 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800832
833 minor_s = s[0];
834 if (!minor_s)
Tejun Heoece84242011-10-19 14:31:15 +0200835 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800836
Tejun Heoece84242011-10-19 14:31:15 +0200837 if (strict_strtoul(major_s, 10, &major))
838 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800839
Tejun Heoece84242011-10-19 14:31:15 +0200840 if (strict_strtoul(minor_s, 10, &minor))
841 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800842
843 dev = MKDEV(major, minor);
844
Tejun Heoece84242011-10-19 14:31:15 +0200845 if (strict_strtoull(s[1], 10, &temp))
846 goto out;
Wanlong Gaod11bb442011-09-21 10:22:10 +0200847
848 /* For rule removal, do not check for device presence. */
849 if (temp) {
Tejun Heoece84242011-10-19 14:31:15 +0200850 disk = get_gendisk(dev, &part);
851 if (!disk || part) {
852 ret = -ENODEV;
853 goto out;
854 }
Wanlong Gaod11bb442011-09-21 10:22:10 +0200855 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800856
857 newpn->dev = dev;
858
Vivek Goyal062a6442010-09-15 17:06:33 -0400859 switch (plid) {
860 case BLKIO_POLICY_PROP:
Wanlong Gaod11bb442011-09-21 10:22:10 +0200861 if ((temp < BLKIO_WEIGHT_MIN && temp > 0) ||
862 temp > BLKIO_WEIGHT_MAX)
Tejun Heoece84242011-10-19 14:31:15 +0200863 goto out;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800864
Vivek Goyal062a6442010-09-15 17:06:33 -0400865 newpn->plid = plid;
866 newpn->fileid = fileid;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400867 newpn->val.weight = temp;
868 break;
869 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400870 switch(fileid) {
871 case BLKIO_THROTL_read_bps_device:
872 case BLKIO_THROTL_write_bps_device:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400873 newpn->plid = plid;
874 newpn->fileid = fileid;
Wanlong Gaod11bb442011-09-21 10:22:10 +0200875 newpn->val.bps = temp;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400876 break;
877 case BLKIO_THROTL_read_iops_device:
878 case BLKIO_THROTL_write_iops_device:
Wanlong Gaod11bb442011-09-21 10:22:10 +0200879 if (temp > THROTL_IOPS_MAX)
Tejun Heoece84242011-10-19 14:31:15 +0200880 goto out;
Vivek Goyal9355aed2010-10-01 21:16:41 +0200881
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400882 newpn->plid = plid;
883 newpn->fileid = fileid;
Wanlong Gaod11bb442011-09-21 10:22:10 +0200884 newpn->val.iops = (unsigned int)temp;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400885 break;
886 }
Vivek Goyal062a6442010-09-15 17:06:33 -0400887 break;
888 default:
889 BUG();
890 }
Tejun Heoece84242011-10-19 14:31:15 +0200891 ret = 0;
892out:
893 put_disk(disk);
894 return ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800895}
896
897unsigned int blkcg_get_weight(struct blkio_cgroup *blkcg,
898 dev_t dev)
899{
900 struct blkio_policy_node *pn;
Vivek Goyala38eb632011-10-25 15:48:12 +0200901 unsigned long flags;
902 unsigned int weight;
903
904 spin_lock_irqsave(&blkcg->lock, flags);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800905
Vivek Goyal062a6442010-09-15 17:06:33 -0400906 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_PROP,
907 BLKIO_PROP_weight_device);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800908 if (pn)
Vivek Goyala38eb632011-10-25 15:48:12 +0200909 weight = pn->val.weight;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800910 else
Vivek Goyala38eb632011-10-25 15:48:12 +0200911 weight = blkcg->weight;
912
913 spin_unlock_irqrestore(&blkcg->lock, flags);
914
915 return weight;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800916}
917EXPORT_SYMBOL_GPL(blkcg_get_weight);
918
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400919uint64_t blkcg_get_read_bps(struct blkio_cgroup *blkcg, dev_t dev)
920{
921 struct blkio_policy_node *pn;
Vivek Goyala38eb632011-10-25 15:48:12 +0200922 unsigned long flags;
923 uint64_t bps = -1;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800924
Vivek Goyala38eb632011-10-25 15:48:12 +0200925 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400926 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
927 BLKIO_THROTL_read_bps_device);
928 if (pn)
Vivek Goyala38eb632011-10-25 15:48:12 +0200929 bps = pn->val.bps;
930 spin_unlock_irqrestore(&blkcg->lock, flags);
931
932 return bps;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400933}
934
935uint64_t blkcg_get_write_bps(struct blkio_cgroup *blkcg, dev_t dev)
936{
937 struct blkio_policy_node *pn;
Vivek Goyala38eb632011-10-25 15:48:12 +0200938 unsigned long flags;
939 uint64_t bps = -1;
940
941 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400942 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
943 BLKIO_THROTL_write_bps_device);
944 if (pn)
Vivek Goyala38eb632011-10-25 15:48:12 +0200945 bps = pn->val.bps;
946 spin_unlock_irqrestore(&blkcg->lock, flags);
947
948 return bps;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400949}
950
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400951unsigned int blkcg_get_read_iops(struct blkio_cgroup *blkcg, dev_t dev)
952{
953 struct blkio_policy_node *pn;
Vivek Goyala38eb632011-10-25 15:48:12 +0200954 unsigned long flags;
955 unsigned int iops = -1;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400956
Vivek Goyala38eb632011-10-25 15:48:12 +0200957 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400958 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
959 BLKIO_THROTL_read_iops_device);
960 if (pn)
Vivek Goyala38eb632011-10-25 15:48:12 +0200961 iops = pn->val.iops;
962 spin_unlock_irqrestore(&blkcg->lock, flags);
963
964 return iops;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400965}
966
967unsigned int blkcg_get_write_iops(struct blkio_cgroup *blkcg, dev_t dev)
968{
969 struct blkio_policy_node *pn;
Vivek Goyala38eb632011-10-25 15:48:12 +0200970 unsigned long flags;
971 unsigned int iops = -1;
972
973 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400974 pn = blkio_policy_search_node(blkcg, dev, BLKIO_POLICY_THROTL,
975 BLKIO_THROTL_write_iops_device);
976 if (pn)
Vivek Goyala38eb632011-10-25 15:48:12 +0200977 iops = pn->val.iops;
978 spin_unlock_irqrestore(&blkcg->lock, flags);
979
980 return iops;
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400981}
982
Vivek Goyal062a6442010-09-15 17:06:33 -0400983/* Checks whether user asked for deleting a policy rule */
984static bool blkio_delete_rule_command(struct blkio_policy_node *pn)
985{
986 switch(pn->plid) {
987 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -0400988 if (pn->val.weight == 0)
989 return 1;
990 break;
991 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400992 switch(pn->fileid) {
993 case BLKIO_THROTL_read_bps_device:
994 case BLKIO_THROTL_write_bps_device:
995 if (pn->val.bps == 0)
996 return 1;
997 break;
998 case BLKIO_THROTL_read_iops_device:
999 case BLKIO_THROTL_write_iops_device:
1000 if (pn->val.iops == 0)
1001 return 1;
1002 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001003 break;
1004 default:
1005 BUG();
1006 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001007
Vivek Goyal062a6442010-09-15 17:06:33 -04001008 return 0;
1009}
1010
1011static void blkio_update_policy_rule(struct blkio_policy_node *oldpn,
1012 struct blkio_policy_node *newpn)
1013{
1014 switch(oldpn->plid) {
1015 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001016 oldpn->val.weight = newpn->val.weight;
1017 break;
1018 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001019 switch(newpn->fileid) {
1020 case BLKIO_THROTL_read_bps_device:
1021 case BLKIO_THROTL_write_bps_device:
1022 oldpn->val.bps = newpn->val.bps;
1023 break;
1024 case BLKIO_THROTL_read_iops_device:
1025 case BLKIO_THROTL_write_iops_device:
1026 oldpn->val.iops = newpn->val.iops;
1027 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001028 break;
1029 default:
1030 BUG();
1031 }
1032}
1033
1034/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001035 * Some rules/values in blkg have changed. Propagate those to respective
Vivek Goyal062a6442010-09-15 17:06:33 -04001036 * policies.
1037 */
1038static void blkio_update_blkg_policy(struct blkio_cgroup *blkcg,
1039 struct blkio_group *blkg, struct blkio_policy_node *pn)
1040{
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001041 unsigned int weight, iops;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001042 u64 bps;
Vivek Goyal062a6442010-09-15 17:06:33 -04001043
1044 switch(pn->plid) {
1045 case BLKIO_POLICY_PROP:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001046 weight = pn->val.weight ? pn->val.weight :
Vivek Goyal062a6442010-09-15 17:06:33 -04001047 blkcg->weight;
1048 blkio_update_group_weight(blkg, weight);
1049 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001050 case BLKIO_POLICY_THROTL:
1051 switch(pn->fileid) {
1052 case BLKIO_THROTL_read_bps_device:
1053 case BLKIO_THROTL_write_bps_device:
1054 bps = pn->val.bps ? pn->val.bps : (-1);
1055 blkio_update_group_bps(blkg, bps, pn->fileid);
1056 break;
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001057 case BLKIO_THROTL_read_iops_device:
1058 case BLKIO_THROTL_write_iops_device:
1059 iops = pn->val.iops ? pn->val.iops : (-1);
1060 blkio_update_group_iops(blkg, iops, pn->fileid);
1061 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001062 }
1063 break;
Vivek Goyal062a6442010-09-15 17:06:33 -04001064 default:
1065 BUG();
1066 }
1067}
1068
1069/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001070 * A policy node rule has been updated. Propagate this update to all the
Vivek Goyal062a6442010-09-15 17:06:33 -04001071 * block groups which might be affected by this update.
1072 */
1073static void blkio_update_policy_node_blkg(struct blkio_cgroup *blkcg,
1074 struct blkio_policy_node *pn)
1075{
1076 struct blkio_group *blkg;
1077 struct hlist_node *n;
1078
1079 spin_lock(&blkio_list_lock);
1080 spin_lock_irq(&blkcg->lock);
1081
1082 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
1083 if (pn->dev != blkg->dev || pn->plid != blkg->plid)
1084 continue;
1085 blkio_update_blkg_policy(blkcg, blkg, pn);
1086 }
1087
1088 spin_unlock_irq(&blkcg->lock);
1089 spin_unlock(&blkio_list_lock);
1090}
1091
1092static int blkiocg_file_write(struct cgroup *cgrp, struct cftype *cft,
1093 const char *buffer)
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001094{
1095 int ret = 0;
1096 char *buf;
1097 struct blkio_policy_node *newpn, *pn;
1098 struct blkio_cgroup *blkcg;
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001099 int keep_newpn = 0;
Vivek Goyal062a6442010-09-15 17:06:33 -04001100 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1101 int fileid = BLKIOFILE_ATTR(cft->private);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001102
1103 buf = kstrdup(buffer, GFP_KERNEL);
1104 if (!buf)
1105 return -ENOMEM;
1106
1107 newpn = kzalloc(sizeof(*newpn), GFP_KERNEL);
1108 if (!newpn) {
1109 ret = -ENOMEM;
1110 goto free_buf;
1111 }
1112
Vivek Goyal062a6442010-09-15 17:06:33 -04001113 ret = blkio_policy_parse_and_set(buf, newpn, plid, fileid);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001114 if (ret)
1115 goto free_newpn;
1116
1117 blkcg = cgroup_to_blkio_cgroup(cgrp);
1118
1119 spin_lock_irq(&blkcg->lock);
1120
Vivek Goyal062a6442010-09-15 17:06:33 -04001121 pn = blkio_policy_search_node(blkcg, newpn->dev, plid, fileid);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001122 if (!pn) {
Vivek Goyal062a6442010-09-15 17:06:33 -04001123 if (!blkio_delete_rule_command(newpn)) {
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001124 blkio_policy_insert_node(blkcg, newpn);
1125 keep_newpn = 1;
1126 }
1127 spin_unlock_irq(&blkcg->lock);
1128 goto update_io_group;
1129 }
1130
Vivek Goyal062a6442010-09-15 17:06:33 -04001131 if (blkio_delete_rule_command(newpn)) {
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001132 blkio_policy_delete_node(pn);
Vivek Goyale060f002011-10-25 15:48:12 +02001133 kfree(pn);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001134 spin_unlock_irq(&blkcg->lock);
1135 goto update_io_group;
1136 }
1137 spin_unlock_irq(&blkcg->lock);
1138
Vivek Goyal062a6442010-09-15 17:06:33 -04001139 blkio_update_policy_rule(pn, newpn);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001140
1141update_io_group:
Vivek Goyal062a6442010-09-15 17:06:33 -04001142 blkio_update_policy_node_blkg(blkcg, newpn);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001143
1144free_newpn:
1145 if (!keep_newpn)
1146 kfree(newpn);
1147free_buf:
1148 kfree(buf);
1149 return ret;
1150}
1151
Vivek Goyal062a6442010-09-15 17:06:33 -04001152static void
1153blkio_print_policy_node(struct seq_file *m, struct blkio_policy_node *pn)
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001154{
Vivek Goyal062a6442010-09-15 17:06:33 -04001155 switch(pn->plid) {
1156 case BLKIO_POLICY_PROP:
1157 if (pn->fileid == BLKIO_PROP_weight_device)
1158 seq_printf(m, "%u:%u\t%u\n", MAJOR(pn->dev),
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001159 MINOR(pn->dev), pn->val.weight);
1160 break;
1161 case BLKIO_POLICY_THROTL:
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001162 switch(pn->fileid) {
1163 case BLKIO_THROTL_read_bps_device:
1164 case BLKIO_THROTL_write_bps_device:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001165 seq_printf(m, "%u:%u\t%llu\n", MAJOR(pn->dev),
1166 MINOR(pn->dev), pn->val.bps);
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001167 break;
1168 case BLKIO_THROTL_read_iops_device:
1169 case BLKIO_THROTL_write_iops_device:
1170 seq_printf(m, "%u:%u\t%u\n", MAJOR(pn->dev),
1171 MINOR(pn->dev), pn->val.iops);
1172 break;
1173 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001174 break;
1175 default:
1176 BUG();
1177 }
1178}
1179
1180/* cgroup files which read their data from policy nodes end up here */
1181static void blkio_read_policy_node_files(struct cftype *cft,
1182 struct blkio_cgroup *blkcg, struct seq_file *m)
1183{
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001184 struct blkio_policy_node *pn;
1185
Jens Axboe0f3942a2010-05-03 14:28:55 +02001186 if (!list_empty(&blkcg->policy_list)) {
1187 spin_lock_irq(&blkcg->lock);
1188 list_for_each_entry(pn, &blkcg->policy_list, node) {
Vivek Goyal062a6442010-09-15 17:06:33 -04001189 if (!pn_matches_cftype(cft, pn))
1190 continue;
1191 blkio_print_policy_node(m, pn);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001192 }
1193 spin_unlock_irq(&blkcg->lock);
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001194 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001195}
1196
1197static int blkiocg_file_read(struct cgroup *cgrp, struct cftype *cft,
1198 struct seq_file *m)
1199{
1200 struct blkio_cgroup *blkcg;
1201 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1202 int name = BLKIOFILE_ATTR(cft->private);
1203
1204 blkcg = cgroup_to_blkio_cgroup(cgrp);
1205
1206 switch(plid) {
1207 case BLKIO_POLICY_PROP:
1208 switch(name) {
1209 case BLKIO_PROP_weight_device:
1210 blkio_read_policy_node_files(cft, blkcg, m);
1211 return 0;
1212 default:
1213 BUG();
1214 }
1215 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001216 case BLKIO_POLICY_THROTL:
1217 switch(name){
1218 case BLKIO_THROTL_read_bps_device:
1219 case BLKIO_THROTL_write_bps_device:
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001220 case BLKIO_THROTL_read_iops_device:
1221 case BLKIO_THROTL_write_iops_device:
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001222 blkio_read_policy_node_files(cft, blkcg, m);
1223 return 0;
1224 default:
1225 BUG();
1226 }
1227 break;
Vivek Goyal062a6442010-09-15 17:06:33 -04001228 default:
1229 BUG();
1230 }
1231
1232 return 0;
1233}
1234
1235static int blkio_read_blkg_stats(struct blkio_cgroup *blkcg,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001236 struct cftype *cft, struct cgroup_map_cb *cb,
1237 enum stat_type type, bool show_total, bool pcpu)
Vivek Goyal062a6442010-09-15 17:06:33 -04001238{
1239 struct blkio_group *blkg;
1240 struct hlist_node *n;
1241 uint64_t cgroup_total = 0;
1242
1243 rcu_read_lock();
1244 hlist_for_each_entry_rcu(blkg, n, &blkcg->blkg_list, blkcg_node) {
1245 if (blkg->dev) {
1246 if (!cftype_blkg_same_policy(cft, blkg))
1247 continue;
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001248 if (pcpu)
1249 cgroup_total += blkio_get_stat_cpu(blkg, cb,
1250 blkg->dev, type);
1251 else {
1252 spin_lock_irq(&blkg->stats_lock);
1253 cgroup_total += blkio_get_stat(blkg, cb,
1254 blkg->dev, type);
1255 spin_unlock_irq(&blkg->stats_lock);
1256 }
Vivek Goyal062a6442010-09-15 17:06:33 -04001257 }
1258 }
1259 if (show_total)
1260 cb->fill(cb, "Total", cgroup_total);
1261 rcu_read_unlock();
1262 return 0;
1263}
1264
1265/* All map kind of cgroup file get serviced by this function */
1266static int blkiocg_file_read_map(struct cgroup *cgrp, struct cftype *cft,
1267 struct cgroup_map_cb *cb)
1268{
1269 struct blkio_cgroup *blkcg;
1270 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1271 int name = BLKIOFILE_ATTR(cft->private);
1272
1273 blkcg = cgroup_to_blkio_cgroup(cgrp);
1274
1275 switch(plid) {
1276 case BLKIO_POLICY_PROP:
1277 switch(name) {
1278 case BLKIO_PROP_time:
1279 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001280 BLKIO_STAT_TIME, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001281 case BLKIO_PROP_sectors:
1282 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001283 BLKIO_STAT_CPU_SECTORS, 0, 1);
Vivek Goyal062a6442010-09-15 17:06:33 -04001284 case BLKIO_PROP_io_service_bytes:
1285 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001286 BLKIO_STAT_CPU_SERVICE_BYTES, 1, 1);
Vivek Goyal062a6442010-09-15 17:06:33 -04001287 case BLKIO_PROP_io_serviced:
1288 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001289 BLKIO_STAT_CPU_SERVICED, 1, 1);
Vivek Goyal062a6442010-09-15 17:06:33 -04001290 case BLKIO_PROP_io_service_time:
1291 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001292 BLKIO_STAT_SERVICE_TIME, 1, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001293 case BLKIO_PROP_io_wait_time:
1294 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001295 BLKIO_STAT_WAIT_TIME, 1, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001296 case BLKIO_PROP_io_merged:
1297 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal317389a2011-05-23 10:02:19 +02001298 BLKIO_STAT_CPU_MERGED, 1, 1);
Vivek Goyal062a6442010-09-15 17:06:33 -04001299 case BLKIO_PROP_io_queued:
1300 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001301 BLKIO_STAT_QUEUED, 1, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001302#ifdef CONFIG_DEBUG_BLK_CGROUP
Justin TerAvest9026e522011-03-22 21:26:54 +01001303 case BLKIO_PROP_unaccounted_time:
1304 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001305 BLKIO_STAT_UNACCOUNTED_TIME, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001306 case BLKIO_PROP_dequeue:
1307 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001308 BLKIO_STAT_DEQUEUE, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001309 case BLKIO_PROP_avg_queue_size:
1310 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001311 BLKIO_STAT_AVG_QUEUE_SIZE, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001312 case BLKIO_PROP_group_wait_time:
1313 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001314 BLKIO_STAT_GROUP_WAIT_TIME, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001315 case BLKIO_PROP_idle_time:
1316 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001317 BLKIO_STAT_IDLE_TIME, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001318 case BLKIO_PROP_empty_time:
1319 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001320 BLKIO_STAT_EMPTY_TIME, 0, 0);
Vivek Goyal062a6442010-09-15 17:06:33 -04001321#endif
1322 default:
1323 BUG();
1324 }
1325 break;
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001326 case BLKIO_POLICY_THROTL:
1327 switch(name){
1328 case BLKIO_THROTL_io_service_bytes:
1329 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001330 BLKIO_STAT_CPU_SERVICE_BYTES, 1, 1);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001331 case BLKIO_THROTL_io_serviced:
1332 return blkio_read_blkg_stats(blkcg, cft, cb,
Vivek Goyal5624a4e2011-05-19 15:38:28 -04001333 BLKIO_STAT_CPU_SERVICED, 1, 1);
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001334 default:
1335 BUG();
1336 }
1337 break;
Vivek Goyal062a6442010-09-15 17:06:33 -04001338 default:
1339 BUG();
1340 }
1341
1342 return 0;
1343}
1344
1345static int blkio_weight_write(struct blkio_cgroup *blkcg, u64 val)
1346{
1347 struct blkio_group *blkg;
1348 struct hlist_node *n;
1349 struct blkio_policy_node *pn;
1350
1351 if (val < BLKIO_WEIGHT_MIN || val > BLKIO_WEIGHT_MAX)
1352 return -EINVAL;
1353
1354 spin_lock(&blkio_list_lock);
1355 spin_lock_irq(&blkcg->lock);
1356 blkcg->weight = (unsigned int)val;
1357
1358 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
1359 pn = blkio_policy_search_node(blkcg, blkg->dev,
1360 BLKIO_POLICY_PROP, BLKIO_PROP_weight_device);
1361 if (pn)
1362 continue;
1363
1364 blkio_update_group_weight(blkg, blkcg->weight);
1365 }
1366 spin_unlock_irq(&blkcg->lock);
1367 spin_unlock(&blkio_list_lock);
1368 return 0;
1369}
1370
1371static u64 blkiocg_file_read_u64 (struct cgroup *cgrp, struct cftype *cft) {
1372 struct blkio_cgroup *blkcg;
1373 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1374 int name = BLKIOFILE_ATTR(cft->private);
1375
1376 blkcg = cgroup_to_blkio_cgroup(cgrp);
1377
1378 switch(plid) {
1379 case BLKIO_POLICY_PROP:
1380 switch(name) {
1381 case BLKIO_PROP_weight:
1382 return (u64)blkcg->weight;
1383 }
1384 break;
1385 default:
1386 BUG();
1387 }
1388 return 0;
1389}
1390
1391static int
1392blkiocg_file_write_u64(struct cgroup *cgrp, struct cftype *cft, u64 val)
1393{
1394 struct blkio_cgroup *blkcg;
1395 enum blkio_policy_id plid = BLKIOFILE_POLICY(cft->private);
1396 int name = BLKIOFILE_ATTR(cft->private);
1397
1398 blkcg = cgroup_to_blkio_cgroup(cgrp);
1399
1400 switch(plid) {
1401 case BLKIO_POLICY_PROP:
1402 switch(name) {
1403 case BLKIO_PROP_weight:
1404 return blkio_weight_write(blkcg, val);
1405 }
1406 break;
1407 default:
1408 BUG();
1409 }
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001410
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001411 return 0;
1412}
1413
Vivek Goyal31e4c282009-12-03 12:59:42 -05001414struct cftype blkio_files[] = {
1415 {
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001416 .name = "weight_device",
Vivek Goyal062a6442010-09-15 17:06:33 -04001417 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1418 BLKIO_PROP_weight_device),
1419 .read_seq_string = blkiocg_file_read,
1420 .write_string = blkiocg_file_write,
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001421 .max_write_len = 256,
1422 },
1423 {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001424 .name = "weight",
Vivek Goyal062a6442010-09-15 17:06:33 -04001425 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1426 BLKIO_PROP_weight),
1427 .read_u64 = blkiocg_file_read_u64,
1428 .write_u64 = blkiocg_file_write_u64,
Vivek Goyal31e4c282009-12-03 12:59:42 -05001429 },
Vivek Goyal22084192009-12-03 12:59:49 -05001430 {
1431 .name = "time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001432 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1433 BLKIO_PROP_time),
1434 .read_map = blkiocg_file_read_map,
Vivek Goyal22084192009-12-03 12:59:49 -05001435 },
1436 {
1437 .name = "sectors",
Vivek Goyal13f98252010-10-01 14:49:41 +02001438 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1439 BLKIO_PROP_sectors),
1440 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001441 },
1442 {
1443 .name = "io_service_bytes",
Vivek Goyal13f98252010-10-01 14:49:41 +02001444 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1445 BLKIO_PROP_io_service_bytes),
1446 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001447 },
1448 {
1449 .name = "io_serviced",
Vivek Goyal13f98252010-10-01 14:49:41 +02001450 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1451 BLKIO_PROP_io_serviced),
1452 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001453 },
1454 {
1455 .name = "io_service_time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001456 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1457 BLKIO_PROP_io_service_time),
1458 .read_map = blkiocg_file_read_map,
Divyesh Shah303a3ac2010-04-01 15:01:24 -07001459 },
1460 {
1461 .name = "io_wait_time",
Vivek Goyal13f98252010-10-01 14:49:41 +02001462 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1463 BLKIO_PROP_io_wait_time),
1464 .read_map = blkiocg_file_read_map,
Divyesh Shah84c124d2010-04-09 08:31:19 +02001465 },
1466 {
Divyesh Shah812d4022010-04-08 21:14:23 -07001467 .name = "io_merged",
Vivek Goyal13f98252010-10-01 14:49:41 +02001468 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1469 BLKIO_PROP_io_merged),
1470 .read_map = blkiocg_file_read_map,
Divyesh Shah812d4022010-04-08 21:14:23 -07001471 },
1472 {
Divyesh Shahcdc11842010-04-08 21:15:10 -07001473 .name = "io_queued",
Vivek Goyal13f98252010-10-01 14:49:41 +02001474 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1475 BLKIO_PROP_io_queued),
1476 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001477 },
1478 {
Divyesh Shah84c124d2010-04-09 08:31:19 +02001479 .name = "reset_stats",
1480 .write_u64 = blkiocg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001481 },
Vivek Goyal13f98252010-10-01 14:49:41 +02001482#ifdef CONFIG_BLK_DEV_THROTTLING
1483 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001484 .name = "throttle.read_bps_device",
1485 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1486 BLKIO_THROTL_read_bps_device),
1487 .read_seq_string = blkiocg_file_read,
1488 .write_string = blkiocg_file_write,
1489 .max_write_len = 256,
1490 },
1491
1492 {
1493 .name = "throttle.write_bps_device",
1494 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1495 BLKIO_THROTL_write_bps_device),
1496 .read_seq_string = blkiocg_file_read,
1497 .write_string = blkiocg_file_write,
1498 .max_write_len = 256,
1499 },
Vivek Goyal7702e8f2010-09-15 17:06:36 -04001500
1501 {
1502 .name = "throttle.read_iops_device",
1503 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1504 BLKIO_THROTL_read_iops_device),
1505 .read_seq_string = blkiocg_file_read,
1506 .write_string = blkiocg_file_write,
1507 .max_write_len = 256,
1508 },
1509
1510 {
1511 .name = "throttle.write_iops_device",
1512 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1513 BLKIO_THROTL_write_iops_device),
1514 .read_seq_string = blkiocg_file_read,
1515 .write_string = blkiocg_file_write,
1516 .max_write_len = 256,
1517 },
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001518 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001519 .name = "throttle.io_service_bytes",
1520 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1521 BLKIO_THROTL_io_service_bytes),
1522 .read_map = blkiocg_file_read_map,
1523 },
1524 {
Vivek Goyal4c9eefa2010-09-15 17:06:34 -04001525 .name = "throttle.io_serviced",
1526 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_THROTL,
1527 BLKIO_THROTL_io_serviced),
1528 .read_map = blkiocg_file_read_map,
1529 },
Vivek Goyal13f98252010-10-01 14:49:41 +02001530#endif /* CONFIG_BLK_DEV_THROTTLING */
1531
Vivek Goyal22084192009-12-03 12:59:49 -05001532#ifdef CONFIG_DEBUG_BLK_CGROUP
Divyesh Shahcdc11842010-04-08 21:15:10 -07001533 {
1534 .name = "avg_queue_size",
Vivek Goyal062a6442010-09-15 17:06:33 -04001535 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1536 BLKIO_PROP_avg_queue_size),
1537 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001538 },
1539 {
Divyesh Shah812df482010-04-08 21:15:35 -07001540 .name = "group_wait_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001541 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1542 BLKIO_PROP_group_wait_time),
1543 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001544 },
1545 {
1546 .name = "idle_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001547 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1548 BLKIO_PROP_idle_time),
1549 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001550 },
1551 {
1552 .name = "empty_time",
Vivek Goyal062a6442010-09-15 17:06:33 -04001553 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1554 BLKIO_PROP_empty_time),
1555 .read_map = blkiocg_file_read_map,
Divyesh Shah812df482010-04-08 21:15:35 -07001556 },
1557 {
Vivek Goyal22084192009-12-03 12:59:49 -05001558 .name = "dequeue",
Vivek Goyal062a6442010-09-15 17:06:33 -04001559 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1560 BLKIO_PROP_dequeue),
1561 .read_map = blkiocg_file_read_map,
Divyesh Shahcdc11842010-04-08 21:15:10 -07001562 },
Justin TerAvest9026e522011-03-22 21:26:54 +01001563 {
1564 .name = "unaccounted_time",
1565 .private = BLKIOFILE_PRIVATE(BLKIO_POLICY_PROP,
1566 BLKIO_PROP_unaccounted_time),
1567 .read_map = blkiocg_file_read_map,
1568 },
Vivek Goyal22084192009-12-03 12:59:49 -05001569#endif
Vivek Goyal31e4c282009-12-03 12:59:42 -05001570};
1571
1572static int blkiocg_populate(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1573{
1574 return cgroup_add_files(cgroup, subsys, blkio_files,
1575 ARRAY_SIZE(blkio_files));
1576}
1577
1578static void blkiocg_destroy(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1579{
1580 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001581 unsigned long flags;
1582 struct blkio_group *blkg;
Tejun Heoca32aef2012-03-05 13:15:03 -08001583 struct request_queue *q;
Vivek Goyal3e252062009-12-04 10:36:42 -05001584 struct blkio_policy_type *blkiop;
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001585 struct blkio_policy_node *pn, *pntmp;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001586
Vivek Goyalb1c35762009-12-03 12:59:47 -05001587 rcu_read_lock();
Jens Axboe0f3942a2010-05-03 14:28:55 +02001588 do {
1589 spin_lock_irqsave(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001590
Jens Axboe0f3942a2010-05-03 14:28:55 +02001591 if (hlist_empty(&blkcg->blkg_list)) {
1592 spin_unlock_irqrestore(&blkcg->lock, flags);
1593 break;
1594 }
1595
1596 blkg = hlist_entry(blkcg->blkg_list.first, struct blkio_group,
1597 blkcg_node);
Tejun Heoca32aef2012-03-05 13:15:03 -08001598 q = rcu_dereference(blkg->q);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001599 __blkiocg_del_blkio_group(blkg);
1600
Vivek Goyalb1c35762009-12-03 12:59:47 -05001601 spin_unlock_irqrestore(&blkcg->lock, flags);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001602
Jens Axboe0f3942a2010-05-03 14:28:55 +02001603 /*
1604 * This blkio_group is being unlinked as associated cgroup is
1605 * going away. Let all the IO controlling policies know about
Vivek Goyal61014e92010-10-01 14:49:44 +02001606 * this event.
Jens Axboe0f3942a2010-05-03 14:28:55 +02001607 */
1608 spin_lock(&blkio_list_lock);
Vivek Goyal61014e92010-10-01 14:49:44 +02001609 list_for_each_entry(blkiop, &blkio_list, list) {
1610 if (blkiop->plid != blkg->plid)
1611 continue;
Tejun Heoca32aef2012-03-05 13:15:03 -08001612 blkiop->ops.blkio_unlink_group_fn(q, blkg);
Vivek Goyal61014e92010-10-01 14:49:44 +02001613 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001614 spin_unlock(&blkio_list_lock);
1615 } while (1);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001616
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001617 list_for_each_entry_safe(pn, pntmp, &blkcg->policy_list, node) {
1618 blkio_policy_delete_node(pn);
1619 kfree(pn);
1620 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001621
Vivek Goyal31e4c282009-12-03 12:59:42 -05001622 free_css_id(&blkio_subsys, &blkcg->css);
Vivek Goyalb1c35762009-12-03 12:59:47 -05001623 rcu_read_unlock();
Ben Blum67523c42010-03-10 15:22:11 -08001624 if (blkcg != &blkio_root_cgroup)
1625 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001626}
1627
1628static struct cgroup_subsys_state *
1629blkiocg_create(struct cgroup_subsys *subsys, struct cgroup *cgroup)
1630{
Li Zefan03415092010-05-07 08:57:00 +02001631 struct blkio_cgroup *blkcg;
1632 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001633
Li Zefan03415092010-05-07 08:57:00 +02001634 if (!parent) {
Vivek Goyal31e4c282009-12-03 12:59:42 -05001635 blkcg = &blkio_root_cgroup;
1636 goto done;
1637 }
1638
Vivek Goyal31e4c282009-12-03 12:59:42 -05001639 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1640 if (!blkcg)
1641 return ERR_PTR(-ENOMEM);
1642
1643 blkcg->weight = BLKIO_WEIGHT_DEFAULT;
1644done:
1645 spin_lock_init(&blkcg->lock);
1646 INIT_HLIST_HEAD(&blkcg->blkg_list);
1647
Gui Jianfeng34d0f172010-04-13 16:05:49 +08001648 INIT_LIST_HEAD(&blkcg->policy_list);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001649 return &blkcg->css;
1650}
1651
1652/*
1653 * We cannot support shared io contexts, as we have no mean to support
1654 * two tasks with the same ioc in two different groups without major rework
1655 * of the main cic data structures. For now we allow a task to change
1656 * its cgroup only if it's the only owner of its ioc.
1657 */
Tejun Heobb9d97b2011-12-12 18:12:21 -08001658static int blkiocg_can_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
1659 struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001660{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001661 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001662 struct io_context *ioc;
1663 int ret = 0;
1664
1665 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -08001666 cgroup_taskset_for_each(task, cgrp, tset) {
1667 task_lock(task);
1668 ioc = task->io_context;
1669 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1670 ret = -EINVAL;
1671 task_unlock(task);
1672 if (ret)
1673 break;
1674 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001675 return ret;
1676}
1677
Tejun Heobb9d97b2011-12-12 18:12:21 -08001678static void blkiocg_attach(struct cgroup_subsys *ss, struct cgroup *cgrp,
1679 struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001680{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001681 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001682 struct io_context *ioc;
1683
Tejun Heobb9d97b2011-12-12 18:12:21 -08001684 cgroup_taskset_for_each(task, cgrp, tset) {
Linus Torvaldsb3c9dd12012-01-15 12:24:45 -08001685 /* we don't lose anything even if ioc allocation fails */
1686 ioc = get_task_io_context(task, GFP_ATOMIC, NUMA_NO_NODE);
1687 if (ioc) {
1688 ioc_cgroup_changed(ioc);
Tejun Heo11a31222012-02-07 07:51:30 +01001689 put_io_context(ioc);
Linus Torvaldsb3c9dd12012-01-15 12:24:45 -08001690 }
Tejun Heobb9d97b2011-12-12 18:12:21 -08001691 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001692}
1693
Vivek Goyal3e252062009-12-04 10:36:42 -05001694void blkio_policy_register(struct blkio_policy_type *blkiop)
1695{
1696 spin_lock(&blkio_list_lock);
1697 list_add_tail(&blkiop->list, &blkio_list);
1698 spin_unlock(&blkio_list_lock);
1699}
1700EXPORT_SYMBOL_GPL(blkio_policy_register);
1701
1702void blkio_policy_unregister(struct blkio_policy_type *blkiop)
1703{
1704 spin_lock(&blkio_list_lock);
1705 list_del_init(&blkiop->list);
1706 spin_unlock(&blkio_list_lock);
1707}
1708EXPORT_SYMBOL_GPL(blkio_policy_unregister);