diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/cgroup.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 2d1d151258cf..f585b7cde87b 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
@@ -156,6 +156,12 @@ struct css_set { | |||
156 | struct list_head list; | 156 | struct list_head list; |
157 | 157 | ||
158 | /* | 158 | /* |
159 | * List running through all cgroup groups in the same hash | ||
160 | * slot. Protected by css_set_lock | ||
161 | */ | ||
162 | struct hlist_node hlist; | ||
163 | |||
164 | /* | ||
159 | * List running through all tasks using this cgroup | 165 | * List running through all tasks using this cgroup |
160 | * group. Protected by css_set_lock | 166 | * group. Protected by css_set_lock |
161 | */ | 167 | */ |
@@ -174,7 +180,6 @@ struct css_set { | |||
174 | * during subsystem registration (at boot time). | 180 | * during subsystem registration (at boot time). |
175 | */ | 181 | */ |
176 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; | 182 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; |
177 | |||
178 | }; | 183 | }; |
179 | 184 | ||
180 | /* | 185 | /* |