Skip to content

Commit

Permalink
Make sure to enable memory and cpuset cgroup in v2
Browse files Browse the repository at this point in the history
  • Loading branch information
nickygerritsen authored and meisterT committed Oct 22, 2024
1 parent 1ca0893 commit 5f6ee8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions doc/manual/install-judgehost.rst
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ Optionally the timings can be made more stable by not letting the OS schedule
any other tasks on the same CPU core the judgedaemon is using:
``GRUB_CMDLINE_LINUX_DEFAULT="quiet cgroup_enable=memory swapaccount=1 isolcpus=2"``

You have now configured the system to use cgroups. On systems with
cgroups v1, you need to run::
You have now configured the system to use cgroups. To create
the actual cgroups that DOMjudge will use you need to run::

sudo systemctl enable create-cgroups --now

Expand Down
3 changes: 2 additions & 1 deletion judge/create_cgroups.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ CGROUPBASE="/sys/fs/cgroup"
# We do not need to do any of this with cgroup v2.
fs_type=$(awk '$2 == "/sys/fs/cgroup" {print $3}' /proc/mounts)
if [ "$fs_type" = "cgroup2" ]; then
echo "cgroup v2 detected, skipping cgroup creation" >&2
echo "+memory" >> /sys/fs/cgroup/cgroup.subtree_control
echo "+cpuset" >> /sys/fs/cgroup/cgroup.subtree_control
exit 0
fi

Expand Down

0 comments on commit 5f6ee8b

Please sign in to comment.