blob: c3a9f1eb409739e12453073bee03081cf17fa99e [file] [log] [blame]
Paul Menageddbcc7e2007-10-18 23:39:30 -07001#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>
Paul Menageddbcc7e2007-10-18 23:39:30 -070012#include <linux/cpumask.h>
13#include <linux/nodemask.h>
Tejun Heoeb6fd502012-11-09 09:12:29 -080014#include <linux/rculist.h>
Balbir Singh846c7bb2007-10-18 23:39:44 -070015#include <linux/cgroupstats.h>
Paul Menagecc31edc2008-10-18 20:28:04 -070016#include <linux/rwsem.h>
Tejun Heo25a7e682013-04-14 20:15:25 -070017#include <linux/fs.h>
Tejun Heo7da11272013-12-05 12:28:04 -050018#include <linux/seq_file.h>
Tejun Heo2bd59d42014-02-11 11:52:49 -050019#include <linux/kernfs.h>
Tejun Heo49d1dc42015-09-18 11:56:28 -040020#include <linux/jump_label.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040021
22#include <linux/cgroup-defs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070023
24#ifdef CONFIG_CGROUPS
25
Tejun Heo6abc8ca2015-08-04 15:20:55 -040026/*
27 * All weight knobs on the default hierarhcy should use the following min,
28 * default and max values. The default value is the logarithmic center of
29 * MIN and MAX and allows 100x to be expressed in both directions.
30 */
31#define CGROUP_WEIGHT_MIN 1
32#define CGROUP_WEIGHT_DFL 100
33#define CGROUP_WEIGHT_MAX 10000
34
Tejun Heoc326aa22015-05-13 16:24:16 -040035/* a css_task_iter should be treated as an opaque object */
36struct css_task_iter {
37 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -070038
Tejun Heoc326aa22015-05-13 16:24:16 -040039 struct list_head *cset_pos;
40 struct list_head *cset_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -070041
Tejun Heoc326aa22015-05-13 16:24:16 -040042 struct list_head *task_pos;
43 struct list_head *tasks_head;
44 struct list_head *mg_tasks_head;
Paul Menage817929e2007-10-18 23:39:36 -070045};
Tejun Heoc326aa22015-05-13 16:24:16 -040046
47extern struct cgroup_root cgrp_dfl_root;
48extern struct css_set init_css_set;
49
50#define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys;
51#include <linux/cgroup_subsys.h>
Paul Menage817929e2007-10-18 23:39:36 -070052#undef SUBSYS
53
Tejun Heo49d1dc42015-09-18 11:56:28 -040054#define SUBSYS(_x) \
55 extern struct static_key_true _x ## _cgrp_subsys_enabled_key; \
56 extern struct static_key_true _x ## _cgrp_subsys_on_dfl_key;
57#include <linux/cgroup_subsys.h>
58#undef SUBSYS
59
60/**
61 * cgroup_subsys_enabled - fast test on whether a subsys is enabled
62 * @ss: subsystem in question
63 */
64#define cgroup_subsys_enabled(ss) \
65 static_branch_likely(&ss ## _enabled_key)
66
67/**
68 * cgroup_subsys_on_dfl - fast test on whether a subsys is on default hierarchy
69 * @ss: subsystem in question
70 */
71#define cgroup_subsys_on_dfl(ss) \
72 static_branch_likely(&ss ## _on_dfl_key)
73
Tejun Heoc326aa22015-05-13 16:24:16 -040074bool css_has_online_children(struct cgroup_subsys_state *css);
75struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss);
76struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgroup,
77 struct cgroup_subsys *ss);
78struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
79 struct cgroup_subsys *ss);
80
81bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor);
82int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
83int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
84
85int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
86int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
87int cgroup_rm_cftypes(struct cftype *cfts);
88
89char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen);
90int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry);
91int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
92 struct pid *pid, struct task_struct *tsk);
93
94void cgroup_fork(struct task_struct *p);
Aleksa Sarai7e476822015-06-09 21:32:09 +100095extern int cgroup_can_fork(struct task_struct *p,
96 void *ss_priv[CGROUP_CANFORK_COUNT]);
97extern void cgroup_cancel_fork(struct task_struct *p,
98 void *ss_priv[CGROUP_CANFORK_COUNT]);
99extern void cgroup_post_fork(struct task_struct *p,
100 void *old_ss_priv[CGROUP_CANFORK_COUNT]);
Tejun Heoc326aa22015-05-13 16:24:16 -0400101void cgroup_exit(struct task_struct *p);
102
103int cgroup_init_early(void);
104int cgroup_init(void);
105
Tejun Heo5c9d5352014-05-16 13:22:48 -0400106/*
Tejun Heoc326aa22015-05-13 16:24:16 -0400107 * Iteration helpers and macros.
Tejun Heo5c9d5352014-05-16 13:22:48 -0400108 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700109
Tejun Heoc326aa22015-05-13 16:24:16 -0400110struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
111 struct cgroup_subsys_state *parent);
112struct cgroup_subsys_state *css_next_descendant_pre(struct cgroup_subsys_state *pos,
113 struct cgroup_subsys_state *css);
114struct cgroup_subsys_state *css_rightmost_descendant(struct cgroup_subsys_state *pos);
115struct cgroup_subsys_state *css_next_descendant_post(struct cgroup_subsys_state *pos,
116 struct cgroup_subsys_state *css);
Tejun Heo72c97e52013-08-08 20:11:22 -0400117
Tejun Heoc326aa22015-05-13 16:24:16 -0400118struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset);
119struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700120
Tejun Heoc326aa22015-05-13 16:24:16 -0400121void css_task_iter_start(struct cgroup_subsys_state *css,
122 struct css_task_iter *it);
123struct task_struct *css_task_iter_next(struct css_task_iter *it);
124void css_task_iter_end(struct css_task_iter *it);
Tejun Heo0ae78e02013-08-13 11:01:54 -0400125
Tejun Heoc326aa22015-05-13 16:24:16 -0400126/**
127 * css_for_each_child - iterate through children of a css
128 * @pos: the css * to use as the loop cursor
129 * @parent: css whose children to walk
130 *
131 * Walk @parent's children. Must be called under rcu_read_lock().
132 *
133 * If a subsystem synchronizes ->css_online() and the start of iteration, a
134 * css which finished ->css_online() is guaranteed to be visible in the
135 * future iterations and will stay visible until the last reference is put.
136 * A css which hasn't finished ->css_online() or already finished
137 * ->css_offline() may show up during traversal. It's each subsystem's
138 * responsibility to synchronize against on/offlining.
139 *
140 * It is allowed to temporarily drop RCU read lock during iteration. The
141 * caller is responsible for ensuring that @pos remains accessible until
142 * the start of the next iteration by, for example, bumping the css refcnt.
143 */
144#define css_for_each_child(pos, parent) \
145 for ((pos) = css_next_child(NULL, (parent)); (pos); \
146 (pos) = css_next_child((pos), (parent)))
Tejun Heod5c419b2014-05-16 13:22:48 -0400147
Tejun Heoc326aa22015-05-13 16:24:16 -0400148/**
149 * css_for_each_descendant_pre - pre-order walk of a css's descendants
150 * @pos: the css * to use as the loop cursor
151 * @root: css whose descendants to walk
152 *
153 * Walk @root's descendants. @root is included in the iteration and the
154 * first node to be visited. Must be called under rcu_read_lock().
155 *
156 * If a subsystem synchronizes ->css_online() and the start of iteration, a
157 * css which finished ->css_online() is guaranteed to be visible in the
158 * future iterations and will stay visible until the last reference is put.
159 * A css which hasn't finished ->css_online() or already finished
160 * ->css_offline() may show up during traversal. It's each subsystem's
161 * responsibility to synchronize against on/offlining.
162 *
163 * For example, the following guarantees that a descendant can't escape
164 * state updates of its ancestors.
165 *
166 * my_online(@css)
167 * {
168 * Lock @css's parent and @css;
169 * Inherit state from the parent;
170 * Unlock both.
171 * }
172 *
173 * my_update_state(@css)
174 * {
175 * css_for_each_descendant_pre(@pos, @css) {
176 * Lock @pos;
177 * if (@pos == @css)
178 * Update @css's state;
179 * else
180 * Verify @pos is alive and inherit state from its parent;
181 * Unlock @pos;
182 * }
183 * }
184 *
185 * As long as the inheriting step, including checking the parent state, is
186 * enclosed inside @pos locking, double-locking the parent isn't necessary
187 * while inheriting. The state update to the parent is guaranteed to be
188 * visible by walking order and, as long as inheriting operations to the
189 * same @pos are atomic to each other, multiple updates racing each other
190 * still result in the correct state. It's guaranateed that at least one
191 * inheritance happens for any css after the latest update to its parent.
192 *
193 * If checking parent's state requires locking the parent, each inheriting
194 * iteration should lock and unlock both @pos->parent and @pos.
195 *
196 * Alternatively, a subsystem may choose to use a single global lock to
197 * synchronize ->css_online() and ->css_offline() against tree-walking
198 * operations.
199 *
200 * It is allowed to temporarily drop RCU read lock during iteration. The
201 * caller is responsible for ensuring that @pos remains accessible until
202 * the start of the next iteration by, for example, bumping the css refcnt.
203 */
204#define css_for_each_descendant_pre(pos, css) \
205 for ((pos) = css_next_descendant_pre(NULL, (css)); (pos); \
206 (pos) = css_next_descendant_pre((pos), (css)))
Tejun Heo15a4c832014-05-04 15:09:14 -0400207
Tejun Heoc326aa22015-05-13 16:24:16 -0400208/**
209 * css_for_each_descendant_post - post-order walk of a css's descendants
210 * @pos: the css * to use as the loop cursor
211 * @css: css whose descendants to walk
212 *
213 * Similar to css_for_each_descendant_pre() but performs post-order
214 * traversal instead. @root is included in the iteration and the last
215 * node to be visited.
216 *
217 * If a subsystem synchronizes ->css_online() and the start of iteration, a
218 * css which finished ->css_online() is guaranteed to be visible in the
219 * future iterations and will stay visible until the last reference is put.
220 * A css which hasn't finished ->css_online() or already finished
221 * ->css_offline() may show up during traversal. It's each subsystem's
222 * responsibility to synchronize against on/offlining.
223 *
224 * Note that the walk visibility guarantee example described in pre-order
225 * walk doesn't apply the same to post-order walks.
226 */
227#define css_for_each_descendant_post(pos, css) \
228 for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \
229 (pos) = css_next_descendant_post((pos), (css)))
Tejun Heo48ddbe12012-04-01 12:09:56 -0700230
Tejun Heoc326aa22015-05-13 16:24:16 -0400231/**
232 * cgroup_taskset_for_each - iterate cgroup_taskset
233 * @task: the loop cursor
234 * @tset: taskset to iterate
235 */
236#define cgroup_taskset_for_each(task, tset) \
237 for ((task) = cgroup_taskset_first((tset)); (task); \
238 (task) = cgroup_taskset_next((tset)))
Tejun Heo0cb51d72014-05-16 13:22:49 -0400239
Tejun Heoc326aa22015-05-13 16:24:16 -0400240/*
241 * Inline functions.
242 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700243
Tejun Heo5de01072013-06-12 21:04:52 -0700244/**
245 * css_get - obtain a reference on the specified css
246 * @css: target css
247 *
248 * The caller must already have a reference.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700249 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700250static inline void css_get(struct cgroup_subsys_state *css)
251{
Tejun Heo3b514d22014-05-16 13:22:47 -0400252 if (!(css->flags & CSS_NO_REF))
253 percpu_ref_get(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700254}
Paul Menagee7c5ec92009-01-07 18:08:38 -0800255
Tejun Heo5de01072013-06-12 21:04:52 -0700256/**
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800257 * css_get_many - obtain references on the specified css
258 * @css: target css
259 * @n: number of references to get
260 *
261 * The caller must already have a reference.
262 */
263static inline void css_get_many(struct cgroup_subsys_state *css, unsigned int n)
264{
265 if (!(css->flags & CSS_NO_REF))
266 percpu_ref_get_many(&css->refcnt, n);
267}
268
269/**
Tejun Heo6f4524d2014-05-16 13:22:52 -0400270 * css_tryget - try to obtain a reference on the specified css
271 * @css: target css
272 *
273 * Obtain a reference on @css unless it already has reached zero and is
274 * being released. This function doesn't care whether @css is on or
275 * offline. The caller naturally needs to ensure that @css is accessible
276 * but doesn't have to be holding a reference on it - IOW, RCU protected
277 * access is good enough for this function. Returns %true if a reference
278 * count was successfully obtained; %false otherwise.
279 */
280static inline bool css_tryget(struct cgroup_subsys_state *css)
281{
282 if (!(css->flags & CSS_NO_REF))
283 return percpu_ref_tryget(&css->refcnt);
284 return true;
285}
286
287/**
Tejun Heoec903c02014-05-13 12:11:01 -0400288 * css_tryget_online - try to obtain a reference on the specified css if online
Tejun Heo5de01072013-06-12 21:04:52 -0700289 * @css: target css
290 *
Tejun Heoec903c02014-05-13 12:11:01 -0400291 * Obtain a reference on @css if it's online. The caller naturally needs
292 * to ensure that @css is accessible but doesn't have to be holding a
Tejun Heo5de01072013-06-12 21:04:52 -0700293 * reference on it - IOW, RCU protected access is good enough for this
294 * function. Returns %true if a reference count was successfully obtained;
295 * %false otherwise.
296 */
Tejun Heoec903c02014-05-13 12:11:01 -0400297static inline bool css_tryget_online(struct cgroup_subsys_state *css)
Paul Menagee7c5ec92009-01-07 18:08:38 -0800298{
Tejun Heo3b514d22014-05-16 13:22:47 -0400299 if (!(css->flags & CSS_NO_REF))
300 return percpu_ref_tryget_live(&css->refcnt);
301 return true;
Paul Menagee7c5ec92009-01-07 18:08:38 -0800302}
303
Tejun Heo5de01072013-06-12 21:04:52 -0700304/**
305 * css_put - put a css reference
306 * @css: target css
307 *
Tejun Heoec903c02014-05-13 12:11:01 -0400308 * Put a reference obtained via css_get() and css_tryget_online().
Tejun Heo5de01072013-06-12 21:04:52 -0700309 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700310static inline void css_put(struct cgroup_subsys_state *css)
311{
Tejun Heo3b514d22014-05-16 13:22:47 -0400312 if (!(css->flags & CSS_NO_REF))
313 percpu_ref_put(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700314}
315
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800316/**
317 * css_put_many - put css references
318 * @css: target css
319 * @n: number of references to put
320 *
321 * Put references obtained via css_get() and css_tryget_online().
322 */
323static inline void css_put_many(struct cgroup_subsys_state *css, unsigned int n)
324{
325 if (!(css->flags & CSS_NO_REF))
326 percpu_ref_put_many(&css->refcnt, n);
327}
328
Tejun Heoc326aa22015-05-13 16:24:16 -0400329/**
330 * task_css_set_check - obtain a task's css_set with extra access conditions
331 * @task: the task to obtain css_set for
332 * @__c: extra condition expression to be passed to rcu_dereference_check()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700333 *
Tejun Heoc326aa22015-05-13 16:24:16 -0400334 * A task's css_set is RCU protected, initialized and exited while holding
335 * task_lock(), and can only be modified while holding both cgroup_mutex
336 * and task_lock() while the task is alive. This macro verifies that the
337 * caller is inside proper critical section and returns @task's css_set.
338 *
339 * The caller can also specify additional allowed conditions via @__c, such
340 * as locks used during the cgroup_subsys::attach() methods.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700341 */
Tejun Heoc326aa22015-05-13 16:24:16 -0400342#ifdef CONFIG_PROVE_RCU
343extern struct mutex cgroup_mutex;
344extern struct rw_semaphore css_set_rwsem;
345#define task_css_set_check(task, __c) \
346 rcu_dereference_check((task)->cgroups, \
347 lockdep_is_held(&cgroup_mutex) || \
348 lockdep_is_held(&css_set_rwsem) || \
349 ((task)->flags & PF_EXITING) || (__c))
350#else
351#define task_css_set_check(task, __c) \
352 rcu_dereference((task)->cgroups)
Tejun Heo2bd59d42014-02-11 11:52:49 -0500353#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -0700354
Tejun Heoc326aa22015-05-13 16:24:16 -0400355/**
356 * task_css_check - obtain css for (task, subsys) w/ extra access conds
357 * @task: the target task
358 * @subsys_id: the target subsystem ID
359 * @__c: extra condition expression to be passed to rcu_dereference_check()
360 *
361 * Return the cgroup_subsys_state for the (@task, @subsys_id) pair. The
362 * synchronization rules are the same as task_css_set_check().
363 */
364#define task_css_check(task, subsys_id, __c) \
365 task_css_set_check((task), (__c))->subsys[(subsys_id)]
366
367/**
368 * task_css_set - obtain a task's css_set
369 * @task: the task to obtain css_set for
370 *
371 * See task_css_set_check().
372 */
373static inline struct css_set *task_css_set(struct task_struct *task)
374{
375 return task_css_set_check(task, false);
376}
377
378/**
379 * task_css - obtain css for (task, subsys)
380 * @task: the target task
381 * @subsys_id: the target subsystem ID
382 *
383 * See task_css_check().
384 */
385static inline struct cgroup_subsys_state *task_css(struct task_struct *task,
386 int subsys_id)
387{
388 return task_css_check(task, subsys_id, false);
389}
390
391/**
Linus Torvaldsbbe179f2015-06-26 19:50:04 -0700392 * task_get_css - find and get the css for (task, subsys)
393 * @task: the target task
394 * @subsys_id: the target subsystem ID
395 *
396 * Find the css for the (@task, @subsys_id) combination, increment a
397 * reference on and return it. This function is guaranteed to return a
398 * valid css.
399 */
400static inline struct cgroup_subsys_state *
401task_get_css(struct task_struct *task, int subsys_id)
402{
403 struct cgroup_subsys_state *css;
404
405 rcu_read_lock();
406 while (true) {
407 css = task_css(task, subsys_id);
408 if (likely(css_tryget_online(css)))
409 break;
410 cpu_relax();
411 }
412 rcu_read_unlock();
413 return css;
414}
415
416/**
Tejun Heoc326aa22015-05-13 16:24:16 -0400417 * task_css_is_root - test whether a task belongs to the root css
418 * @task: the target task
419 * @subsys_id: the target subsystem ID
420 *
421 * Test whether @task belongs to the root css on the specified subsystem.
422 * May be invoked in any context.
423 */
424static inline bool task_css_is_root(struct task_struct *task, int subsys_id)
425{
426 return task_css_check(task, subsys_id, true) ==
427 init_css_set.subsys[subsys_id];
428}
429
430static inline struct cgroup *task_cgroup(struct task_struct *task,
431 int subsys_id)
432{
433 return task_css(task, subsys_id)->cgroup;
434}
Tejun Heoa2dd4242014-03-19 10:23:55 -0400435
Tejun Heoaa6ec292014-07-09 10:08:08 -0400436/**
437 * cgroup_on_dfl - test whether a cgroup is on the default hierarchy
438 * @cgrp: the cgroup of interest
439 *
440 * The default hierarchy is the v2 interface of cgroup and this function
441 * can be used to test whether a cgroup is on the default hierarchy for
442 * cases where a subsystem should behave differnetly depending on the
443 * interface version.
444 *
445 * The set of behaviors which change on the default hierarchy are still
446 * being determined and the mount option is prefixed with __DEVEL__.
447 *
448 * List of changed behaviors:
449 *
450 * - Mount options "noprefix", "xattr", "clone_children", "release_agent"
451 * and "name" are disallowed.
452 *
453 * - When mounting an existing superblock, mount options should match.
454 *
455 * - Remount is disallowed.
456 *
457 * - rename(2) is disallowed.
458 *
459 * - "tasks" is removed. Everything should be at process granularity. Use
460 * "cgroup.procs" instead.
461 *
462 * - "cgroup.procs" is not sorted. pids will be unique unless they got
463 * recycled inbetween reads.
464 *
465 * - "release_agent" and "notify_on_release" are removed. Replacement
466 * notification mechanism will be implemented.
467 *
468 * - "cgroup.clone_children" is removed.
469 *
470 * - "cgroup.subtree_populated" is available. Its value is 0 if the cgroup
471 * and its descendants contain no task; otherwise, 1. The file also
472 * generates kernfs notification which can be monitored through poll and
473 * [di]notify when the value of the file changes.
474 *
475 * - cpuset: tasks will be kept in empty cpusets when hotplug happens and
476 * take masks of ancestors with non-empty cpus/mems, instead of being
477 * moved to an ancestor.
478 *
479 * - cpuset: a task can be moved into an empty cpuset, and again it takes
480 * masks of ancestors.
481 *
482 * - memcg: use_hierarchy is on by default and the cgroup file for the flag
483 * is not created.
484 *
485 * - blkcg: blk-throttle becomes properly hierarchical.
486 *
487 * - debug: disallowed on the default hierarchy.
488 */
Tejun Heoa2dd4242014-03-19 10:23:55 -0400489static inline bool cgroup_on_dfl(const struct cgroup *cgrp)
490{
491 return cgrp->root == &cgrp_dfl_root;
492}
493
Tejun Heo07bc3562014-02-13 06:58:39 -0500494/* no synchronization, the result can only be used as a hint */
495static inline bool cgroup_has_tasks(struct cgroup *cgrp)
496{
497 return !list_empty(&cgrp->cset_links);
498}
499
Zefan Lif29374b2014-09-19 16:29:31 +0800500/* returns ino associated with a cgroup */
Tejun Heob1664922014-02-11 11:52:49 -0500501static inline ino_t cgroup_ino(struct cgroup *cgrp)
502{
Zefan Lif29374b2014-09-19 16:29:31 +0800503 return cgrp->kn->ino;
Tejun Heob1664922014-02-11 11:52:49 -0500504}
505
Tejun Heob4168642014-05-13 12:16:21 -0400506/* cft/css accessors for cftype->write() operation */
507static inline struct cftype *of_cft(struct kernfs_open_file *of)
Tejun Heo7da11272013-12-05 12:28:04 -0500508{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500509 return of->kn->priv;
Tejun Heo7da11272013-12-05 12:28:04 -0500510}
511
Tejun Heob4168642014-05-13 12:16:21 -0400512struct cgroup_subsys_state *of_css(struct kernfs_open_file *of);
513
514/* cft/css accessors for cftype->seq_*() operations */
515static inline struct cftype *seq_cft(struct seq_file *seq)
516{
517 return of_cft(seq->private);
518}
519
520static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq)
521{
522 return of_css(seq->private);
523}
Tejun Heo59f52962014-02-11 11:52:49 -0500524
Tejun Heoe61734c2014-02-12 09:29:50 -0500525/*
526 * Name / path handling functions. All are thin wrappers around the kernfs
527 * counterparts and can be called under any context.
528 */
529
530static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen)
531{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400532 return kernfs_name(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500533}
534
535static inline char * __must_check cgroup_path(struct cgroup *cgrp, char *buf,
536 size_t buflen)
537{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400538 return kernfs_path(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500539}
540
541static inline void pr_cont_cgroup_name(struct cgroup *cgrp)
542{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400543 pr_cont_kernfs_name(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500544}
545
546static inline void pr_cont_cgroup_path(struct cgroup *cgrp)
547{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400548 pr_cont_kernfs_path(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500549}
550
Paul Menageddbcc7e2007-10-18 23:39:30 -0700551#else /* !CONFIG_CGROUPS */
552
Tejun Heof3ba5382015-01-06 12:02:46 -0500553struct cgroup_subsys_state;
554
Tejun Heoc326aa22015-05-13 16:24:16 -0400555static inline void css_put(struct cgroup_subsys_state *css) {}
556static inline int cgroup_attach_task_all(struct task_struct *from,
557 struct task_struct *t) { return 0; }
558static inline int cgroupstats_build(struct cgroupstats *stats,
559 struct dentry *dentry) { return -EINVAL; }
560
Paul Menageb4f48b62007-10-18 23:39:33 -0700561static inline void cgroup_fork(struct task_struct *p) {}
Aleksa Sarai7e476822015-06-09 21:32:09 +1000562static inline int cgroup_can_fork(struct task_struct *p,
563 void *ss_priv[CGROUP_CANFORK_COUNT])
564{ return 0; }
565static inline void cgroup_cancel_fork(struct task_struct *p,
566 void *ss_priv[CGROUP_CANFORK_COUNT]) {}
567static inline void cgroup_post_fork(struct task_struct *p,
568 void *ss_priv[CGROUP_CANFORK_COUNT]) {}
Li Zefan1ec41832014-03-28 15:22:19 +0800569static inline void cgroup_exit(struct task_struct *p) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700570
Tejun Heoc326aa22015-05-13 16:24:16 -0400571static inline int cgroup_init_early(void) { return 0; }
572static inline int cgroup_init(void) { return 0; }
Sridhar Samudralad7926ee2010-05-30 22:24:39 +0200573
Paul Menageddbcc7e2007-10-18 23:39:30 -0700574#endif /* !CONFIG_CGROUPS */
575
Paul Menageddbcc7e2007-10-18 23:39:30 -0700576#endif /* _LINUX_CGROUP_H */