Commit | Line | Data |
---|---|---|
ddbcc7e8 PM |
1 | #ifndef _LINUX_CGROUP_H |
2 | #define _LINUX_CGROUP_H | |
3 | /* | |
4 | * cgroup interface | |
5 | * | |
6 | * Copyright (C) 2003 BULL SA | |
7 | * Copyright (C) 2004-2006 Silicon Graphics, Inc. | |
8 | * | |
9 | */ | |
10 | ||
11 | #include <linux/sched.h> | |
ddbcc7e8 PM |
12 | #include <linux/cpumask.h> |
13 | #include <linux/nodemask.h> | |
eb6fd504 | 14 | #include <linux/rculist.h> |
846c7bb0 | 15 | #include <linux/cgroupstats.h> |
25a7e684 | 16 | #include <linux/fs.h> |
7da11279 | 17 | #include <linux/seq_file.h> |
2bd59d48 | 18 | #include <linux/kernfs.h> |
49d1dc4b | 19 | #include <linux/jump_label.h> |
ddbcc7e8 | 20 | |
b4a04ab7 | 21 | #include <linux/cgroup-defs.h> |
ddbcc7e8 PM |
22 | |
23 | #ifdef CONFIG_CGROUPS | |
24 | ||
6abc8ca1 TH |
25 | /* |
26 | * All weight knobs on the default hierarhcy should use the following min, | |
27 | * default and max values. The default value is the logarithmic center of | |
28 | * MIN and MAX and allows 100x to be expressed in both directions. | |
29 | */ | |
30 | #define CGROUP_WEIGHT_MIN 1 | |
31 | #define CGROUP_WEIGHT_DFL 100 | |
32 | #define CGROUP_WEIGHT_MAX 10000 | |
33 | ||
c326aa2b TH |
34 | /* a css_task_iter should be treated as an opaque object */ |
35 | struct css_task_iter { | |
36 | struct cgroup_subsys *ss; | |
37 | ||
38 | struct list_head *cset_pos; | |
39 | struct list_head *cset_head; | |
ddbcc7e8 | 40 | |
c326aa2b TH |
41 | struct list_head *task_pos; |
42 | struct list_head *tasks_head; | |
43 | struct list_head *mg_tasks_head; | |
ed27b9f7 TH |
44 | |
45 | struct css_set *cur_cset; | |
46 | struct task_struct *cur_task; | |
47 | struct list_head iters_node; /* css_set->task_iters */ | |
c326aa2b | 48 | }; |
ddbcc7e8 | 49 | |
c326aa2b TH |
50 | extern struct cgroup_root cgrp_dfl_root; |
51 | extern struct css_set init_css_set; | |
a424316c | 52 | |
c326aa2b | 53 | #define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys; |
817929ec | 54 | #include <linux/cgroup_subsys.h> |
817929ec PM |
55 | #undef SUBSYS |
56 | ||
49d1dc4b TH |
57 | #define SUBSYS(_x) \ |
58 | extern struct static_key_true _x ## _cgrp_subsys_enabled_key; \ | |
59 | extern struct static_key_true _x ## _cgrp_subsys_on_dfl_key; | |
60 | #include <linux/cgroup_subsys.h> | |
61 | #undef SUBSYS | |
62 | ||
63 | /** | |
64 | * cgroup_subsys_enabled - fast test on whether a subsys is enabled | |
65 | * @ss: subsystem in question | |
66 | */ | |
67 | #define cgroup_subsys_enabled(ss) \ | |
68 | static_branch_likely(&ss ## _enabled_key) | |
69 | ||
70 | /** | |
71 | * cgroup_subsys_on_dfl - fast test on whether a subsys is on default hierarchy | |
72 | * @ss: subsystem in question | |
73 | */ | |
74 | #define cgroup_subsys_on_dfl(ss) \ | |
75 | static_branch_likely(&ss ## _on_dfl_key) | |
76 | ||
c326aa2b TH |
77 | bool css_has_online_children(struct cgroup_subsys_state *css); |
78 | struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss); | |
79 | struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgroup, | |
80 | struct cgroup_subsys *ss); | |
81 | struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry, | |
82 | struct cgroup_subsys *ss); | |
83 | ||
84 | bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor); | |
85 | int cgroup_attach_task_all(struct task_struct *from, struct task_struct *); | |
86 | int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from); | |
87 | ||
88 | int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts); | |
89 | int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts); | |
90 | int cgroup_rm_cftypes(struct cftype *cfts); | |
34c06254 | 91 | void cgroup_file_notify(struct cgroup_file *cfile); |
c326aa2b TH |
92 | |
93 | char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen); | |
94 | int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry); | |
95 | int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns, | |
96 | struct pid *pid, struct task_struct *tsk); | |
97 | ||
98 | void cgroup_fork(struct task_struct *p); | |
7e47682e AS |
99 | extern int cgroup_can_fork(struct task_struct *p, |
100 | void *ss_priv[CGROUP_CANFORK_COUNT]); | |
101 | extern void cgroup_cancel_fork(struct task_struct *p, | |
102 | void *ss_priv[CGROUP_CANFORK_COUNT]); | |
103 | extern void cgroup_post_fork(struct task_struct *p, | |
104 | void *old_ss_priv[CGROUP_CANFORK_COUNT]); | |
c326aa2b | 105 | void cgroup_exit(struct task_struct *p); |
2e91fa7f | 106 | void cgroup_free(struct task_struct *p); |
c326aa2b TH |
107 | |
108 | int cgroup_init_early(void); | |
109 | int cgroup_init(void); | |
110 | ||
5c9d535b | 111 | /* |
c326aa2b TH |
112 | * Iteration helpers and macros. |
113 | */ | |
114 | ||
115 | struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos, | |
116 | struct cgroup_subsys_state *parent); | |
117 | struct cgroup_subsys_state *css_next_descendant_pre(struct cgroup_subsys_state *pos, | |
118 | struct cgroup_subsys_state *css); | |
119 | struct cgroup_subsys_state *css_rightmost_descendant(struct cgroup_subsys_state *pos); | |
120 | struct cgroup_subsys_state *css_next_descendant_post(struct cgroup_subsys_state *pos, | |
121 | struct cgroup_subsys_state *css); | |
122 | ||
1f7dd3e5 TH |
123 | struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset, |
124 | struct cgroup_subsys_state **dst_cssp); | |
125 | struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset, | |
126 | struct cgroup_subsys_state **dst_cssp); | |
c326aa2b TH |
127 | |
128 | void css_task_iter_start(struct cgroup_subsys_state *css, | |
129 | struct css_task_iter *it); | |
130 | struct task_struct *css_task_iter_next(struct css_task_iter *it); | |
131 | void css_task_iter_end(struct css_task_iter *it); | |
132 | ||
133 | /** | |
134 | * css_for_each_child - iterate through children of a css | |
135 | * @pos: the css * to use as the loop cursor | |
136 | * @parent: css whose children to walk | |
137 | * | |
138 | * Walk @parent's children. Must be called under rcu_read_lock(). | |
139 | * | |
140 | * If a subsystem synchronizes ->css_online() and the start of iteration, a | |
141 | * css which finished ->css_online() is guaranteed to be visible in the | |
142 | * future iterations and will stay visible until the last reference is put. | |
143 | * A css which hasn't finished ->css_online() or already finished | |
144 | * ->css_offline() may show up during traversal. It's each subsystem's | |
145 | * responsibility to synchronize against on/offlining. | |
5c9d535b | 146 | * |
c326aa2b TH |
147 | * It is allowed to temporarily drop RCU read lock during iteration. The |
148 | * caller is responsible for ensuring that @pos remains accessible until | |
149 | * the start of the next iteration by, for example, bumping the css refcnt. | |
5c9d535b | 150 | */ |
c326aa2b TH |
151 | #define css_for_each_child(pos, parent) \ |
152 | for ((pos) = css_next_child(NULL, (parent)); (pos); \ | |
153 | (pos) = css_next_child((pos), (parent))) | |
ddbcc7e8 | 154 | |
c326aa2b TH |
155 | /** |
156 | * css_for_each_descendant_pre - pre-order walk of a css's descendants | |
157 | * @pos: the css * to use as the loop cursor | |
158 | * @root: css whose descendants to walk | |
159 | * | |
160 | * Walk @root's descendants. @root is included in the iteration and the | |
161 | * first node to be visited. Must be called under rcu_read_lock(). | |
162 | * | |
163 | * If a subsystem synchronizes ->css_online() and the start of iteration, a | |
164 | * css which finished ->css_online() is guaranteed to be visible in the | |
165 | * future iterations and will stay visible until the last reference is put. | |
166 | * A css which hasn't finished ->css_online() or already finished | |
167 | * ->css_offline() may show up during traversal. It's each subsystem's | |
168 | * responsibility to synchronize against on/offlining. | |
169 | * | |
170 | * For example, the following guarantees that a descendant can't escape | |
171 | * state updates of its ancestors. | |
172 | * | |
173 | * my_online(@css) | |
174 | * { | |
175 | * Lock @css's parent and @css; | |
176 | * Inherit state from the parent; | |
177 | * Unlock both. | |
178 | * } | |
179 | * | |
180 | * my_update_state(@css) | |
181 | * { | |
182 | * css_for_each_descendant_pre(@pos, @css) { | |
183 | * Lock @pos; | |
184 | * if (@pos == @css) | |
185 | * Update @css's state; | |
186 | * else | |
187 | * Verify @pos is alive and inherit state from its parent; | |
188 | * Unlock @pos; | |
189 | * } | |
190 | * } | |
191 | * | |
192 | * As long as the inheriting step, including checking the parent state, is | |
193 | * enclosed inside @pos locking, double-locking the parent isn't necessary | |
194 | * while inheriting. The state update to the parent is guaranteed to be | |
195 | * visible by walking order and, as long as inheriting operations to the | |
196 | * same @pos are atomic to each other, multiple updates racing each other | |
197 | * still result in the correct state. It's guaranateed that at least one | |
198 | * inheritance happens for any css after the latest update to its parent. | |
199 | * | |
200 | * If checking parent's state requires locking the parent, each inheriting | |
201 | * iteration should lock and unlock both @pos->parent and @pos. | |
202 | * | |
203 | * Alternatively, a subsystem may choose to use a single global lock to | |
204 | * synchronize ->css_online() and ->css_offline() against tree-walking | |
205 | * operations. | |
206 | * | |
207 | * It is allowed to temporarily drop RCU read lock during iteration. The | |
208 | * caller is responsible for ensuring that @pos remains accessible until | |
209 | * the start of the next iteration by, for example, bumping the css refcnt. | |
210 | */ | |
211 | #define css_for_each_descendant_pre(pos, css) \ | |
212 | for ((pos) = css_next_descendant_pre(NULL, (css)); (pos); \ | |
213 | (pos) = css_next_descendant_pre((pos), (css))) | |
214 | ||
215 | /** | |
216 | * css_for_each_descendant_post - post-order walk of a css's descendants | |
217 | * @pos: the css * to use as the loop cursor | |
218 | * @css: css whose descendants to walk | |
219 | * | |
220 | * Similar to css_for_each_descendant_pre() but performs post-order | |
221 | * traversal instead. @root is included in the iteration and the last | |
222 | * node to be visited. | |
223 | * | |
224 | * If a subsystem synchronizes ->css_online() and the start of iteration, a | |
225 | * css which finished ->css_online() is guaranteed to be visible in the | |
226 | * future iterations and will stay visible until the last reference is put. | |
227 | * A css which hasn't finished ->css_online() or already finished | |
228 | * ->css_offline() may show up during traversal. It's each subsystem's | |
229 | * responsibility to synchronize against on/offlining. | |
230 | * | |
231 | * Note that the walk visibility guarantee example described in pre-order | |
232 | * walk doesn't apply the same to post-order walks. | |
233 | */ | |
234 | #define css_for_each_descendant_post(pos, css) \ | |
235 | for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \ | |
236 | (pos) = css_next_descendant_post((pos), (css))) | |
237 | ||
238 | /** | |
239 | * cgroup_taskset_for_each - iterate cgroup_taskset | |
240 | * @task: the loop cursor | |
1f7dd3e5 | 241 | * @dst_css: the destination css |
c326aa2b | 242 | * @tset: taskset to iterate |
4530eddb TH |
243 | * |
244 | * @tset may contain multiple tasks and they may belong to multiple | |
1f7dd3e5 TH |
245 | * processes. |
246 | * | |
247 | * On the v2 hierarchy, there may be tasks from multiple processes and they | |
248 | * may not share the source or destination csses. | |
249 | * | |
250 | * On traditional hierarchies, when there are multiple tasks in @tset, if a | |
251 | * task of a process is in @tset, all tasks of the process are in @tset. | |
252 | * Also, all are guaranteed to share the same source and destination csses. | |
4530eddb TH |
253 | * |
254 | * Iteration is not in any specific order. | |
c326aa2b | 255 | */ |
1f7dd3e5 TH |
256 | #define cgroup_taskset_for_each(task, dst_css, tset) \ |
257 | for ((task) = cgroup_taskset_first((tset), &(dst_css)); \ | |
258 | (task); \ | |
259 | (task) = cgroup_taskset_next((tset), &(dst_css))) | |
ddbcc7e8 | 260 | |
4530eddb TH |
261 | /** |
262 | * cgroup_taskset_for_each_leader - iterate group leaders in a cgroup_taskset | |
263 | * @leader: the loop cursor | |
1f7dd3e5 | 264 | * @dst_css: the destination css |
4530eddb TH |
265 | * @tset: takset to iterate |
266 | * | |
267 | * Iterate threadgroup leaders of @tset. For single-task migrations, @tset | |
268 | * may not contain any. | |
269 | */ | |
1f7dd3e5 TH |
270 | #define cgroup_taskset_for_each_leader(leader, dst_css, tset) \ |
271 | for ((leader) = cgroup_taskset_first((tset), &(dst_css)); \ | |
272 | (leader); \ | |
273 | (leader) = cgroup_taskset_next((tset), &(dst_css))) \ | |
4530eddb TH |
274 | if ((leader) != (leader)->group_leader) \ |
275 | ; \ | |
276 | else | |
277 | ||
c326aa2b TH |
278 | /* |
279 | * Inline functions. | |
280 | */ | |
ddbcc7e8 | 281 | |
5de0107e TH |
282 | /** |
283 | * css_get - obtain a reference on the specified css | |
284 | * @css: target css | |
285 | * | |
286 | * The caller must already have a reference. | |
ddbcc7e8 | 287 | */ |
ddbcc7e8 PM |
288 | static inline void css_get(struct cgroup_subsys_state *css) |
289 | { | |
3b514d24 TH |
290 | if (!(css->flags & CSS_NO_REF)) |
291 | percpu_ref_get(&css->refcnt); | |
ddbcc7e8 | 292 | } |
e7c5ec91 | 293 | |
e8ea14cc JW |
294 | /** |
295 | * css_get_many - obtain references on the specified css | |
296 | * @css: target css | |
297 | * @n: number of references to get | |
298 | * | |
299 | * The caller must already have a reference. | |
300 | */ | |
301 | static inline void css_get_many(struct cgroup_subsys_state *css, unsigned int n) | |
302 | { | |
303 | if (!(css->flags & CSS_NO_REF)) | |
304 | percpu_ref_get_many(&css->refcnt, n); | |
305 | } | |
306 | ||
6f4524d3 TH |
307 | /** |
308 | * css_tryget - try to obtain a reference on the specified css | |
309 | * @css: target css | |
310 | * | |
311 | * Obtain a reference on @css unless it already has reached zero and is | |
312 | * being released. This function doesn't care whether @css is on or | |
313 | * offline. The caller naturally needs to ensure that @css is accessible | |
314 | * but doesn't have to be holding a reference on it - IOW, RCU protected | |
315 | * access is good enough for this function. Returns %true if a reference | |
316 | * count was successfully obtained; %false otherwise. | |
317 | */ | |
318 | static inline bool css_tryget(struct cgroup_subsys_state *css) | |
319 | { | |
320 | if (!(css->flags & CSS_NO_REF)) | |
321 | return percpu_ref_tryget(&css->refcnt); | |
322 | return true; | |
323 | } | |
324 | ||
5de0107e | 325 | /** |
ec903c0c | 326 | * css_tryget_online - try to obtain a reference on the specified css if online |
5de0107e TH |
327 | * @css: target css |
328 | * | |
ec903c0c TH |
329 | * Obtain a reference on @css if it's online. The caller naturally needs |
330 | * to ensure that @css is accessible but doesn't have to be holding a | |
5de0107e TH |
331 | * reference on it - IOW, RCU protected access is good enough for this |
332 | * function. Returns %true if a reference count was successfully obtained; | |
333 | * %false otherwise. | |
334 | */ | |
ec903c0c | 335 | static inline bool css_tryget_online(struct cgroup_subsys_state *css) |
e7c5ec91 | 336 | { |
3b514d24 TH |
337 | if (!(css->flags & CSS_NO_REF)) |
338 | return percpu_ref_tryget_live(&css->refcnt); | |
339 | return true; | |
e7c5ec91 | 340 | } |
2f7ee569 TH |
341 | |
342 | /** | |
5de0107e TH |
343 | * css_put - put a css reference |
344 | * @css: target css | |
345 | * | |
ec903c0c | 346 | * Put a reference obtained via css_get() and css_tryget_online(). |
2f7ee569 | 347 | */ |
ddbcc7e8 PM |
348 | static inline void css_put(struct cgroup_subsys_state *css) |
349 | { | |
3b514d24 TH |
350 | if (!(css->flags & CSS_NO_REF)) |
351 | percpu_ref_put(&css->refcnt); | |
ddbcc7e8 | 352 | } |
2f7ee569 | 353 | |
e8ea14cc JW |
354 | /** |
355 | * css_put_many - put css references | |
356 | * @css: target css | |
357 | * @n: number of references to put | |
358 | * | |
359 | * Put references obtained via css_get() and css_tryget_online(). | |
21acb9ca | 360 | */ |
e8ea14cc JW |
361 | static inline void css_put_many(struct cgroup_subsys_state *css, unsigned int n) |
362 | { | |
363 | if (!(css->flags & CSS_NO_REF)) | |
364 | percpu_ref_put_many(&css->refcnt, n); | |
365 | } | |
ddbcc7e8 | 366 | |
14611e51 TH |
367 | /** |
368 | * task_css_set_check - obtain a task's css_set with extra access conditions | |
369 | * @task: the task to obtain css_set for | |
370 | * @__c: extra condition expression to be passed to rcu_dereference_check() | |
371 | * | |
372 | * A task's css_set is RCU protected, initialized and exited while holding | |
373 | * task_lock(), and can only be modified while holding both cgroup_mutex | |
374 | * and task_lock() while the task is alive. This macro verifies that the | |
375 | * caller is inside proper critical section and returns @task's css_set. | |
376 | * | |
377 | * The caller can also specify additional allowed conditions via @__c, such | |
378 | * as locks used during the cgroup_subsys::attach() methods. | |
dc61b1d6 | 379 | */ |
2219449a TH |
380 | #ifdef CONFIG_PROVE_RCU |
381 | extern struct mutex cgroup_mutex; | |
f0d9a5f1 | 382 | extern spinlock_t css_set_lock; |
14611e51 TH |
383 | #define task_css_set_check(task, __c) \ |
384 | rcu_dereference_check((task)->cgroups, \ | |
0e1d768f | 385 | lockdep_is_held(&cgroup_mutex) || \ |
f0d9a5f1 | 386 | lockdep_is_held(&css_set_lock) || \ |
0e1d768f | 387 | ((task)->flags & PF_EXITING) || (__c)) |
2219449a | 388 | #else |
14611e51 TH |
389 | #define task_css_set_check(task, __c) \ |
390 | rcu_dereference((task)->cgroups) | |
2219449a | 391 | #endif |
dc61b1d6 | 392 | |
14611e51 | 393 | /** |
8af01f56 | 394 | * task_css_check - obtain css for (task, subsys) w/ extra access conds |
14611e51 TH |
395 | * @task: the target task |
396 | * @subsys_id: the target subsystem ID | |
397 | * @__c: extra condition expression to be passed to rcu_dereference_check() | |
398 | * | |
399 | * Return the cgroup_subsys_state for the (@task, @subsys_id) pair. The | |
400 | * synchronization rules are the same as task_css_set_check(). | |
401 | */ | |
8af01f56 | 402 | #define task_css_check(task, subsys_id, __c) \ |
14611e51 TH |
403 | task_css_set_check((task), (__c))->subsys[(subsys_id)] |
404 | ||
405 | /** | |
406 | * task_css_set - obtain a task's css_set | |
407 | * @task: the task to obtain css_set for | |
408 | * | |
409 | * See task_css_set_check(). | |
410 | */ | |
411 | static inline struct css_set *task_css_set(struct task_struct *task) | |
412 | { | |
413 | return task_css_set_check(task, false); | |
414 | } | |
415 | ||
416 | /** | |
8af01f56 | 417 | * task_css - obtain css for (task, subsys) |
14611e51 TH |
418 | * @task: the target task |
419 | * @subsys_id: the target subsystem ID | |
420 | * | |
8af01f56 | 421 | * See task_css_check(). |
14611e51 | 422 | */ |
8af01f56 TH |
423 | static inline struct cgroup_subsys_state *task_css(struct task_struct *task, |
424 | int subsys_id) | |
ddbcc7e8 | 425 | { |
8af01f56 | 426 | return task_css_check(task, subsys_id, false); |
ddbcc7e8 PM |
427 | } |
428 | ||
ec438699 TH |
429 | /** |
430 | * task_get_css - find and get the css for (task, subsys) | |
431 | * @task: the target task | |
432 | * @subsys_id: the target subsystem ID | |
433 | * | |
434 | * Find the css for the (@task, @subsys_id) combination, increment a | |
435 | * reference on and return it. This function is guaranteed to return a | |
436 | * valid css. | |
437 | */ | |
438 | static inline struct cgroup_subsys_state * | |
439 | task_get_css(struct task_struct *task, int subsys_id) | |
440 | { | |
441 | struct cgroup_subsys_state *css; | |
442 | ||
443 | rcu_read_lock(); | |
444 | while (true) { | |
445 | css = task_css(task, subsys_id); | |
446 | if (likely(css_tryget_online(css))) | |
447 | break; | |
448 | cpu_relax(); | |
449 | } | |
450 | rcu_read_unlock(); | |
451 | return css; | |
452 | } | |
453 | ||
5024ae29 TH |
454 | /** |
455 | * task_css_is_root - test whether a task belongs to the root css | |
456 | * @task: the target task | |
457 | * @subsys_id: the target subsystem ID | |
458 | * | |
459 | * Test whether @task belongs to the root css on the specified subsystem. | |
460 | * May be invoked in any context. | |
461 | */ | |
462 | static inline bool task_css_is_root(struct task_struct *task, int subsys_id) | |
463 | { | |
464 | return task_css_check(task, subsys_id, true) == | |
465 | init_css_set.subsys[subsys_id]; | |
466 | } | |
467 | ||
8af01f56 TH |
468 | static inline struct cgroup *task_cgroup(struct task_struct *task, |
469 | int subsys_id) | |
ddbcc7e8 | 470 | { |
8af01f56 | 471 | return task_css(task, subsys_id)->cgroup; |
ddbcc7e8 PM |
472 | } |
473 | ||
07bc356e | 474 | /* no synchronization, the result can only be used as a hint */ |
27bd4dbb | 475 | static inline bool cgroup_is_populated(struct cgroup *cgrp) |
07bc356e | 476 | { |
27bd4dbb | 477 | return cgrp->populated_cnt; |
07bc356e | 478 | } |
f3d46500 | 479 | |
f29374b1 | 480 | /* returns ino associated with a cgroup */ |
b1664924 TH |
481 | static inline ino_t cgroup_ino(struct cgroup *cgrp) |
482 | { | |
f29374b1 | 483 | return cgrp->kn->ino; |
b1664924 | 484 | } |
3ebb2b6e | 485 | |
b4168640 TH |
486 | /* cft/css accessors for cftype->write() operation */ |
487 | static inline struct cftype *of_cft(struct kernfs_open_file *of) | |
7da11279 | 488 | { |
2bd59d48 | 489 | return of->kn->priv; |
7da11279 | 490 | } |
0f0a2b4f | 491 | |
b4168640 | 492 | struct cgroup_subsys_state *of_css(struct kernfs_open_file *of); |
817929ec | 493 | |
b4168640 TH |
494 | /* cft/css accessors for cftype->seq_*() operations */ |
495 | static inline struct cftype *seq_cft(struct seq_file *seq) | |
496 | { | |
497 | return of_cft(seq->private); | |
498 | } | |
e535837b | 499 | |
b4168640 TH |
500 | static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq) |
501 | { | |
502 | return of_css(seq->private); | |
503 | } | |
31583bb0 | 504 | |
e61734c5 TH |
505 | /* |
506 | * Name / path handling functions. All are thin wrappers around the kernfs | |
507 | * counterparts and can be called under any context. | |
508 | */ | |
38460b48 | 509 | |
e61734c5 TH |
510 | static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen) |
511 | { | |
fdce6bf8 | 512 | return kernfs_name(cgrp->kn, buf, buflen); |
e61734c5 | 513 | } |
ddbcc7e8 | 514 | |
e61734c5 TH |
515 | static inline char * __must_check cgroup_path(struct cgroup *cgrp, char *buf, |
516 | size_t buflen) | |
517 | { | |
fdce6bf8 | 518 | return kernfs_path(cgrp->kn, buf, buflen); |
e61734c5 | 519 | } |
f3ba5380 | 520 | |
e61734c5 TH |
521 | static inline void pr_cont_cgroup_name(struct cgroup *cgrp) |
522 | { | |
fdce6bf8 | 523 | pr_cont_kernfs_name(cgrp->kn); |
e61734c5 | 524 | } |
ddbcc7e8 | 525 | |
e61734c5 | 526 | static inline void pr_cont_cgroup_path(struct cgroup *cgrp) |
846c7bb0 | 527 | { |
fdce6bf8 | 528 | pr_cont_kernfs_path(cgrp->kn); |
6f60eade TH |
529 | } |
530 | ||
ddbcc7e8 PM |
531 | #else /* !CONFIG_CGROUPS */ |
532 | ||
f3ba5380 | 533 | struct cgroup_subsys_state; |
f3ba5380 | 534 | |
c326aa2b | 535 | static inline void css_put(struct cgroup_subsys_state *css) {} |
31583bb0 | 536 | static inline int cgroup_attach_task_all(struct task_struct *from, |
c326aa2b TH |
537 | struct task_struct *t) { return 0; } |
538 | static inline int cgroupstats_build(struct cgroupstats *stats, | |
539 | struct dentry *dentry) { return -EINVAL; } | |
540 | ||
b4f48b63 | 541 | static inline void cgroup_fork(struct task_struct *p) {} |
7e47682e AS |
542 | static inline int cgroup_can_fork(struct task_struct *p, |
543 | void *ss_priv[CGROUP_CANFORK_COUNT]) | |
544 | { return 0; } | |
545 | static inline void cgroup_cancel_fork(struct task_struct *p, | |
546 | void *ss_priv[CGROUP_CANFORK_COUNT]) {} | |
547 | static inline void cgroup_post_fork(struct task_struct *p, | |
548 | void *ss_priv[CGROUP_CANFORK_COUNT]) {} | |
1ec41830 | 549 | static inline void cgroup_exit(struct task_struct *p) {} |
2e91fa7f | 550 | static inline void cgroup_free(struct task_struct *p) {} |
ddbcc7e8 | 551 | |
c326aa2b TH |
552 | static inline int cgroup_init_early(void) { return 0; } |
553 | static inline int cgroup_init(void) { return 0; } | |
d7926ee3 | 554 | |
ddbcc7e8 PM |
555 | #endif /* !CONFIG_CGROUPS */ |
556 | ||
557 | #endif /* _LINUX_CGROUP_H */ |