-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
systemd always invokes rmdir() on pids cgroup #180
Comments
Yep, looks like we made a mistake during the backport. Is there an RH Bugzilla for this? |
LGTM @vikaschoudhary16 thanks for tracking this down! |
👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a patch in systemd-219 which is generated from the sources fetched using rhpkg, 0475-core-add-support-for-the-pids-cgroup-controller.patch. This patch adds
CGROUP_PIDS
toCGroupControllerMask
(along with some other changes) but does not update_CGROUP_CONTROLLER_MASK_ALL
from 31 to 63. This mistake makes the check at L#1628 to fail forpids
and therefore forpids
,cg_trim()
is invoked always.Here is the relevant code:
At L39, there should be 63
Also Please take a look at openshift/origin#16246 (comment)
The text was updated successfully, but these errors were encountered: