Lines Matching refs:css
98 bool css_has_online_children(struct cgroup_subsys_state *css);
148 struct cgroup_subsys_state *css);
151 struct cgroup_subsys_state *css);
158 void css_task_iter_start(struct cgroup_subsys_state *css, unsigned int flags,
241 #define css_for_each_descendant_pre(pos, css) \ argument
242 for ((pos) = css_next_descendant_pre(NULL, (css)); (pos); \
243 (pos) = css_next_descendant_pre((pos), (css)))
264 #define css_for_each_descendant_post(pos, css) \ argument
265 for ((pos) = css_next_descendant_post(NULL, (css)); (pos); \
266 (pos) = css_next_descendant_post((pos), (css)))
313 void css_get(struct cgroup_subsys_state *css);
314 void css_get_many(struct cgroup_subsys_state *css, unsigned int n);
315 bool css_tryget(struct cgroup_subsys_state *css);
316 bool css_tryget_online(struct cgroup_subsys_state *css);
317 void css_put(struct cgroup_subsys_state *css);
318 void css_put_many(struct cgroup_subsys_state *css, unsigned int n);
345 static inline bool css_is_dying(struct cgroup_subsys_state *css) in css_is_dying() argument
347 return css->flags & CSS_DYING; in css_is_dying()
450 struct cgroup_subsys_state *css; in task_get_css() local
454 css = task_css(task, subsys_id); in task_get_css()
461 if (likely(css_tryget(css))) in task_get_css()
466 return css; in task_get_css()
642 static inline void css_get(struct cgroup_subsys_state *css) {} in css_get() argument
643 static inline void css_put(struct cgroup_subsys_state *css) {} in css_put() argument