mirror of
https://github.com/systemd/systemd.git
synced 2025-02-03 17:47:28 +03:00
Merge pull request #30450 from poettering/cgroups-delegate-attr-update
cgroup: bring list of delegated cgroup attributes up-to-date with cur…
This commit is contained in:
commit
b896058883
@ -35,6 +35,8 @@ static int chown_cgroup_path(const char *path, uid_t uid_shift) {
|
||||
"cgroup.stat",
|
||||
"cgroup.subtree_control",
|
||||
"cgroup.threads",
|
||||
"memory.oom.group",
|
||||
"memory.reclaim",
|
||||
"notify_on_release",
|
||||
"tasks")
|
||||
if (fchownat(fd, fn, uid_shift, uid_shift, 0) < 0)
|
||||
|
@ -421,6 +421,8 @@ int cg_set_access(
|
||||
{ "cgroup.procs", true },
|
||||
{ "cgroup.subtree_control", true },
|
||||
{ "cgroup.threads", false },
|
||||
{ "memory.oom.group", false },
|
||||
{ "memory.reclaim", false },
|
||||
{},
|
||||
};
|
||||
|
||||
|
@ -26,6 +26,19 @@ systemd-run --wait \
|
||||
-w /sys/fs/cgroup/system.slice/test-0.service/cgroup.procs -a \
|
||||
-w /sys/fs/cgroup/system.slice/test-0.service/cgroup.subtree_control
|
||||
|
||||
# Test if this also works for some of the more recent attrs the kernel might or might not support
|
||||
for attr in cgroup.threads memory.oom.group memory.reclaim ; do
|
||||
|
||||
if grep -q "$attr" /sys/kernel/cgroup/delegate ; then
|
||||
systemd-run --wait \
|
||||
--unit=test-0.service \
|
||||
--property="DynamicUser=1" \
|
||||
--property="Delegate=" \
|
||||
test -w /sys/fs/cgroup/system.slice/test-0.service/ -a \
|
||||
-w /sys/fs/cgroup/system.slice/test-0.service/"$attr"
|
||||
fi
|
||||
done
|
||||
|
||||
systemd-run --wait \
|
||||
--unit=test-1.service \
|
||||
--property="DynamicUser=1" \
|
||||
|
Loading…
x
Reference in New Issue
Block a user