3 * Copyright IBM Corporation, 2012
4 * Author Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
7 * Copyright (C) 2019 Red Hat, Inc.
8 * Author: Giuseppe Scrivano <gscrivan@redhat.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of version 2.1 of the GNU Lesser General Public License
12 * as published by the Free Software Foundation.
14 * This program is distributed in the hope that it would be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 #include <linux/cgroup.h>
21 #include <linux/page_counter.h>
22 #include <linux/slab.h>
23 #include <linux/hugetlb.h>
24 #include <linux/hugetlb_cgroup.h>
26 #define MEMFILE_PRIVATE(x, val) (((x) << 16) | (val))
27 #define MEMFILE_IDX(val) (((val) >> 16) & 0xffff)
28 #define MEMFILE_ATTR(val) ((val) & 0xffff)
30 #define hugetlb_cgroup_from_counter(counter, idx) \
31 container_of(counter, struct hugetlb_cgroup, hugepage[idx])
33 static struct hugetlb_cgroup *root_h_cgroup __read_mostly;
35 static inline struct page_counter *
36 __hugetlb_cgroup_counter_from_cgroup(struct hugetlb_cgroup *h_cg, int idx,
40 return &h_cg->rsvd_hugepage[idx];
41 return &h_cg->hugepage[idx];
44 static inline struct page_counter *
45 hugetlb_cgroup_counter_from_cgroup(struct hugetlb_cgroup *h_cg, int idx)
47 return __hugetlb_cgroup_counter_from_cgroup(h_cg, idx, false);
50 static inline struct page_counter *
51 hugetlb_cgroup_counter_from_cgroup_rsvd(struct hugetlb_cgroup *h_cg, int idx)
53 return __hugetlb_cgroup_counter_from_cgroup(h_cg, idx, true);
57 struct hugetlb_cgroup *hugetlb_cgroup_from_css(struct cgroup_subsys_state *s)
59 return s ? container_of(s, struct hugetlb_cgroup, css) : NULL;
63 struct hugetlb_cgroup *hugetlb_cgroup_from_task(struct task_struct *task)
65 return hugetlb_cgroup_from_css(task_css(task, hugetlb_cgrp_id));
68 static inline bool hugetlb_cgroup_is_root(struct hugetlb_cgroup *h_cg)
70 return (h_cg == root_h_cgroup);
73 static inline struct hugetlb_cgroup *
74 parent_hugetlb_cgroup(struct hugetlb_cgroup *h_cg)
76 return hugetlb_cgroup_from_css(h_cg->css.parent);
79 static inline bool hugetlb_cgroup_have_usage(struct hugetlb_cgroup *h_cg)
83 for (idx = 0; idx < hugetlb_max_hstate; idx++) {
84 if (page_counter_read(
85 hugetlb_cgroup_counter_from_cgroup(h_cg, idx)))
91 static void hugetlb_cgroup_init(struct hugetlb_cgroup *h_cgroup,
92 struct hugetlb_cgroup *parent_h_cgroup)
96 for (idx = 0; idx < HUGE_MAX_HSTATE; idx++) {
97 struct page_counter *fault_parent = NULL;
98 struct page_counter *rsvd_parent = NULL;
102 if (parent_h_cgroup) {
103 fault_parent = hugetlb_cgroup_counter_from_cgroup(
104 parent_h_cgroup, idx);
105 rsvd_parent = hugetlb_cgroup_counter_from_cgroup_rsvd(
106 parent_h_cgroup, idx);
108 page_counter_init(hugetlb_cgroup_counter_from_cgroup(h_cgroup,
112 hugetlb_cgroup_counter_from_cgroup_rsvd(h_cgroup, idx),
115 limit = round_down(PAGE_COUNTER_MAX,
116 1 << huge_page_order(&hstates[idx]));
118 ret = page_counter_set_max(
119 hugetlb_cgroup_counter_from_cgroup(h_cgroup, idx),
122 ret = page_counter_set_max(
123 hugetlb_cgroup_counter_from_cgroup_rsvd(h_cgroup, idx),
129 static struct cgroup_subsys_state *
130 hugetlb_cgroup_css_alloc(struct cgroup_subsys_state *parent_css)
132 struct hugetlb_cgroup *parent_h_cgroup = hugetlb_cgroup_from_css(parent_css);
133 struct hugetlb_cgroup *h_cgroup;
135 h_cgroup = kzalloc(sizeof(*h_cgroup), GFP_KERNEL);
137 return ERR_PTR(-ENOMEM);
139 if (!parent_h_cgroup)
140 root_h_cgroup = h_cgroup;
142 hugetlb_cgroup_init(h_cgroup, parent_h_cgroup);
143 return &h_cgroup->css;
146 static void hugetlb_cgroup_css_free(struct cgroup_subsys_state *css)
148 struct hugetlb_cgroup *h_cgroup;
150 h_cgroup = hugetlb_cgroup_from_css(css);
155 * Should be called with hugetlb_lock held.
156 * Since we are holding hugetlb_lock, pages cannot get moved from
157 * active list or uncharged from the cgroup, So no need to get
158 * page reference and test for page active here. This function
161 static void hugetlb_cgroup_move_parent(int idx, struct hugetlb_cgroup *h_cg,
164 unsigned int nr_pages;
165 struct page_counter *counter;
166 struct hugetlb_cgroup *page_hcg;
167 struct hugetlb_cgroup *parent = parent_hugetlb_cgroup(h_cg);
169 page_hcg = hugetlb_cgroup_from_page(page);
171 * We can have pages in active list without any cgroup
172 * ie, hugepage with less than 3 pages. We can safely
173 * ignore those pages.
175 if (!page_hcg || page_hcg != h_cg)
178 nr_pages = compound_nr(page);
180 parent = root_h_cgroup;
181 /* root has no limit */
182 page_counter_charge(&parent->hugepage[idx], nr_pages);
184 counter = &h_cg->hugepage[idx];
185 /* Take the pages off the local counter */
186 page_counter_cancel(counter, nr_pages);
188 set_hugetlb_cgroup(page, parent);
194 * Force the hugetlb cgroup to empty the hugetlb resources by moving them to
197 static void hugetlb_cgroup_css_offline(struct cgroup_subsys_state *css)
199 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
207 spin_lock(&hugetlb_lock);
208 list_for_each_entry(page, &h->hugepage_activelist, lru)
209 hugetlb_cgroup_move_parent(idx, h_cg, page);
211 spin_unlock(&hugetlb_lock);
215 } while (hugetlb_cgroup_have_usage(h_cg));
218 static inline void hugetlb_event(struct hugetlb_cgroup *hugetlb, int idx,
219 enum hugetlb_memory_event event)
221 atomic_long_inc(&hugetlb->events_local[idx][event]);
222 cgroup_file_notify(&hugetlb->events_local_file[idx]);
225 atomic_long_inc(&hugetlb->events[idx][event]);
226 cgroup_file_notify(&hugetlb->events_file[idx]);
227 } while ((hugetlb = parent_hugetlb_cgroup(hugetlb)) &&
228 !hugetlb_cgroup_is_root(hugetlb));
231 static int __hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages,
232 struct hugetlb_cgroup **ptr,
236 struct page_counter *counter;
237 struct hugetlb_cgroup *h_cg = NULL;
239 if (hugetlb_cgroup_disabled())
242 * We don't charge any cgroup if the compound page have less
245 if (huge_page_order(&hstates[idx]) < HUGETLB_CGROUP_MIN_ORDER)
249 h_cg = hugetlb_cgroup_from_task(current);
250 if (!css_tryget(&h_cg->css)) {
256 if (!page_counter_try_charge(
257 __hugetlb_cgroup_counter_from_cgroup(h_cg, idx, rsvd),
258 nr_pages, &counter)) {
260 hugetlb_event(h_cg, idx, HUGETLB_MAX);
264 /* Reservations take a reference to the css because they do not get
274 int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages,
275 struct hugetlb_cgroup **ptr)
277 return __hugetlb_cgroup_charge_cgroup(idx, nr_pages, ptr, false);
280 int hugetlb_cgroup_charge_cgroup_rsvd(int idx, unsigned long nr_pages,
281 struct hugetlb_cgroup **ptr)
283 return __hugetlb_cgroup_charge_cgroup(idx, nr_pages, ptr, true);
286 /* Should be called with hugetlb_lock held */
287 static void __hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages,
288 struct hugetlb_cgroup *h_cg,
289 struct page *page, bool rsvd)
291 if (hugetlb_cgroup_disabled() || !h_cg)
294 __set_hugetlb_cgroup(page, h_cg, rsvd);
298 void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages,
299 struct hugetlb_cgroup *h_cg,
302 __hugetlb_cgroup_commit_charge(idx, nr_pages, h_cg, page, false);
305 void hugetlb_cgroup_commit_charge_rsvd(int idx, unsigned long nr_pages,
306 struct hugetlb_cgroup *h_cg,
309 __hugetlb_cgroup_commit_charge(idx, nr_pages, h_cg, page, true);
313 * Should be called with hugetlb_lock held
315 static void __hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages,
316 struct page *page, bool rsvd)
318 struct hugetlb_cgroup *h_cg;
320 if (hugetlb_cgroup_disabled())
322 lockdep_assert_held(&hugetlb_lock);
323 h_cg = __hugetlb_cgroup_from_page(page, rsvd);
326 __set_hugetlb_cgroup(page, NULL, rsvd);
328 page_counter_uncharge(__hugetlb_cgroup_counter_from_cgroup(h_cg, idx,
338 void hugetlb_cgroup_uncharge_page(int idx, unsigned long nr_pages,
341 __hugetlb_cgroup_uncharge_page(idx, nr_pages, page, false);
344 void hugetlb_cgroup_uncharge_page_rsvd(int idx, unsigned long nr_pages,
347 __hugetlb_cgroup_uncharge_page(idx, nr_pages, page, true);
350 static void __hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages,
351 struct hugetlb_cgroup *h_cg,
354 if (hugetlb_cgroup_disabled() || !h_cg)
357 if (huge_page_order(&hstates[idx]) < HUGETLB_CGROUP_MIN_ORDER)
360 page_counter_uncharge(__hugetlb_cgroup_counter_from_cgroup(h_cg, idx,
368 void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages,
369 struct hugetlb_cgroup *h_cg)
371 __hugetlb_cgroup_uncharge_cgroup(idx, nr_pages, h_cg, false);
374 void hugetlb_cgroup_uncharge_cgroup_rsvd(int idx, unsigned long nr_pages,
375 struct hugetlb_cgroup *h_cg)
377 __hugetlb_cgroup_uncharge_cgroup(idx, nr_pages, h_cg, true);
380 void hugetlb_cgroup_uncharge_counter(struct resv_map *resv, unsigned long start,
383 if (hugetlb_cgroup_disabled() || !resv || !resv->reservation_counter ||
387 page_counter_uncharge(resv->reservation_counter,
388 (end - start) * resv->pages_per_hpage);
392 void hugetlb_cgroup_uncharge_file_region(struct resv_map *resv,
393 struct file_region *rg,
394 unsigned long nr_pages,
397 if (hugetlb_cgroup_disabled() || !resv || !rg || !nr_pages)
400 if (rg->reservation_counter && resv->pages_per_hpage && nr_pages > 0 &&
401 !resv->reservation_counter) {
402 page_counter_uncharge(rg->reservation_counter,
403 nr_pages * resv->pages_per_hpage);
405 * Only do css_put(rg->css) when we delete the entire region
406 * because one file_region must hold exactly one css reference.
424 static u64 hugetlb_cgroup_read_u64(struct cgroup_subsys_state *css,
427 struct page_counter *counter;
428 struct page_counter *rsvd_counter;
429 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(css);
431 counter = &h_cg->hugepage[MEMFILE_IDX(cft->private)];
432 rsvd_counter = &h_cg->rsvd_hugepage[MEMFILE_IDX(cft->private)];
434 switch (MEMFILE_ATTR(cft->private)) {
436 return (u64)page_counter_read(counter) * PAGE_SIZE;
438 return (u64)page_counter_read(rsvd_counter) * PAGE_SIZE;
440 return (u64)counter->max * PAGE_SIZE;
442 return (u64)rsvd_counter->max * PAGE_SIZE;
444 return (u64)counter->watermark * PAGE_SIZE;
445 case RES_RSVD_MAX_USAGE:
446 return (u64)rsvd_counter->watermark * PAGE_SIZE;
448 return counter->failcnt;
449 case RES_RSVD_FAILCNT:
450 return rsvd_counter->failcnt;
456 static int hugetlb_cgroup_read_u64_max(struct seq_file *seq, void *v)
460 struct cftype *cft = seq_cft(seq);
462 struct page_counter *counter;
463 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(seq_css(seq));
465 idx = MEMFILE_IDX(cft->private);
466 counter = &h_cg->hugepage[idx];
468 limit = round_down(PAGE_COUNTER_MAX,
469 1 << huge_page_order(&hstates[idx]));
471 switch (MEMFILE_ATTR(cft->private)) {
473 counter = &h_cg->rsvd_hugepage[idx];
476 val = (u64)page_counter_read(counter);
477 seq_printf(seq, "%llu\n", val * PAGE_SIZE);
480 counter = &h_cg->rsvd_hugepage[idx];
483 val = (u64)counter->max;
485 seq_puts(seq, "max\n");
487 seq_printf(seq, "%llu\n", val * PAGE_SIZE);
496 static DEFINE_MUTEX(hugetlb_limit_mutex);
498 static ssize_t hugetlb_cgroup_write(struct kernfs_open_file *of,
499 char *buf, size_t nbytes, loff_t off,
503 unsigned long nr_pages;
504 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(of_css(of));
507 if (hugetlb_cgroup_is_root(h_cg)) /* Can't set limit on root */
511 ret = page_counter_memparse(buf, max, &nr_pages);
515 idx = MEMFILE_IDX(of_cft(of)->private);
516 nr_pages = round_down(nr_pages, 1 << huge_page_order(&hstates[idx]));
518 switch (MEMFILE_ATTR(of_cft(of)->private)) {
523 mutex_lock(&hugetlb_limit_mutex);
524 ret = page_counter_set_max(
525 __hugetlb_cgroup_counter_from_cgroup(h_cg, idx, rsvd),
527 mutex_unlock(&hugetlb_limit_mutex);
533 return ret ?: nbytes;
536 static ssize_t hugetlb_cgroup_write_legacy(struct kernfs_open_file *of,
537 char *buf, size_t nbytes, loff_t off)
539 return hugetlb_cgroup_write(of, buf, nbytes, off, "-1");
542 static ssize_t hugetlb_cgroup_write_dfl(struct kernfs_open_file *of,
543 char *buf, size_t nbytes, loff_t off)
545 return hugetlb_cgroup_write(of, buf, nbytes, off, "max");
548 static ssize_t hugetlb_cgroup_reset(struct kernfs_open_file *of,
549 char *buf, size_t nbytes, loff_t off)
552 struct page_counter *counter, *rsvd_counter;
553 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(of_css(of));
555 counter = &h_cg->hugepage[MEMFILE_IDX(of_cft(of)->private)];
556 rsvd_counter = &h_cg->rsvd_hugepage[MEMFILE_IDX(of_cft(of)->private)];
558 switch (MEMFILE_ATTR(of_cft(of)->private)) {
560 page_counter_reset_watermark(counter);
562 case RES_RSVD_MAX_USAGE:
563 page_counter_reset_watermark(rsvd_counter);
566 counter->failcnt = 0;
568 case RES_RSVD_FAILCNT:
569 rsvd_counter->failcnt = 0;
575 return ret ?: nbytes;
578 static char *mem_fmt(char *buf, int size, unsigned long hsize)
580 if (hsize >= (1UL << 30))
581 snprintf(buf, size, "%luGB", hsize >> 30);
582 else if (hsize >= (1UL << 20))
583 snprintf(buf, size, "%luMB", hsize >> 20);
585 snprintf(buf, size, "%luKB", hsize >> 10);
589 static int __hugetlb_events_show(struct seq_file *seq, bool local)
593 struct cftype *cft = seq_cft(seq);
594 struct hugetlb_cgroup *h_cg = hugetlb_cgroup_from_css(seq_css(seq));
596 idx = MEMFILE_IDX(cft->private);
599 max = atomic_long_read(&h_cg->events_local[idx][HUGETLB_MAX]);
601 max = atomic_long_read(&h_cg->events[idx][HUGETLB_MAX]);
603 seq_printf(seq, "max %lu\n", max);
608 static int hugetlb_events_show(struct seq_file *seq, void *v)
610 return __hugetlb_events_show(seq, false);
613 static int hugetlb_events_local_show(struct seq_file *seq, void *v)
615 return __hugetlb_events_show(seq, true);
618 static void __init __hugetlb_cgroup_file_dfl_init(int idx)
622 struct hstate *h = &hstates[idx];
624 /* format the size */
625 mem_fmt(buf, sizeof(buf), huge_page_size(h));
627 /* Add the limit file */
628 cft = &h->cgroup_files_dfl[0];
629 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.max", buf);
630 cft->private = MEMFILE_PRIVATE(idx, RES_LIMIT);
631 cft->seq_show = hugetlb_cgroup_read_u64_max;
632 cft->write = hugetlb_cgroup_write_dfl;
633 cft->flags = CFTYPE_NOT_ON_ROOT;
635 /* Add the reservation limit file */
636 cft = &h->cgroup_files_dfl[1];
637 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.max", buf);
638 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_LIMIT);
639 cft->seq_show = hugetlb_cgroup_read_u64_max;
640 cft->write = hugetlb_cgroup_write_dfl;
641 cft->flags = CFTYPE_NOT_ON_ROOT;
643 /* Add the current usage file */
644 cft = &h->cgroup_files_dfl[2];
645 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.current", buf);
646 cft->private = MEMFILE_PRIVATE(idx, RES_USAGE);
647 cft->seq_show = hugetlb_cgroup_read_u64_max;
648 cft->flags = CFTYPE_NOT_ON_ROOT;
650 /* Add the current reservation usage file */
651 cft = &h->cgroup_files_dfl[3];
652 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.current", buf);
653 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_USAGE);
654 cft->seq_show = hugetlb_cgroup_read_u64_max;
655 cft->flags = CFTYPE_NOT_ON_ROOT;
657 /* Add the events file */
658 cft = &h->cgroup_files_dfl[4];
659 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.events", buf);
660 cft->private = MEMFILE_PRIVATE(idx, 0);
661 cft->seq_show = hugetlb_events_show;
662 cft->file_offset = offsetof(struct hugetlb_cgroup, events_file[idx]);
663 cft->flags = CFTYPE_NOT_ON_ROOT;
665 /* Add the events.local file */
666 cft = &h->cgroup_files_dfl[5];
667 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.events.local", buf);
668 cft->private = MEMFILE_PRIVATE(idx, 0);
669 cft->seq_show = hugetlb_events_local_show;
670 cft->file_offset = offsetof(struct hugetlb_cgroup,
671 events_local_file[idx]);
672 cft->flags = CFTYPE_NOT_ON_ROOT;
674 /* NULL terminate the last cft */
675 cft = &h->cgroup_files_dfl[6];
676 memset(cft, 0, sizeof(*cft));
678 WARN_ON(cgroup_add_dfl_cftypes(&hugetlb_cgrp_subsys,
679 h->cgroup_files_dfl));
682 static void __init __hugetlb_cgroup_file_legacy_init(int idx)
686 struct hstate *h = &hstates[idx];
688 /* format the size */
689 mem_fmt(buf, sizeof(buf), huge_page_size(h));
691 /* Add the limit file */
692 cft = &h->cgroup_files_legacy[0];
693 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.limit_in_bytes", buf);
694 cft->private = MEMFILE_PRIVATE(idx, RES_LIMIT);
695 cft->read_u64 = hugetlb_cgroup_read_u64;
696 cft->write = hugetlb_cgroup_write_legacy;
698 /* Add the reservation limit file */
699 cft = &h->cgroup_files_legacy[1];
700 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.limit_in_bytes", buf);
701 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_LIMIT);
702 cft->read_u64 = hugetlb_cgroup_read_u64;
703 cft->write = hugetlb_cgroup_write_legacy;
705 /* Add the usage file */
706 cft = &h->cgroup_files_legacy[2];
707 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.usage_in_bytes", buf);
708 cft->private = MEMFILE_PRIVATE(idx, RES_USAGE);
709 cft->read_u64 = hugetlb_cgroup_read_u64;
711 /* Add the reservation usage file */
712 cft = &h->cgroup_files_legacy[3];
713 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.usage_in_bytes", buf);
714 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_USAGE);
715 cft->read_u64 = hugetlb_cgroup_read_u64;
717 /* Add the MAX usage file */
718 cft = &h->cgroup_files_legacy[4];
719 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.max_usage_in_bytes", buf);
720 cft->private = MEMFILE_PRIVATE(idx, RES_MAX_USAGE);
721 cft->write = hugetlb_cgroup_reset;
722 cft->read_u64 = hugetlb_cgroup_read_u64;
724 /* Add the MAX reservation usage file */
725 cft = &h->cgroup_files_legacy[5];
726 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.max_usage_in_bytes", buf);
727 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_MAX_USAGE);
728 cft->write = hugetlb_cgroup_reset;
729 cft->read_u64 = hugetlb_cgroup_read_u64;
731 /* Add the failcntfile */
732 cft = &h->cgroup_files_legacy[6];
733 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.failcnt", buf);
734 cft->private = MEMFILE_PRIVATE(idx, RES_FAILCNT);
735 cft->write = hugetlb_cgroup_reset;
736 cft->read_u64 = hugetlb_cgroup_read_u64;
738 /* Add the reservation failcntfile */
739 cft = &h->cgroup_files_legacy[7];
740 snprintf(cft->name, MAX_CFTYPE_NAME, "%s.rsvd.failcnt", buf);
741 cft->private = MEMFILE_PRIVATE(idx, RES_RSVD_FAILCNT);
742 cft->write = hugetlb_cgroup_reset;
743 cft->read_u64 = hugetlb_cgroup_read_u64;
745 /* NULL terminate the last cft */
746 cft = &h->cgroup_files_legacy[8];
747 memset(cft, 0, sizeof(*cft));
749 WARN_ON(cgroup_add_legacy_cftypes(&hugetlb_cgrp_subsys,
750 h->cgroup_files_legacy));
753 static void __init __hugetlb_cgroup_file_init(int idx)
755 __hugetlb_cgroup_file_dfl_init(idx);
756 __hugetlb_cgroup_file_legacy_init(idx);
759 void __init hugetlb_cgroup_file_init(void)
765 * Add cgroup control files only if the huge page consists
766 * of more than two normal pages. This is because we use
767 * page[2].private for storing cgroup details.
769 if (huge_page_order(h) >= HUGETLB_CGROUP_MIN_ORDER)
770 __hugetlb_cgroup_file_init(hstate_index(h));
775 * hugetlb_lock will make sure a parallel cgroup rmdir won't happen
776 * when we migrate hugepages
778 void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage)
780 struct hugetlb_cgroup *h_cg;
781 struct hugetlb_cgroup *h_cg_rsvd;
782 struct hstate *h = page_hstate(oldhpage);
784 if (hugetlb_cgroup_disabled())
787 VM_BUG_ON_PAGE(!PageHuge(oldhpage), oldhpage);
788 spin_lock(&hugetlb_lock);
789 h_cg = hugetlb_cgroup_from_page(oldhpage);
790 h_cg_rsvd = hugetlb_cgroup_from_page_rsvd(oldhpage);
791 set_hugetlb_cgroup(oldhpage, NULL);
792 set_hugetlb_cgroup_rsvd(oldhpage, NULL);
794 /* move the h_cg details to new cgroup */
795 set_hugetlb_cgroup(newhpage, h_cg);
796 set_hugetlb_cgroup_rsvd(newhpage, h_cg_rsvd);
797 list_move(&newhpage->lru, &h->hugepage_activelist);
798 spin_unlock(&hugetlb_lock);
802 static struct cftype hugetlb_files[] = {
806 struct cgroup_subsys hugetlb_cgrp_subsys = {
807 .css_alloc = hugetlb_cgroup_css_alloc,
808 .css_offline = hugetlb_cgroup_css_offline,
809 .css_free = hugetlb_cgroup_css_free,
810 .dfl_cftypes = hugetlb_files,
811 .legacy_cftypes = hugetlb_files,