2 * Copyright IBM Corporation, 2012
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
15 #ifndef _LINUX_HUGETLB_CGROUP_H
16 #define _LINUX_HUGETLB_CGROUP_H
18 #include <linux/mmdebug.h>
20 struct hugetlb_cgroup;
24 #ifdef CONFIG_CGROUP_HUGETLB
26 * Minimum page order trackable by hugetlb cgroup.
27 * At least 3 pages are necessary for all the tracking information.
28 * The second tail page contains all of the hugetlb-specific fields.
30 #define HUGETLB_CGROUP_MIN_ORDER order_base_2(__NR_USED_SUBPAGE)
32 enum hugetlb_memory_event {
34 HUGETLB_NR_MEMORY_EVENTS,
37 struct hugetlb_cgroup_per_node {
38 /* hugetlb usage in pages over all hstates. */
39 unsigned long usage[HUGE_MAX_HSTATE];
42 struct hugetlb_cgroup {
43 struct cgroup_subsys_state css;
46 * the counter to account for hugepages from hugetlb.
48 struct page_counter hugepage[HUGE_MAX_HSTATE];
51 * the counter to account for hugepage reservations from hugetlb.
53 struct page_counter rsvd_hugepage[HUGE_MAX_HSTATE];
55 atomic_long_t events[HUGE_MAX_HSTATE][HUGETLB_NR_MEMORY_EVENTS];
56 atomic_long_t events_local[HUGE_MAX_HSTATE][HUGETLB_NR_MEMORY_EVENTS];
58 /* Handle for "hugetlb.events" */
59 struct cgroup_file events_file[HUGE_MAX_HSTATE];
61 /* Handle for "hugetlb.events.local" */
62 struct cgroup_file events_local_file[HUGE_MAX_HSTATE];
64 struct hugetlb_cgroup_per_node *nodeinfo[];
67 static inline struct hugetlb_cgroup *
68 __hugetlb_cgroup_from_folio(struct folio *folio, bool rsvd)
70 VM_BUG_ON_FOLIO(!folio_test_hugetlb(folio), folio);
71 if (folio_order(folio) < HUGETLB_CGROUP_MIN_ORDER)
74 return folio->_hugetlb_cgroup_rsvd;
76 return folio->_hugetlb_cgroup;
79 static inline struct hugetlb_cgroup *hugetlb_cgroup_from_folio(struct folio *folio)
81 return __hugetlb_cgroup_from_folio(folio, false);
84 static inline struct hugetlb_cgroup *
85 hugetlb_cgroup_from_folio_rsvd(struct folio *folio)
87 return __hugetlb_cgroup_from_folio(folio, true);
90 static inline void __set_hugetlb_cgroup(struct folio *folio,
91 struct hugetlb_cgroup *h_cg, bool rsvd)
93 VM_BUG_ON_FOLIO(!folio_test_hugetlb(folio), folio);
94 if (folio_order(folio) < HUGETLB_CGROUP_MIN_ORDER)
97 folio->_hugetlb_cgroup_rsvd = h_cg;
99 folio->_hugetlb_cgroup = h_cg;
102 static inline void set_hugetlb_cgroup(struct folio *folio,
103 struct hugetlb_cgroup *h_cg)
105 __set_hugetlb_cgroup(folio, h_cg, false);
108 static inline void set_hugetlb_cgroup_rsvd(struct folio *folio,
109 struct hugetlb_cgroup *h_cg)
111 __set_hugetlb_cgroup(folio, h_cg, true);
114 static inline bool hugetlb_cgroup_disabled(void)
116 return !cgroup_subsys_enabled(hugetlb_cgrp_subsys);
119 static inline void hugetlb_cgroup_put_rsvd_cgroup(struct hugetlb_cgroup *h_cg)
124 static inline void resv_map_dup_hugetlb_cgroup_uncharge_info(
125 struct resv_map *resv_map)
128 css_get(resv_map->css);
131 static inline void resv_map_put_hugetlb_cgroup_uncharge_info(
132 struct resv_map *resv_map)
135 css_put(resv_map->css);
138 extern int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages,
139 struct hugetlb_cgroup **ptr);
140 extern int hugetlb_cgroup_charge_cgroup_rsvd(int idx, unsigned long nr_pages,
141 struct hugetlb_cgroup **ptr);
142 extern void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages,
143 struct hugetlb_cgroup *h_cg,
144 struct folio *folio);
145 extern void hugetlb_cgroup_commit_charge_rsvd(int idx, unsigned long nr_pages,
146 struct hugetlb_cgroup *h_cg,
147 struct folio *folio);
148 extern void hugetlb_cgroup_uncharge_folio(int idx, unsigned long nr_pages,
149 struct folio *folio);
150 extern void hugetlb_cgroup_uncharge_folio_rsvd(int idx, unsigned long nr_pages,
151 struct folio *folio);
153 extern void hugetlb_cgroup_uncharge_cgroup(int idx, unsigned long nr_pages,
154 struct hugetlb_cgroup *h_cg);
155 extern void hugetlb_cgroup_uncharge_cgroup_rsvd(int idx, unsigned long nr_pages,
156 struct hugetlb_cgroup *h_cg);
157 extern void hugetlb_cgroup_uncharge_counter(struct resv_map *resv,
161 extern void hugetlb_cgroup_uncharge_file_region(struct resv_map *resv,
162 struct file_region *rg,
163 unsigned long nr_pages,
166 extern void hugetlb_cgroup_file_init(void) __init;
167 extern void hugetlb_cgroup_migrate(struct folio *old_folio,
168 struct folio *new_folio);
171 static inline void hugetlb_cgroup_uncharge_file_region(struct resv_map *resv,
172 struct file_region *rg,
173 unsigned long nr_pages,
178 static inline struct hugetlb_cgroup *hugetlb_cgroup_from_folio(struct folio *folio)
183 static inline struct hugetlb_cgroup *
184 hugetlb_cgroup_from_folio_rsvd(struct folio *folio)
189 static inline void set_hugetlb_cgroup(struct folio *folio,
190 struct hugetlb_cgroup *h_cg)
194 static inline void set_hugetlb_cgroup_rsvd(struct folio *folio,
195 struct hugetlb_cgroup *h_cg)
199 static inline bool hugetlb_cgroup_disabled(void)
204 static inline void hugetlb_cgroup_put_rsvd_cgroup(struct hugetlb_cgroup *h_cg)
208 static inline void resv_map_dup_hugetlb_cgroup_uncharge_info(
209 struct resv_map *resv_map)
213 static inline void resv_map_put_hugetlb_cgroup_uncharge_info(
214 struct resv_map *resv_map)
218 static inline int hugetlb_cgroup_charge_cgroup(int idx, unsigned long nr_pages,
219 struct hugetlb_cgroup **ptr)
224 static inline int hugetlb_cgroup_charge_cgroup_rsvd(int idx,
225 unsigned long nr_pages,
226 struct hugetlb_cgroup **ptr)
231 static inline void hugetlb_cgroup_commit_charge(int idx, unsigned long nr_pages,
232 struct hugetlb_cgroup *h_cg,
238 hugetlb_cgroup_commit_charge_rsvd(int idx, unsigned long nr_pages,
239 struct hugetlb_cgroup *h_cg,
244 static inline void hugetlb_cgroup_uncharge_folio(int idx, unsigned long nr_pages,
249 static inline void hugetlb_cgroup_uncharge_folio_rsvd(int idx,
250 unsigned long nr_pages,
254 static inline void hugetlb_cgroup_uncharge_cgroup(int idx,
255 unsigned long nr_pages,
256 struct hugetlb_cgroup *h_cg)
261 hugetlb_cgroup_uncharge_cgroup_rsvd(int idx, unsigned long nr_pages,
262 struct hugetlb_cgroup *h_cg)
266 static inline void hugetlb_cgroup_uncharge_counter(struct resv_map *resv,
272 static inline void hugetlb_cgroup_file_init(void)
276 static inline void hugetlb_cgroup_migrate(struct folio *old_folio,
277 struct folio *new_folio)
281 #endif /* CONFIG_MEM_RES_CTLR_HUGETLB */