aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/cgroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/cgroup.h')
-rw-r--r--include/linux/cgroup.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h
index bde44618d8c2..c5f3684ef557 100644
--- a/include/linux/cgroup.h
+++ b/include/linux/cgroup.h
@@ -95,16 +95,16 @@ static inline void css_get(struct cgroup_subsys_state *css)
95} 95}
96 96
97/** 97/**
98 * css_tryget - try to obtain a reference on the specified css 98 * css_tryget_online - try to obtain a reference on the specified css if online
99 * @css: target css 99 * @css: target css
100 * 100 *
101 * Obtain a reference on @css if it's alive. The caller naturally needs to 101 * Obtain a reference on @css if it's online. The caller naturally needs
102 * ensure that @css is accessible but doesn't have to be holding a 102 * to ensure that @css is accessible but doesn't have to be holding a
103 * reference on it - IOW, RCU protected access is good enough for this 103 * reference on it - IOW, RCU protected access is good enough for this
104 * function. Returns %true if a reference count was successfully obtained; 104 * function. Returns %true if a reference count was successfully obtained;
105 * %false otherwise. 105 * %false otherwise.
106 */ 106 */
107static inline bool css_tryget(struct cgroup_subsys_state *css) 107static inline bool css_tryget_online(struct cgroup_subsys_state *css)
108{ 108{
109 if (css->flags & CSS_ROOT) 109 if (css->flags & CSS_ROOT)
110 return true; 110 return true;
@@ -115,7 +115,7 @@ static inline bool css_tryget(struct cgroup_subsys_state *css)
115 * css_put - put a css reference 115 * css_put - put a css reference
116 * @css: target css 116 * @css: target css
117 * 117 *
118 * Put a reference obtained via css_get() and css_tryget(). 118 * Put a reference obtained via css_get() and css_tryget_online().
119 */ 119 */
120static inline void css_put(struct cgroup_subsys_state *css) 120static inline void css_put(struct cgroup_subsys_state *css)
121{ 121{
@@ -905,8 +905,8 @@ void css_task_iter_end(struct css_task_iter *it);
905int cgroup_attach_task_all(struct task_struct *from, struct task_struct *); 905int cgroup_attach_task_all(struct task_struct *from, struct task_struct *);
906int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from); 906int cgroup_transfer_tasks(struct cgroup *to, struct cgroup *from);
907 907
908struct cgroup_subsys_state *css_tryget_from_dir(struct dentry *dentry, 908struct cgroup_subsys_state *css_tryget_online_from_dir(struct dentry *dentry,
909 struct cgroup_subsys *ss); 909 struct cgroup_subsys *ss);
910 910
911#else /* !CONFIG_CGROUPS */ 911#else /* !CONFIG_CGROUPS */
912 912