kernel-packages team mailing list archive
-
kernel-packages team
-
Mailing list archive
-
Message #111624
[Bug 1392176] Comment bridged from LTC Bugzilla
------- Comment From aravam@xxxxxxxxxx 2015-04-07 15:56 EDT-------
(In reply to comment #33)
> Yes Nish, take a look at the full example:
>
> root@ubuntu1504:/sys/fs/cgroup/cpuset# cat cpuset.cpus ; cat
> user.slice/cpuset.cpus
> 0-7
> 0-7
> root@ubuntu1504:/sys/fs/cgroup/cpuset# echo 0 >
> /sys/devices/system/cpu/cpu7/online
> root@ubuntu1504:/sys/fs/cgroup/cpuset# cat cpuset.cpus ; cat
> user.slice/cpuset.cpus
> 0-6
> 0-6
> root@ubuntu1504:/sys/fs/cgroup/cpuset# echo 1 >
> /sys/devices/system/cpu/cpu7/online
> root@ubuntu1504:/sys/fs/cgroup/cpuset# cat cpuset.cpus ; cat
> user.slice/cpuset.cpus
> 0-7
> 0-6
> root@ubuntu1504:/sys/fs/cgroup/cpuset# ps aux | grep cgmanager
> root 5761 0.0 0.0 5120 3072 pts/1 S+ 10:35 0:00 grep
> --color=auto cgmanager
> root 28368 0.0 0.0 4288 3392 ? Ss 10:31 0:00
> /sbin/cgmanager -m name=systemd -M cpuset
I *think* you'd need to have cgmanager's configuration file be correct
at boot-time, and have started your system fresh.
The workaround provided by Serge is to simply not mount the cpuset
cgroup.
So if you have /sys/fs/cgroup/cpuset (or really, `mount | grep cpuset`,
as you can mount it wherever you want) upon boot, then the workaround is
not working. Perhaps something else is mounting cpuset.
But I'm a bit worried, doesn't not mounting cpuset mean that containers,
for instance, wouldn't work so well?
That is, even if cgmanager doesn't mount the cpuset cgroup, if
*anything* mounts it, processes in that cgroup tree will experience the
underlying issue, no?
--
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/1392176
Title:
mounts cgroups unconditionally which causes undesired effects with cpu
hotplug
Status in cgmanager package in Ubuntu:
Confirmed
Status in linux package in Ubuntu:
Confirmed
Bug description:
== Comment: #0 - Preeti U. Murthy <preeti.murthy@xxxxxxxxxx> - 2014-10-20 04:40:12 ==
---Problem Description---
Systemd mounts cgroups explicitly every boot. Since the user had no say in it, undesired consequences are observed in reaction to cpu hotplug operations. Here is how.
Systemd moves the tasks to the cgroup mounted by it. This cgroup automatically becomes the child of the root cgroup which is present by default. The children cgroups are not expected to remember their configured cpusets after hotplug operations in the kernel. Hence when cpus are taken offline and brought back online they are no longer used for load balancing of tasks and hence remain unused.
This is an undesired consequence because the user had not even asked for cgroups to be mounted, yet is not able to use the full capacity of the system.
Only when the user himself creates cgroup hierarchies, should he be
exposed to the side effects of cpu hotplug on cpusets. Else all online
cpus must be made available to him which is not happening since
systemd mounts cgroups on every boot.
Hence please revert this feature or provide an explaination as to why this is being done.
---uname output---
Linux tul181p1 3.16.0-18-generic #25-Ubuntu SMP Fri Sep 26 02:39:53 UTC 2014 ppc64le ppc64le ppc64le GNU/Linux
Machine Type = Tuleta 8286-42A
---Debugger---
A debugger was configured, however the system did not enter into the debugger
---Steps to Reproduce---
$ taskset -p $$
$ 0-127
$ echo 0 > /sys/devices/system/cpu/cpu7/online
$ taskset -p $$
$ 0-6,8-127
$ echo 1 > /sys/devices/system/cpu/cpu7/online
$ taskset -p $$
$ 0-6,8-127
Userspace tool common name: systemd
The userspace tool has the following bit modes: 64-bit
Userspace rpm: systemd_208-8ubuntu8_ppc64el.deb
Userspace tool obtained from project website: 208-8ubuntu8
To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cgmanager/+bug/1392176/+subscriptions
Follow ups