From: "Ionut Nechita (Sunlight Linux)" <sunlightlinux@gmail.com>
To: Shrikanth Hegde <sshegde@linux.ibm.com>
Cc: arighi@nvidia.com, chleroy@kernel.org, christian.loehle@arm.com,
corbet@lwn.net, dietmar.eggemann@arm.com, frederic@kernel.org,
gregkh@linuxfoundation.org, hdanton@sina.com,
huschle@linux.ibm.com, iii@linux.ibm.com, jgross@suse.com,
juri.lelli@redhat.com, kernellwp@gmail.com,
kprateek.nayak@amd.com, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, maddy@linux.ibm.com,
maz@kernel.org, meted@linux.ibm.com, mingo@kernel.org,
pauld@redhat.com, pbonzini@redhat.com, peterz@infradead.org,
rafael@kernel.org, rdunlap@infradead.org, rostedt@goodmis.org,
seanjc@google.com, srikar@linux.ibm.com, tglx@kernel.org,
tj@kernel.org, tommaso.cucinotta@gmail.com,
vincent.guittot@linaro.org, vineeth@bitbyteword.org,
virtualization@lists.linux.dev, vschneid@redhat.com,
ynorov@nvidia.com, yury.norov@gmail.com
Subject: [PATCH] Re: [PATCH v10 00/12] sched, steal_governor: Introduce preferred CPUs and steal-driven vCPU backoff
Date: Wed, 12 Aug 2026 22:45:56 +0300 [thread overview]
Message-ID: <20260812194600.52516-1-sunlightlinux@gmail.com> (raw)
In-Reply-To: <20260812054033.95658-1-sshegde@linux.ibm.com>
On Wed, Aug 12, 2026 at 11:10:21AM +0530, Shrikanth Hegde wrote:
> This patch series represents the result of multiple iterations,
> redesigns and community feedback.
Nice work, and thanks for the very readable cover letter.
I looked at this from the KVM and Xen guest angle rather than from
PowerVM, since that is what I run. Three observations below. All of
them are from code inspection only -- I have not measured any of this,
so please treat the numbers as arithmetic rather than as results.
Code references are against next-20260812, which already carries your
base commit f2c2ba7219e5, so the series applies there directly.
1) Default thresholds are unreachable on common QEMU command lines
==================================================================
get_system_cpus() returns num_possible_cpus(), and steal_governor_loop()
divides by it:
delta_ns = max_t(u64, div_u64(delta_ns * get_system_cpus(), 10000), 1);
steal_ratio = div64_u64(delta_steal, delta_ns);
On x86 the possible map is sized by topology_init_possible_cpus()
(arch/x86/kernel/cpu/topology.c) from assigned + disabled CPUs, where
"disabled" is incremented by topo_register_apic() for every APIC that is
registered but not present.
QEMU emits exactly such MADT entries for the range [smp, maxcpus), and
acpi_is_processor_usable() in arch/x86/kernel/acpi/boot.c documents that
this is deliberate:
/*
* QEMU expects legacy "Enabled=0" LAPIC entries to be counted as
* usable in order to support CPU hotplug in guests.
*/
So those vCPUs are registered as usable, land in nr_disabled_cpus, and
end up in the possible map. A guest started with
-smp 4,maxcpus=32
has num_possible_cpus() == 32 while only 4 vCPUs ever run. The steal
ratio is then diluted 8x, and the default thresholds of 5% / 2% become
40% / 16% of the steal that is actually observable. The governor never
leaves the "do nothing" window, and the only symptom is that nothing
happens.
Xen PV guests are affected in the same way, and often more strongly,
because the possible map there tends to be sized for vCPU hotplug.
I understand from the v9 changelog why possible CPUs were chosen -- it
keeps the accumulated steal monotonic across hotplug, which is a real
property worth having. The documentation does describe the effect and
gives a worked example for recomputing the thresholds by hand. But for
a mechanism whose whole premise is that every VM on the host opts in
with the same policy, requiring each operator to first derive their own
thresholds seems likely to translate into low real-world adoption.
Some options, roughly in increasing order of intrusiveness:
- emit a pr_info() (or pr_warn()) at module init when
num_possible_cpus() significantly exceeds num_online_cpus(), naming
the ratio and the effective thresholds. Cheap, and turns a silent
no-op into something diagnosable.
- scale the thresholds by num_possible_cpus() / num_online_cpus() at
init, so the documented defaults keep their intended meaning.
- keep summing steal over the possible mask, as today, but divide by
the online count, and handle the hotplug discontinuity by resetting
the sg_ctx.steal baseline from a hotplug notifier.
I do not have a strong preference among these, and the first one alone
would already be a large improvement.
2) Nothing stops the driver from folding Xen dom0
=================================================
dom0 accounts steal time like any other domain -- xen_time_setup_guest()
in arch/x86/xen/time.c wires up pv_steal_clock unconditionally, with no
feature negotiation and no privileged-domain exemption.
So loading steal_governor in dom0 makes it shrink its own preferred mask
under contention. That is precisely when the blkback and netback
threads serving every other guest need CPU, and the driver has no notion
that this domain is different from the ones it is trying to be polite
towards. The effect would be host-wide, not confined to the domain that
loaded the module.
Given that Kconfig carries "default m", the module is built on any
distro kernel with PARAVIRT=y, which includes dom0 kernels. It is one
modprobe away from being loaded there, quite plausibly by someone who
read the documentation's advice to enable it uniformly across all VMs.
A xen_initial_domain() check that refuses to load, or at minimum a loud
warning, seems worth having. More generally it may be worth stating in
the documentation that the driver is meant for guests only -- the same
argument applies to a KVM host that is itself running nested guests.
Juergen and the virtualization list are already on Cc -- I would value
their view on this one in particular.
3) Core granularity degenerates to single vCPUs on KVM and Xen
==============================================================
decrease_preferred_cpus() and increase_preferred_cpus() step by
topology_sibling_cpumask(), which matches PowerVM, where the hypervisor
schedules whole cores.
On Xen PV that mask is always the CPU itself, by design. The header
comment of arch/x86/xen/smp_pv.c is explicit about both the behaviour
and the reason for it:
/*
* Because virtual CPUs can be scheduled onto any real CPU, there's
* no useful topology information for the kernel to make use of. As
* a result, all CPUs are treated as if they're single-core and
* single-threaded.
*/
A plain "-smp N" under QEMU gives one thread per core and one core per
socket, with the same result. So on both hypervisors the step size is
one vCPU, and convergence to a folded state takes proportionally longer
than the PowerVM numbers would suggest.
I do not think this is a correctness problem -- per-vCPU is arguably the
right granularity there, for exactly the reason the Xen comment gives.
The case that does not work as intended is the opposite one: a guest
given a synthetic topology such as
-smp 16,sockets=1,cores=8,threads=2
will fold what it believes is a core, but those two vCPU threads need
not be co-located on any host core, so nothing in particular is freed.
So mainly a documentation request: a sentence in
Documentation/driver-api/steal-governor.rst noting that the core-level
step assumes the guest topology reflects host scheduling granularity,
and that on KVM and Xen it commonly does not. It would also explain to
readers why convergence looks slower there than in your PowerVM numbers.
--
I would be happy to run this on x86 KVM and on Xen PV guests if that is
useful -- the series has no Xen coverage that I can see, and points 1
and 3 above would both show up there first.
Thanks,
Ionut
prev parent reply other threads:[~2026-08-12 19:46 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-12 5:40 [PATCH v10 00/12] sched, steal_governor: Introduce preferred CPUs and steal-driven vCPU backoff Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 01/12] sched/cputime: Add kcpustat_field_total helper Shrikanth Hegde
2026-08-12 18:44 ` Yury Norov
2026-08-12 5:40 ` [PATCH v10 02/12] sched/docs: Document cpu_preferred_mask and Preferred CPU concept Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 03/12] cpumask: Introduce cpu_preferred_mask Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 04/12] sysfs: Add preferred CPU file Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 05/12] sched/core: Try to use a preferred CPU in is_cpu_allowed Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 06/12] sched/fair: Load balance only among preferred CPUs Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 07/12] sched/core: Push current task from non preferred CPU Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 08/12] sched/debug: Add migration stats due to non preferred CPUs Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 09/12] virt: Introduce steal governor driver Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 10/12] virt/steal_governor: Add control knobs for handling steal values Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 11/12] virt/steal_governor: Implement steal_governor policy loop Shrikanth Hegde
2026-08-12 5:40 ` [PATCH v10 12/12] virt/steal_governor: Enable the driver Shrikanth Hegde
2026-08-12 19:45 ` Ionut Nechita (Sunlight Linux) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260812194600.52516-1-sunlightlinux@gmail.com \
--to=sunlightlinux@gmail.com \
--cc=arighi@nvidia.com \
--cc=chleroy@kernel.org \
--cc=christian.loehle@arm.com \
--cc=corbet@lwn.net \
--cc=dietmar.eggemann@arm.com \
--cc=frederic@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=hdanton@sina.com \
--cc=huschle@linux.ibm.com \
--cc=iii@linux.ibm.com \
--cc=jgross@suse.com \
--cc=juri.lelli@redhat.com \
--cc=kernellwp@gmail.com \
--cc=kprateek.nayak@amd.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maddy@linux.ibm.com \
--cc=maz@kernel.org \
--cc=meted@linux.ibm.com \
--cc=mingo@kernel.org \
--cc=pauld@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peterz@infradead.org \
--cc=rafael@kernel.org \
--cc=rdunlap@infradead.org \
--cc=rostedt@goodmis.org \
--cc=seanjc@google.com \
--cc=srikar@linux.ibm.com \
--cc=sshegde@linux.ibm.com \
--cc=tglx@kernel.org \
--cc=tj@kernel.org \
--cc=tommaso.cucinotta@gmail.com \
--cc=vincent.guittot@linaro.org \
--cc=vineeth@bitbyteword.org \
--cc=virtualization@lists.linux.dev \
--cc=vschneid@redhat.com \
--cc=ynorov@nvidia.com \
--cc=yury.norov@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox