1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2024-10-27 18:55:09 +03:00

cgroup: kill processes even in cgroups that aren't realized

This commit is contained in:
Lennart Poettering 2011-07-01 00:41:41 +02:00
parent 0aef434548
commit 31e54cc807

View File

@ -189,7 +189,7 @@ int cgroup_bonding_kill(CGroupBonding *b, int sig, bool sigcont, Set *s) {
assert(sig >= 0);
/* Don't kill cgroups that aren't ours */
if (!b->realized || !b->ours)
if (!b->ours)
return 0;
return cg_kill_recursive(b->controller, b->path, sig, sigcont, true, false, s);