diff options
| -rw-r--r-- | kernel/cgroup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 4ca928db890c..3a53c771e503 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
| @@ -4561,13 +4561,13 @@ static int alloc_css_id(struct cgroup_subsys *ss, struct cgroup *parent, | |||
| 4561 | { | 4561 | { |
| 4562 | int subsys_id, i, depth = 0; | 4562 | int subsys_id, i, depth = 0; |
| 4563 | struct cgroup_subsys_state *parent_css, *child_css; | 4563 | struct cgroup_subsys_state *parent_css, *child_css; |
| 4564 | struct css_id *child_id, *parent_id = NULL; | 4564 | struct css_id *child_id, *parent_id; |
| 4565 | 4565 | ||
| 4566 | subsys_id = ss->subsys_id; | 4566 | subsys_id = ss->subsys_id; |
| 4567 | parent_css = parent->subsys[subsys_id]; | 4567 | parent_css = parent->subsys[subsys_id]; |
| 4568 | child_css = child->subsys[subsys_id]; | 4568 | child_css = child->subsys[subsys_id]; |
| 4569 | depth = css_depth(parent_css) + 1; | ||
| 4570 | parent_id = parent_css->id; | 4569 | parent_id = parent_css->id; |
| 4570 | depth = parent_id->depth; | ||
| 4571 | 4571 | ||
| 4572 | child_id = get_new_cssid(ss, depth); | 4572 | child_id = get_new_cssid(ss, depth); |
| 4573 | if (IS_ERR(child_id)) | 4573 | if (IS_ERR(child_id)) |
