Hello,
On Mon, Jun 05, 2023 at 04:00:39PM -0400, Waiman Long wrote:
...
From user pov, this only affects them when they want to create partitionsfile seems hacky to me. e.g. How would it interact with namespacing? AreIt can certainly be made hierarchical as you suggest. It does increase
there reasons why this can't be properly hierarchical other than the amount
of work needed? For example:
cpuset.cpus.exclusive is a per-cgroup file and represents the mask of CPUs
that the cgroup holds exclusively. The mask is always a subset of
cpuset.cpus. The parent loses access to a CPU when the CPU is given to a
child by setting the CPU in the child's cpus.exclusive and the CPU can't
be given to more than one child. IOW, exclusive CPUs are available only to
the leaf cgroups that have them set in their .exclusive file.
When a cgroup is turned into a partition, its cpuset.cpus and
cpuset.cpus.exclusive should be the same. For backward compatibility, if
the cgroup's parent is already a partition, cpuset will automatically
attempt to add all cpus in cpuset.cpus into cpuset.cpus.exclusive.
I could well be missing something important but I'd really like to see
something like the above where the reservation feature blends in with the
rest of cpuset.
complexity from both user and kernel point of view.
From the user point of view, there is one more knob to manage hierarchically
which is not used that often.
down the tree, right?
From the kernel point of view, we may need to have one more cpumask perYes, it substitutes and expands on cpuset.cpus.partition behavior.
cpuset as the current subparts_cpus is used to track automatic reservation.
We need another cpumask to contain extra exclusive CPUs not allocated
through automatic reservation. The fact that you mention this new control
file as a list of exclusively owned CPUs for this cgroup. Creating a
partition is in fact allocating exclusive CPUs to a cgroup. So it kind of
overlaps with the cpuset.cpus.partititon file. Can we fail a write to
cpuset.cpus.exclusive if those exclusive CPUs cannot be granted or will thisSo, I think cpus.exclusive can become the sole mechanism to arbitrate
exclusive list is only valid if a valid partition can be formed. So we need
to properly manage the dependency between these 2 control files.
exclusive owenership of CPUs and .partition can depend on .exclusive.
Alternatively, I have no problem exposing cpuset.cpus.exclusive as aI don't follow. How would remote partitions work then?
read-only file. It is a bit problematic if we need to make it writable.