summaryrefslogtreecommitdiff
path: root/cgroup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-21 03:15:58 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-21 03:15:58 +0200
commitc9106f61d0755dc6b8aa7c4252baa140c2d473f1 (patch)
tree676a91a47ec412fc209af102901f9d993bf24225 /cgroup.c
parentc3087ddb5805af3822d5005b8e014b5acf8ecd29 (diff)
cgroup: only delete empty cgroups
Diffstat (limited to 'cgroup.c')
-rw-r--r--cgroup.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/cgroup.c b/cgroup.c
index f5c2592ce8..565ce24ce1 100644
--- a/cgroup.c
+++ b/cgroup.c
@@ -118,17 +118,15 @@ void cgroup_bonding_free(CGroupBonding *b) {
hashmap_remove(b->unit->meta.manager->cgroup_bondings, b->path);
}
- free(b->controller);
- free(b->path);
-
if (b->cgroup) {
-
- if (b->only_us && b->clean_up)
- cgroup_delete_cgroup(b->cgroup, true);
+ if (b->only_us && b->clean_up && cgroup_bonding_is_empty(b) > 0)
+ cgroup_delete_cgroup_ext(b->cgroup, true);
cgroup_free(&b->cgroup);
}
+ free(b->controller);
+ free(b->path);
free(b);
}