blob: cb00829bb4663bf0272d2140f0ebd07afca0751d [file] [log] [blame]
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -07001/*
2 *
3 * Copyright IBM Corporation, 2012
4 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of version 2.1 of the GNU Lesser General Public License
8 * as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 */
15
16#include <linux/cgroup.h>
17#include <linux/slab.h>
18#include <linux/hugetlb.h>
19#include <linux/hugetlb_cgroup.h>
20
21struct hugetlb_cgroup {
22 struct cgroup_subsys_state css;
23 /*
24 * the counter to account for hugepages from hugetlb.
25 */
26 struct res_counter hugepage[HUGE_MAX_HSTATE];
27};
28
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -070029#define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
30#define MEMFILE_IDX(val) (((val) >> 16) & 0xffff)
31#define MEMFILE_ATTR(val) ((val) & 0xffff)
32
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070033struct cgroup_subsys hugetlb_subsys __read_mostly;
34static struct hugetlb_cgroup *root_h_cgroup __read_mostly;
35
36static inline
37struct hugetlb_cgroup *hugetlb_cgroup_from_css(struct cgroup_subsys_state *s)
38{
Tejun Heoa7c6d552013-08-08 20:11:23 -040039 return s ? container_of(s, struct hugetlb_cgroup, css) : NULL;
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070040}
41
42static inline
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070043struct hugetlb_cgroup *hugetlb_cgroup_from_task(struct task_struct *task)
44{
Tejun Heo8af01f52013-08-08 20:11:22 -040045 return hugetlb_cgroup_from_css(task_css(task, hugetlb_subsys_id));
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070046}
47
48static inline bool hugetlb_cgroup_is_root(struct hugetlb_cgroup *h_cg)
49{
50 return (h_cg == root_h_cgroup);
51}
52
Tejun Heo3f798512013-08-08 20:11:22 -040053static inline struct hugetlb_cgroup *
54parent_hugetlb_cgroup(struct hugetlb_cgroup *h_cg)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070055{
Tejun Heo63876982013-08-08 20:11:23 -040056 return hugetlb_cgroup_from_css(css_parent(&h_cg->css));
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070057}
58
Tejun Heo3f798512013-08-08 20:11:22 -040059static inline bool hugetlb_cgroup_have_usage(struct hugetlb_cgroup *h_cg)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070060{
61 int idx;
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070062
63 for (idx = 0; idx < hugetlb_max_hstate; idx++) {
64 if ((res_counter_read_u64(&h_cg->hugepage[idx], RES_USAGE)) > 0)
65 return true;
66 }
67 return false;
68}
69
Tejun Heoeb954192013-08-08 20:11:23 -040070static struct cgroup_subsys_state *
71hugetlb_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070072{
Tejun Heoeb954192013-08-08 20:11:23 -040073 struct hugetlb_cgroup *parent_h_cgroup = hugetlb_cgroup_from_css(parent_css);
74 struct hugetlb_cgroup *h_cgroup;
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070075 int idx;
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070076
77 h_cgroup = kzalloc(sizeof(*h_cgroup), GFP_KERNEL);
78 if (!h_cgroup)
79 return ERR_PTR(-ENOMEM);
80
Tejun Heoeb954192013-08-08 20:11:23 -040081 if (parent_h_cgroup) {
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070082 for (idx = 0; idx < HUGE_MAX_HSTATE; idx++)
83 res_counter_init(&h_cgroup->hugepage[idx],
84 &parent_h_cgroup->hugepage[idx]);
85 } else {
86 root_h_cgroup = h_cgroup;
87 for (idx = 0; idx < HUGE_MAX_HSTATE; idx++)
88 res_counter_init(&h_cgroup->hugepage[idx], NULL);
89 }
90 return &h_cgroup->css;
91}
92
Tejun Heoeb954192013-08-08 20:11:23 -040093static void hugetlb_cgroup_css_free(struct cgroup_subsys_state *css)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070094{
95 struct hugetlb_cgroup *h_cgroup;
96
Tejun Heoeb954192013-08-08 20:11:23 -040097 h_cgroup = hugetlb_cgroup_from_css(css);
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -070098 kfree(h_cgroup);
99}
100
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700101
102/*
103 * Should be called with hugetlb_lock held.
104 * Since we are holding hugetlb_lock, pages cannot get moved from
105 * active list or uncharged from the cgroup, So no need to get
106 * page reference and test for page active here. This function
107 * cannot fail.
108 */
Tejun Heo3f798512013-08-08 20:11:22 -0400109static void hugetlb_cgroup_move_parent(int idx, struct hugetlb_cgroup *h_cg,
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700110 struct page *page)
111{
112 int csize;
113 struct res_counter *counter;
114 struct res_counter *fail_res;
115 struct hugetlb_cgroup *page_hcg;
Tejun Heo3f798512013-08-08 20:11:22 -0400116 struct hugetlb_cgroup *parent = parent_hugetlb_cgroup(h_cg);
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700117
118 page_hcg = hugetlb_cgroup_from_page(page);
119 /*
120 * We can have pages in active list without any cgroup
121 * ie, hugepage with less than 3 pages. We can safely
122 * ignore those pages.
123 */
124 if (!page_hcg || page_hcg != h_cg)
125 goto out;
126
127 csize = PAGE_SIZE << compound_order(page);
128 if (!parent) {
129 parent = root_h_cgroup;
130 /* root has no limit */
131 res_counter_charge_nofail(&parent->hugepage[idx],
132 csize, &fail_res);
133 }
134 counter = &h_cg->hugepage[idx];
135 res_counter_uncharge_until(counter, counter->parent, csize);
136
137 set_hugetlb_cgroup(page, parent);
138out:
139 return;
140}
141
142/*
143 * Force the hugetlb cgroup to empty the hugetlb resources by moving them to
144 * the parent cgroup.
145 */
Tejun Heoeb954192013-08-08 20:11:23 -0400146static void hugetlb_cgroup_css_offline(struct cgroup_subsys_state *css)
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -0700147{
Tejun Heoeb954192013-08-08 20:11:23 -0400148 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700149 struct hstate *h;
150 struct page *page;
Michal Hocko9d093cb2012-10-26 13:37:33 +0200151 int idx = 0;
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700152
153 do {
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700154 for_each_hstate(h) {
155 spin_lock(&hugetlb_lock);
156 list_for_each_entry(page, &h->hugepage_activelist, lru)
Tejun Heo3f798512013-08-08 20:11:22 -0400157 hugetlb_cgroup_move_parent(idx, h_cg, page);
Aneesh Kumar K.Vda1def52012-07-31 16:42:21 -0700158
159 spin_unlock(&hugetlb_lock);
160 idx++;
161 }
162 cond_resched();
Tejun Heo3f798512013-08-08 20:11:22 -0400163 } while (hugetlb_cgroup_have_usage(h_cg));
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -0700164}
165
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -0700166int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages,
167 struct hugetlb_cgroup **ptr)
168{
169 int ret = 0;
170 struct res_counter *fail_res;
171 struct hugetlb_cgroup *h_cg = NULL;
172 unsigned long csize = nr_pages * PAGE_SIZE;
173
174 if (hugetlb_cgroup_disabled())
175 goto done;
176 /*
177 * We don't charge any cgroup if the compound page have less
178 * than 3 pages.
179 */
180 if (huge_page_order(&hstates[idx]) < HUGETLB_CGROUP_MIN_ORDER)
181 goto done;
182again:
183 rcu_read_lock();
184 h_cg = hugetlb_cgroup_from_task(current);
185 if (!css_tryget(&h_cg->css)) {
186 rcu_read_unlock();
187 goto again;
188 }
189 rcu_read_unlock();
190
191 ret = res_counter_charge(&h_cg->hugepage[idx], csize, &fail_res);
192 css_put(&h_cg->css);
193done:
194 *ptr = h_cg;
195 return ret;
196}
197
Aneesh Kumar K.V94ae8ba2012-07-31 16:42:35 -0700198/* Should be called with hugetlb_lock held */
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -0700199void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages,
200 struct hugetlb_cgroup *h_cg,
201 struct page *page)
202{
203 if (hugetlb_cgroup_disabled() || !h_cg)
204 return;
205
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -0700206 set_hugetlb_cgroup(page, h_cg);
Aneesh Kumar K.V6d76dcf2012-07-31 16:42:18 -0700207 return;
208}
209
210/*
211 * Should be called with hugetlb_lock held
212 */
213void hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages,
214 struct page *page)
215{
216 struct hugetlb_cgroup *h_cg;
217 unsigned long csize = nr_pages * PAGE_SIZE;
218
219 if (hugetlb_cgroup_disabled())
220 return;
221 VM_BUG_ON(!spin_is_locked(&hugetlb_lock));
222 h_cg = hugetlb_cgroup_from_page(page);
223 if (unlikely(!h_cg))
224 return;
225 set_hugetlb_cgroup(page, NULL);
226 res_counter_uncharge(&h_cg->hugepage[idx], csize);
227 return;
228}
229
230void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages,
231 struct hugetlb_cgroup *h_cg)
232{
233 unsigned long csize = nr_pages * PAGE_SIZE;
234
235 if (hugetlb_cgroup_disabled() || !h_cg)
236 return;
237
238 if (huge_page_order(&hstates[idx]) < HUGETLB_CGROUP_MIN_ORDER)
239 return;
240
241 res_counter_uncharge(&h_cg->hugepage[idx], csize);
242 return;
243}
244
Tejun Heo716f4792013-12-05 12:28:03 -0500245static u64 hugetlb_cgroup_read_u64(struct cgroup_subsys_state *css,
246 struct cftype *cft)
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700247{
Tejun Heo716f4792013-12-05 12:28:03 -0500248 int idx, name;
Tejun Heo182446d2013-08-08 20:11:24 -0400249 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700250
251 idx = MEMFILE_IDX(cft->private);
252 name = MEMFILE_ATTR(cft->private);
253
Tejun Heo716f4792013-12-05 12:28:03 -0500254 return res_counter_read_u64(&h_cg->hugepage[idx], name);
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700255}
256
Tejun Heo182446d2013-08-08 20:11:24 -0400257static int hugetlb_cgroup_write(struct cgroup_subsys_state *css,
258 struct cftype *cft, const char *buffer)
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700259{
260 int idx, name, ret;
261 unsigned long long val;
Tejun Heo182446d2013-08-08 20:11:24 -0400262 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700263
264 idx = MEMFILE_IDX(cft->private);
265 name = MEMFILE_ATTR(cft->private);
266
267 switch (name) {
268 case RES_LIMIT:
269 if (hugetlb_cgroup_is_root(h_cg)) {
270 /* Can't set limit on root */
271 ret = -EINVAL;
272 break;
273 }
274 /* This function does all necessary parse...reuse it */
275 ret = res_counter_memparse_write_strategy(buffer, &val);
276 if (ret)
277 break;
278 ret = res_counter_set_limit(&h_cg->hugepage[idx], val);
279 break;
280 default:
281 ret = -EINVAL;
282 break;
283 }
284 return ret;
285}
286
Tejun Heo182446d2013-08-08 20:11:24 -0400287static int hugetlb_cgroup_reset(struct cgroup_subsys_state *css,
288 unsigned int event)
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700289{
290 int idx, name, ret = 0;
Tejun Heo182446d2013-08-08 20:11:24 -0400291 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700292
293 idx = MEMFILE_IDX(event);
294 name = MEMFILE_ATTR(event);
295
296 switch (name) {
297 case RES_MAX_USAGE:
298 res_counter_reset_max(&h_cg->hugepage[idx]);
299 break;
300 case RES_FAILCNT:
301 res_counter_reset_failcnt(&h_cg->hugepage[idx]);
302 break;
303 default:
304 ret = -EINVAL;
305 break;
306 }
307 return ret;
308}
309
310static char *mem_fmt(char *buf, int size, unsigned long hsize)
311{
312 if (hsize >= (1UL << 30))
313 snprintf(buf, size, "%luGB", hsize >> 30);
314 else if (hsize >= (1UL << 20))
315 snprintf(buf, size, "%luMB", hsize >> 20);
316 else
317 snprintf(buf, size, "%luKB", hsize >> 10);
318 return buf;
319}
320
Jianguo Wu7179e7b2012-12-18 14:23:19 -0800321static void __init __hugetlb_cgroup_file_init(int idx)
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700322{
323 char buf[32];
324 struct cftype *cft;
325 struct hstate *h = &hstates[idx];
326
327 /* format the size */
328 mem_fmt(buf, 32, huge_page_size(h));
329
330 /* Add the limit file */
331 cft = &h->cgroup_files[0];
332 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.limit_in_bytes", buf);
333 cft->private = MEMFILE_PRIVATE(idx, RES_LIMIT);
Tejun Heo716f4792013-12-05 12:28:03 -0500334 cft->read_u64 = hugetlb_cgroup_read_u64;
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700335 cft->write_string = hugetlb_cgroup_write;
336
337 /* Add the usage file */
338 cft = &h->cgroup_files[1];
339 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.usage_in_bytes", buf);
340 cft->private = MEMFILE_PRIVATE(idx, RES_USAGE);
Tejun Heo716f4792013-12-05 12:28:03 -0500341 cft->read_u64 = hugetlb_cgroup_read_u64;
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700342
343 /* Add the MAX usage file */
344 cft = &h->cgroup_files[2];
345 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.max_usage_in_bytes", buf);
346 cft->private = MEMFILE_PRIVATE(idx, RES_MAX_USAGE);
347 cft->trigger = hugetlb_cgroup_reset;
Tejun Heo716f4792013-12-05 12:28:03 -0500348 cft->read_u64 = hugetlb_cgroup_read_u64;
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700349
350 /* Add the failcntfile */
351 cft = &h->cgroup_files[3];
352 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.failcnt", buf);
353 cft->private = MEMFILE_PRIVATE(idx, RES_FAILCNT);
354 cft->trigger = hugetlb_cgroup_reset;
Tejun Heo716f4792013-12-05 12:28:03 -0500355 cft->read_u64 = hugetlb_cgroup_read_u64;
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700356
357 /* NULL terminate the last cft */
358 cft = &h->cgroup_files[4];
359 memset(cft, 0, sizeof(*cft));
360
361 WARN_ON(cgroup_add_cftypes(&hugetlb_subsys, h->cgroup_files));
362
Jianguo Wu7179e7b2012-12-18 14:23:19 -0800363 return;
364}
365
366void __init hugetlb_cgroup_file_init(void)
367{
368 struct hstate *h;
369
370 for_each_hstate(h) {
371 /*
372 * Add cgroup control files only if the huge page consists
373 * of more than two normal pages. This is because we use
374 * page[2].lru.next for storing cgroup details.
375 */
376 if (huge_page_order(h) >= HUGETLB_CGROUP_MIN_ORDER)
377 __hugetlb_cgroup_file_init(hstate_index(h));
378 }
Aneesh Kumar K.Vabb82062012-07-31 16:42:24 -0700379}
380
Aneesh Kumar K.V75754682012-07-31 16:42:36 -0700381/*
382 * hugetlb_lock will make sure a parallel cgroup rmdir won't happen
383 * when we migrate hugepages
384 */
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700385void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage)
386{
387 struct hugetlb_cgroup *h_cg;
Aneesh Kumar K.V94ae8ba2012-07-31 16:42:35 -0700388 struct hstate *h = page_hstate(oldhpage);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700389
390 if (hugetlb_cgroup_disabled())
391 return;
392
Sasha Levin309381fea2014-01-23 15:52:54 -0800393 VM_BUG_ON_PAGE(!PageHuge(oldhpage), oldhpage);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700394 spin_lock(&hugetlb_lock);
395 h_cg = hugetlb_cgroup_from_page(oldhpage);
396 set_hugetlb_cgroup(oldhpage, NULL);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700397
398 /* move the h_cg details to new cgroup */
399 set_hugetlb_cgroup(newhpage, h_cg);
Aneesh Kumar K.V94ae8ba2012-07-31 16:42:35 -0700400 list_move(&newhpage->lru, &h->hugepage_activelist);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700401 spin_unlock(&hugetlb_lock);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -0700402 return;
403}
404
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -0700405struct cgroup_subsys hugetlb_subsys = {
406 .name = "hugetlb",
Tejun Heo92fb9742012-11-19 08:13:38 -0800407 .css_alloc = hugetlb_cgroup_css_alloc,
408 .css_offline = hugetlb_cgroup_css_offline,
409 .css_free = hugetlb_cgroup_css_free,
410 .subsys_id = hugetlb_subsys_id,
Aneesh Kumar K.V2bc64a22012-07-31 16:42:12 -0700411};