diff options
-rw-r--r-- | kernel/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index a04932281bc9..af993919aa04 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
@@ -892,7 +892,7 @@ static void cgroup_diput(struct dentry *dentry, struct inode *inode) | |||
892 | simple_xattrs_free(&cgrp->xattrs); | 892 | simple_xattrs_free(&cgrp->xattrs); |
893 | 893 | ||
894 | ida_simple_remove(&cgrp->root->cgroup_ida, cgrp->id); | 894 | ida_simple_remove(&cgrp->root->cgroup_ida, cgrp->id); |
895 | kfree_rcu(cgrp, rcu_head); | 895 | kfree(cgrp); |
896 | } else { | 896 | } else { |
897 | struct cfent *cfe = __d_cfe(dentry); | 897 | struct cfent *cfe = __d_cfe(dentry); |
898 | struct cgroup *cgrp = dentry->d_parent->d_fsdata; | 898 | struct cgroup *cgrp = dentry->d_parent->d_fsdata; |