blob: f64083030ad51bd73816ad138fa5df0f00e07a67 [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>
Tejun Heo25a7e682013-04-14 20:15:25 -070016#include <linux/fs.h>
Tejun Heo7da11272013-12-05 12:28:04 -050017#include <linux/seq_file.h>
Tejun Heo2bd59d42014-02-11 11:52:49 -050018#include <linux/kernfs.h>
Tejun Heo49d1dc42015-09-18 11:56:28 -040019#include <linux/jump_label.h>
Tejun Heob4a04ab2015-05-13 15:38:40 -040020
21#include <linux/cgroup-defs.h>
Paul Menageddbcc7e2007-10-18 23:39:30 -070022
23#ifdef CONFIG_CGROUPS
24
Tejun Heo6abc8ca2015-08-04 15:20:55 -040025/*
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
Tejun Heoc326aa22015-05-13 16:24:16 -040034/* a css_task_iter should be treated as an opaque object */
35struct css_task_iter {
36 struct cgroup_subsys *ss;
Paul Menageddbcc7e2007-10-18 23:39:30 -070037
Tejun Heoc326aa22015-05-13 16:24:16 -040038 struct list_head *cset_pos;
39 struct list_head *cset_head;
Paul Menageddbcc7e2007-10-18 23:39:30 -070040
Tejun Heoc326aa22015-05-13 16:24:16 -040041 struct list_head *task_pos;
42 struct list_head *tasks_head;
43 struct list_head *mg_tasks_head;
Tejun Heoed27b9f2015-10-15 16:41:52 -040044
45 struct css_set *cur_cset;
46 struct task_struct *cur_task;
47 struct list_head iters_node; /* css_set->task_iters */
Paul Menage817929e2007-10-18 23:39:36 -070048};
Tejun Heoc326aa22015-05-13 16:24:16 -040049
50extern struct cgroup_root cgrp_dfl_root;
51extern struct css_set init_css_set;
52
53#define SUBSYS(_x) extern struct cgroup_subsys _x ## _cgrp_subsys;
54#include <linux/cgroup_subsys.h>
Paul Menage817929e2007-10-18 23:39:36 -070055#undef SUBSYS
56
Tejun Heo49d1dc42015-09-18 11:56:28 -040057#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
Tejun Heoc326aa22015-05-13 16:24:16 -040077bool css_has_online_children(struct cgroup_subsys_state *css);
78struct cgroup_subsys_state *css_from_id(int id, struct cgroup_subsys *ss);
79struct cgroup_subsys_state *cgroup_get_e_css(struct cgroup *cgroup,
80 struct cgroup_subsys *ss);
81struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
82 struct cgroup_subsys *ss);
83
84bool cgroup_is_descendant(struct cgroup *cgrp, struct cgroup *ancestor);
85int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
86int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
87
88int cgroup_add_dfl_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
89int cgroup_add_legacy_cftypes(struct cgroup_subsys *ss, struct cftype *cfts);
90int cgroup_rm_cftypes(struct cftype *cfts);
Tejun Heo34c06252015-11-05 00:12:24 -050091void cgroup_file_notify(struct cgroup_file *cfile);
Tejun Heoc326aa22015-05-13 16:24:16 -040092
93char *task_cgroup_path(struct task_struct *task, char *buf, size_t buflen);
94int cgroupstats_build(struct cgroupstats *stats, struct dentry *dentry);
95int proc_cgroup_show(struct seq_file *m, struct pid_namespace *ns,
96 struct pid *pid, struct task_struct *tsk);
97
98void cgroup_fork(struct task_struct *p);
Aleksa Sarai7e476822015-06-09 21:32:09 +100099extern int cgroup_can_fork(struct task_struct *p,
100 void *ss_priv[CGROUP_CANFORK_COUNT]);
101extern void cgroup_cancel_fork(struct task_struct *p,
102 void *ss_priv[CGROUP_CANFORK_COUNT]);
103extern void cgroup_post_fork(struct task_struct *p,
104 void *old_ss_priv[CGROUP_CANFORK_COUNT]);
Tejun Heoc326aa22015-05-13 16:24:16 -0400105void cgroup_exit(struct task_struct *p);
Tejun Heo2e91fa72015-10-15 16:41:53 -0400106void cgroup_free(struct task_struct *p);
Tejun Heoc326aa22015-05-13 16:24:16 -0400107
108int cgroup_init_early(void);
109int cgroup_init(void);
110
Tejun Heo5c9d5352014-05-16 13:22:48 -0400111/*
Tejun Heoc326aa22015-05-13 16:24:16 -0400112 * Iteration helpers and macros.
Tejun Heo5c9d5352014-05-16 13:22:48 -0400113 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700114
Tejun Heoc326aa22015-05-13 16:24:16 -0400115struct cgroup_subsys_state *css_next_child(struct cgroup_subsys_state *pos,
116 struct cgroup_subsys_state *parent);
117struct cgroup_subsys_state *css_next_descendant_pre(struct cgroup_subsys_state *pos,
118 struct cgroup_subsys_state *css);
119struct cgroup_subsys_state *css_rightmost_descendant(struct cgroup_subsys_state *pos);
120struct cgroup_subsys_state *css_next_descendant_post(struct cgroup_subsys_state *pos,
121 struct cgroup_subsys_state *css);
Tejun Heo72c97e52013-08-08 20:11:22 -0400122
Tejun Heoc326aa22015-05-13 16:24:16 -0400123struct task_struct *cgroup_taskset_first(struct cgroup_taskset *tset);
124struct task_struct *cgroup_taskset_next(struct cgroup_taskset *tset);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700125
Tejun Heoc326aa22015-05-13 16:24:16 -0400126void css_task_iter_start(struct cgroup_subsys_state *css,
127 struct css_task_iter *it);
128struct task_struct *css_task_iter_next(struct css_task_iter *it);
129void css_task_iter_end(struct css_task_iter *it);
Tejun Heo0ae78e02013-08-13 11:01:54 -0400130
Tejun Heoc326aa22015-05-13 16:24:16 -0400131/**
132 * css_for_each_child - iterate through children of a css
133 * @pos: the css * to use as the loop cursor
134 * @parent: css whose children to walk
135 *
136 * Walk @parent's children. Must be called under rcu_read_lock().
137 *
138 * If a subsystem synchronizes ->css_online() and the start of iteration, a
139 * css which finished ->css_online() is guaranteed to be visible in the
140 * future iterations and will stay visible until the last reference is put.
141 * A css which hasn't finished ->css_online() or already finished
142 * ->css_offline() may show up during traversal. It's each subsystem's
143 * responsibility to synchronize against on/offlining.
144 *
145 * It is allowed to temporarily drop RCU read lock during iteration. The
146 * caller is responsible for ensuring that @pos remains accessible until
147 * the start of the next iteration by, for example, bumping the css refcnt.
148 */
149#define css_for_each_child(pos, parent) \
150 for ((pos) = css_next_child(NULL, (parent)); (pos); \
151 (pos) = css_next_child((pos), (parent)))
Tejun Heod5c419b2014-05-16 13:22:48 -0400152
Tejun Heoc326aa22015-05-13 16:24:16 -0400153/**
154 * css_for_each_descendant_pre - pre-order walk of a css's descendants
155 * @pos: the css * to use as the loop cursor
156 * @root: css whose descendants to walk
157 *
158 * Walk @root's descendants. @root is included in the iteration and the
159 * first node to be visited. Must be called under rcu_read_lock().
160 *
161 * If a subsystem synchronizes ->css_online() and the start of iteration, a
162 * css which finished ->css_online() is guaranteed to be visible in the
163 * future iterations and will stay visible until the last reference is put.
164 * A css which hasn't finished ->css_online() or already finished
165 * ->css_offline() may show up during traversal. It's each subsystem's
166 * responsibility to synchronize against on/offlining.
167 *
168 * For example, the following guarantees that a descendant can't escape
169 * state updates of its ancestors.
170 *
171 * my_online(@css)
172 * {
173 * Lock @css's parent and @css;
174 * Inherit state from the parent;
175 * Unlock both.
176 * }
177 *
178 * my_update_state(@css)
179 * {
180 * css_for_each_descendant_pre(@pos, @css) {
181 * Lock @pos;
182 * if (@pos == @css)
183 * Update @css's state;
184 * else
185 * Verify @pos is alive and inherit state from its parent;
186 * Unlock @pos;
187 * }
188 * }
189 *
190 * As long as the inheriting step, including checking the parent state, is
191 * enclosed inside @pos locking, double-locking the parent isn't necessary
192 * while inheriting. The state update to the parent is guaranteed to be
193 * visible by walking order and, as long as inheriting operations to the
194 * same @pos are atomic to each other, multiple updates racing each other
195 * still result in the correct state. It's guaranateed that at least one
196 * inheritance happens for any css after the latest update to its parent.
197 *
198 * If checking parent's state requires locking the parent, each inheriting
199 * iteration should lock and unlock both @pos->parent and @pos.
200 *
201 * Alternatively, a subsystem may choose to use a single global lock to
202 * synchronize ->css_online() and ->css_offline() against tree-walking
203 * operations.
204 *
205 * It is allowed to temporarily drop RCU read lock during iteration. The
206 * caller is responsible for ensuring that @pos remains accessible until
207 * the start of the next iteration by, for example, bumping the css refcnt.
208 */
209#define css_for_each_descendant_pre(pos, css) \
210 for ((pos) = css_next_descendant_pre(NULL, (css)); (pos); \
211 (pos) = css_next_descendant_pre((pos), (css)))
Tejun Heo15a4c832014-05-04 15:09:14 -0400212
Tejun Heoc326aa22015-05-13 16:24:16 -0400213/**
214 * css_for_each_descendant_post - post-order walk of a css's descendants
215 * @pos: the css * to use as the loop cursor
216 * @css: css whose descendants to walk
217 *
218 * Similar to css_for_each_descendant_pre() but performs post-order
219 * traversal instead. @root is included in the iteration and the last
220 * node to be visited.
221 *
222 * If a subsystem synchronizes ->css_online() and the start of iteration, a
223 * css which finished ->css_online() is guaranteed to be visible in the
224 * future iterations and will stay visible until the last reference is put.
225 * A css which hasn't finished ->css_online() or already finished
226 * ->css_offline() may show up during traversal. It's each subsystem's
227 * responsibility to synchronize against on/offlining.
228 *
229 * Note that the walk visibility guarantee example described in pre-order
230 * walk doesn't apply the same to post-order walks.
231 */
232#define css_for_each_descendant_post(pos, css) \
233 for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \
234 (pos) = css_next_descendant_post((pos), (css)))
Tejun Heo48ddbe12012-04-01 12:09:56 -0700235
Tejun Heoc326aa22015-05-13 16:24:16 -0400236/**
237 * cgroup_taskset_for_each - iterate cgroup_taskset
238 * @task: the loop cursor
239 * @tset: taskset to iterate
Tejun Heo4530edd2015-09-11 15:00:19 -0400240 *
241 * @tset may contain multiple tasks and they may belong to multiple
242 * processes. When there are multiple tasks in @tset, if a task of a
243 * process is in @tset, all tasks of the process are in @tset. Also, all
244 * are guaranteed to share the same source and destination csses.
245 *
246 * Iteration is not in any specific order.
Tejun Heoc326aa22015-05-13 16:24:16 -0400247 */
248#define cgroup_taskset_for_each(task, tset) \
249 for ((task) = cgroup_taskset_first((tset)); (task); \
250 (task) = cgroup_taskset_next((tset)))
Tejun Heo0cb51d72014-05-16 13:22:49 -0400251
Tejun Heo4530edd2015-09-11 15:00:19 -0400252/**
253 * cgroup_taskset_for_each_leader - iterate group leaders in a cgroup_taskset
254 * @leader: the loop cursor
255 * @tset: takset to iterate
256 *
257 * Iterate threadgroup leaders of @tset. For single-task migrations, @tset
258 * may not contain any.
259 */
260#define cgroup_taskset_for_each_leader(leader, tset) \
261 for ((leader) = cgroup_taskset_first((tset)); (leader); \
262 (leader) = cgroup_taskset_next((tset))) \
263 if ((leader) != (leader)->group_leader) \
264 ; \
265 else
266
Tejun Heoc326aa22015-05-13 16:24:16 -0400267/*
268 * Inline functions.
269 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700270
Tejun Heo5de01072013-06-12 21:04:52 -0700271/**
272 * css_get - obtain a reference on the specified css
273 * @css: target css
274 *
275 * The caller must already have a reference.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700276 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700277static inline void css_get(struct cgroup_subsys_state *css)
278{
Tejun Heo3b514d22014-05-16 13:22:47 -0400279 if (!(css->flags & CSS_NO_REF))
280 percpu_ref_get(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700281}
Paul Menagee7c5ec92009-01-07 18:08:38 -0800282
Tejun Heo5de01072013-06-12 21:04:52 -0700283/**
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800284 * css_get_many - obtain references on the specified css
285 * @css: target css
286 * @n: number of references to get
287 *
288 * The caller must already have a reference.
289 */
290static inline void css_get_many(struct cgroup_subsys_state *css, unsigned int n)
291{
292 if (!(css->flags & CSS_NO_REF))
293 percpu_ref_get_many(&css->refcnt, n);
294}
295
296/**
Tejun Heo6f4524d2014-05-16 13:22:52 -0400297 * css_tryget - try to obtain a reference on the specified css
298 * @css: target css
299 *
300 * Obtain a reference on @css unless it already has reached zero and is
301 * being released. This function doesn't care whether @css is on or
302 * offline. The caller naturally needs to ensure that @css is accessible
303 * but doesn't have to be holding a reference on it - IOW, RCU protected
304 * access is good enough for this function. Returns %true if a reference
305 * count was successfully obtained; %false otherwise.
306 */
307static inline bool css_tryget(struct cgroup_subsys_state *css)
308{
309 if (!(css->flags & CSS_NO_REF))
310 return percpu_ref_tryget(&css->refcnt);
311 return true;
312}
313
314/**
Tejun Heoec903c02014-05-13 12:11:01 -0400315 * css_tryget_online - try to obtain a reference on the specified css if online
Tejun Heo5de01072013-06-12 21:04:52 -0700316 * @css: target css
317 *
Tejun Heoec903c02014-05-13 12:11:01 -0400318 * Obtain a reference on @css if it's online. The caller naturally needs
319 * to ensure that @css is accessible but doesn't have to be holding a
Tejun Heo5de01072013-06-12 21:04:52 -0700320 * reference on it - IOW, RCU protected access is good enough for this
321 * function. Returns %true if a reference count was successfully obtained;
322 * %false otherwise.
323 */
Tejun Heoec903c02014-05-13 12:11:01 -0400324static inline bool css_tryget_online(struct cgroup_subsys_state *css)
Paul Menagee7c5ec92009-01-07 18:08:38 -0800325{
Tejun Heo3b514d22014-05-16 13:22:47 -0400326 if (!(css->flags & CSS_NO_REF))
327 return percpu_ref_tryget_live(&css->refcnt);
328 return true;
Paul Menagee7c5ec92009-01-07 18:08:38 -0800329}
330
Tejun Heo5de01072013-06-12 21:04:52 -0700331/**
332 * css_put - put a css reference
333 * @css: target css
334 *
Tejun Heoec903c02014-05-13 12:11:01 -0400335 * Put a reference obtained via css_get() and css_tryget_online().
Tejun Heo5de01072013-06-12 21:04:52 -0700336 */
Paul Menageddbcc7e2007-10-18 23:39:30 -0700337static inline void css_put(struct cgroup_subsys_state *css)
338{
Tejun Heo3b514d22014-05-16 13:22:47 -0400339 if (!(css->flags & CSS_NO_REF))
340 percpu_ref_put(&css->refcnt);
Paul Menageddbcc7e2007-10-18 23:39:30 -0700341}
342
Johannes Weinere8ea14c2014-12-10 15:42:42 -0800343/**
344 * css_put_many - put css references
345 * @css: target css
346 * @n: number of references to put
347 *
348 * Put references obtained via css_get() and css_tryget_online().
349 */
350static inline void css_put_many(struct cgroup_subsys_state *css, unsigned int n)
351{
352 if (!(css->flags & CSS_NO_REF))
353 percpu_ref_put_many(&css->refcnt, n);
354}
355
Tejun Heoc326aa22015-05-13 16:24:16 -0400356/**
357 * task_css_set_check - obtain a task's css_set with extra access conditions
358 * @task: the task to obtain css_set for
359 * @__c: extra condition expression to be passed to rcu_dereference_check()
Paul Menageddbcc7e2007-10-18 23:39:30 -0700360 *
Tejun Heoc326aa22015-05-13 16:24:16 -0400361 * A task's css_set is RCU protected, initialized and exited while holding
362 * task_lock(), and can only be modified while holding both cgroup_mutex
363 * and task_lock() while the task is alive. This macro verifies that the
364 * caller is inside proper critical section and returns @task's css_set.
365 *
366 * The caller can also specify additional allowed conditions via @__c, such
367 * as locks used during the cgroup_subsys::attach() methods.
Paul Menageddbcc7e2007-10-18 23:39:30 -0700368 */
Tejun Heoc326aa22015-05-13 16:24:16 -0400369#ifdef CONFIG_PROVE_RCU
370extern struct mutex cgroup_mutex;
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400371extern spinlock_t css_set_lock;
Tejun Heoc326aa22015-05-13 16:24:16 -0400372#define task_css_set_check(task, __c) \
373 rcu_dereference_check((task)->cgroups, \
374 lockdep_is_held(&cgroup_mutex) || \
Tejun Heof0d9a5f2015-10-15 16:41:53 -0400375 lockdep_is_held(&css_set_lock) || \
Tejun Heoc326aa22015-05-13 16:24:16 -0400376 ((task)->flags & PF_EXITING) || (__c))
377#else
378#define task_css_set_check(task, __c) \
379 rcu_dereference((task)->cgroups)
Tejun Heo2bd59d42014-02-11 11:52:49 -0500380#endif
Paul Menageddbcc7e2007-10-18 23:39:30 -0700381
Tejun Heoc326aa22015-05-13 16:24:16 -0400382/**
383 * task_css_check - obtain css for (task, subsys) w/ extra access conds
384 * @task: the target task
385 * @subsys_id: the target subsystem ID
386 * @__c: extra condition expression to be passed to rcu_dereference_check()
387 *
388 * Return the cgroup_subsys_state for the (@task, @subsys_id) pair. The
389 * synchronization rules are the same as task_css_set_check().
390 */
391#define task_css_check(task, subsys_id, __c) \
392 task_css_set_check((task), (__c))->subsys[(subsys_id)]
393
394/**
395 * task_css_set - obtain a task's css_set
396 * @task: the task to obtain css_set for
397 *
398 * See task_css_set_check().
399 */
400static inline struct css_set *task_css_set(struct task_struct *task)
401{
402 return task_css_set_check(task, false);
403}
404
405/**
406 * task_css - obtain css for (task, subsys)
407 * @task: the target task
408 * @subsys_id: the target subsystem ID
409 *
410 * See task_css_check().
411 */
412static inline struct cgroup_subsys_state *task_css(struct task_struct *task,
413 int subsys_id)
414{
415 return task_css_check(task, subsys_id, false);
416}
417
418/**
Linus Torvaldsbbe179f2015-06-26 19:50:04 -0700419 * task_get_css - find and get the css for (task, subsys)
420 * @task: the target task
421 * @subsys_id: the target subsystem ID
422 *
423 * Find the css for the (@task, @subsys_id) combination, increment a
424 * reference on and return it. This function is guaranteed to return a
425 * valid css.
426 */
427static inline struct cgroup_subsys_state *
428task_get_css(struct task_struct *task, int subsys_id)
429{
430 struct cgroup_subsys_state *css;
431
432 rcu_read_lock();
433 while (true) {
434 css = task_css(task, subsys_id);
435 if (likely(css_tryget_online(css)))
436 break;
437 cpu_relax();
438 }
439 rcu_read_unlock();
440 return css;
441}
442
443/**
Tejun Heoc326aa22015-05-13 16:24:16 -0400444 * task_css_is_root - test whether a task belongs to the root css
445 * @task: the target task
446 * @subsys_id: the target subsystem ID
447 *
448 * Test whether @task belongs to the root css on the specified subsystem.
449 * May be invoked in any context.
450 */
451static inline bool task_css_is_root(struct task_struct *task, int subsys_id)
452{
453 return task_css_check(task, subsys_id, true) ==
454 init_css_set.subsys[subsys_id];
455}
456
457static inline struct cgroup *task_cgroup(struct task_struct *task,
458 int subsys_id)
459{
460 return task_css(task, subsys_id)->cgroup;
461}
Tejun Heoa2dd4242014-03-19 10:23:55 -0400462
Tejun Heo07bc3562014-02-13 06:58:39 -0500463/* no synchronization, the result can only be used as a hint */
Tejun Heo27bd4db2015-10-15 16:41:50 -0400464static inline bool cgroup_is_populated(struct cgroup *cgrp)
Tejun Heo07bc3562014-02-13 06:58:39 -0500465{
Tejun Heo27bd4db2015-10-15 16:41:50 -0400466 return cgrp->populated_cnt;
Tejun Heo07bc3562014-02-13 06:58:39 -0500467}
468
Zefan Lif29374b2014-09-19 16:29:31 +0800469/* returns ino associated with a cgroup */
Tejun Heob1664922014-02-11 11:52:49 -0500470static inline ino_t cgroup_ino(struct cgroup *cgrp)
471{
Zefan Lif29374b2014-09-19 16:29:31 +0800472 return cgrp->kn->ino;
Tejun Heob1664922014-02-11 11:52:49 -0500473}
474
Tejun Heob4168642014-05-13 12:16:21 -0400475/* cft/css accessors for cftype->write() operation */
476static inline struct cftype *of_cft(struct kernfs_open_file *of)
Tejun Heo7da11272013-12-05 12:28:04 -0500477{
Tejun Heo2bd59d42014-02-11 11:52:49 -0500478 return of->kn->priv;
Tejun Heo7da11272013-12-05 12:28:04 -0500479}
480
Tejun Heob4168642014-05-13 12:16:21 -0400481struct cgroup_subsys_state *of_css(struct kernfs_open_file *of);
482
483/* cft/css accessors for cftype->seq_*() operations */
484static inline struct cftype *seq_cft(struct seq_file *seq)
485{
486 return of_cft(seq->private);
487}
488
489static inline struct cgroup_subsys_state *seq_css(struct seq_file *seq)
490{
491 return of_css(seq->private);
492}
Tejun Heo59f52962014-02-11 11:52:49 -0500493
Tejun Heoe61734c2014-02-12 09:29:50 -0500494/*
495 * Name / path handling functions. All are thin wrappers around the kernfs
496 * counterparts and can be called under any context.
497 */
498
499static inline int cgroup_name(struct cgroup *cgrp, char *buf, size_t buflen)
500{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400501 return kernfs_name(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500502}
503
504static inline char * __must_check cgroup_path(struct cgroup *cgrp, char *buf,
505 size_t buflen)
506{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400507 return kernfs_path(cgrp->kn, buf, buflen);
Tejun Heoe61734c2014-02-12 09:29:50 -0500508}
509
510static inline void pr_cont_cgroup_name(struct cgroup *cgrp)
511{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400512 pr_cont_kernfs_name(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500513}
514
515static inline void pr_cont_cgroup_path(struct cgroup *cgrp)
516{
Tejun Heofdce6bf2014-03-19 10:23:54 -0400517 pr_cont_kernfs_path(cgrp->kn);
Tejun Heoe61734c2014-02-12 09:29:50 -0500518}
519
Paul Menageddbcc7e2007-10-18 23:39:30 -0700520#else /* !CONFIG_CGROUPS */
521
Tejun Heof3ba5382015-01-06 12:02:46 -0500522struct cgroup_subsys_state;
523
Tejun Heoc326aa22015-05-13 16:24:16 -0400524static inline void css_put(struct cgroup_subsys_state *css) {}
525static inline int cgroup_attach_task_all(struct task_struct *from,
526 struct task_struct *t) { return 0; }
527static inline int cgroupstats_build(struct cgroupstats *stats,
528 struct dentry *dentry) { return -EINVAL; }
529
Paul Menageb4f48b62007-10-18 23:39:33 -0700530static inline void cgroup_fork(struct task_struct *p) {}
Aleksa Sarai7e476822015-06-09 21:32:09 +1000531static inline int cgroup_can_fork(struct task_struct *p,
532 void *ss_priv[CGROUP_CANFORK_COUNT])
533{ return 0; }
534static inline void cgroup_cancel_fork(struct task_struct *p,
535 void *ss_priv[CGROUP_CANFORK_COUNT]) {}
536static inline void cgroup_post_fork(struct task_struct *p,
537 void *ss_priv[CGROUP_CANFORK_COUNT]) {}
Li Zefan1ec41832014-03-28 15:22:19 +0800538static inline void cgroup_exit(struct task_struct *p) {}
Tejun Heo2e91fa72015-10-15 16:41:53 -0400539static inline void cgroup_free(struct task_struct *p) {}
Paul Menageddbcc7e2007-10-18 23:39:30 -0700540
Tejun Heoc326aa22015-05-13 16:24:16 -0400541static inline int cgroup_init_early(void) { return 0; }
542static inline int cgroup_init(void) { return 0; }
Sridhar Samudralad7926ee2010-05-30 22:24:39 +0200543
Paul Menageddbcc7e2007-10-18 23:39:30 -0700544#endif /* !CONFIG_CGROUPS */
545
Paul Menageddbcc7e2007-10-18 23:39:30 -0700546#endif /* _LINUX_CGROUP_H */