Hi Ionut, Yury
On 8/13/26 5:43 AM, Yury Norov wrote:
Hi Ionut,
Thanks for the details. It was indeed an informative reading. Let me
add a couple notes below.
Thanks,
Yury
On Wed, Aug 12, 2026 at 10:45:56PM +0300, Ionut Nechita (Sunlight Linux) wrote:
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.
Thanks for reading and going through the series. Really appreciated.
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.
I asked the same question on v9 iteration, but the problem is still
there. I don't think that VM with a big number of offlined CPUs is
something that needs to bring admin's attention with pr_info(). The
solution should be found withing the driver.
I thought about saving the steal time for each CPU in an array, so on
the next iteration we count steal time from the same subset of CPUs,
regardless of hot plugging.
Your approach with num_possible_cpus() / num_online_cpus() scale looks
nicer, if it works. Definitely need a testing for both. Resetting the
steal baseline on each hotplug is another option, but to me the least
attractive.
This problem must be resolved this way or another before we merge the
driver.
Looking back at based on what you guys suggested,
i am thinking if we do number of active CPUs, it might work.
The reason being, only active/online CPUs will contribute to delta increase.
Since we sum across possible CPUs, spikes due to hotplug will not happen.
See the diff at the end about returning active CPUs.
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.
I prefer this could be done by arch specific hooks. For the initial series,
this has been deferred.
I had __weak symbols way of allowing arch specific hooks. But it isn't very
common
practise as yury suggested. So for now, it has been deferred.
For now, i have added check for not loading on dom0.
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.
vCPU effectively becomes a running thread/task in host. So even with KVM,
doing core level means for example SMT2, it means two less tasks in host
compared to 1. Even though it can run anywhere, it should converge faster.
I don't see why using core will hurt. Maybe I am missing to see it.
On 2 and 3.
If the governor will become a practical tool for admins, I believe
there will be the more corner cases, the more adoption the driver
gets.
Yes.
That's why I suggested the modular architecture for the governor. Now
we have 2 options:
1. Keep the driver as a single module, and add those checks for DOM 0
You mean add below check in this driver?
I have added it and once we have arch spefific implementation, we can remove it.
#ifdef CONFIG_XEN
if (xen_initial_domain()) {
pr_err("Cannot load in Xen Dom0 (Host OS). Driver is for guests
only.\n");
return -ENODEV;
}
#endif
See the diff in the end.
and per-core vs per-thread behavior.
Unless we see using core level hurts, i don't see a reason why we should
switch to per CPU. If one has numbers for using per cpu method is better for
KVM/XEN,
then we can bring in that optimization IMHO.
2. Rename this driver to powervm_steal_governor, and let KVM and XEN
engineers implement their own drivers.
I prefer to keep it as generic, since it would work fine for XEN too.
I am okay to even add XEN specific checks so it stays as one generic module.
This would help avoid many archs doing same thing more or less with few addition
debug checks. Renaming it to powervm_steal_governor would likely
fragment the solution.
The options are not mutually exclusive. The earlier versions of the
driver had a 'core' part and hooks for different arches.
At this point, I believe, keeping the driver simple is the most
important goal for making it upstreamable. When it's merged, it
will be much easier to add more functionality and tuning for
different VMs and architectures.
That's what I would prefer :)
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 agree, this should be documented.
Ok. See the diff it the end.
--
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.
If you can try the series it would help.
take the below patch and apply it on top.
I didn't test the patches myself yet, mostly because configuring VMs
is a separate topic. If you share a script that configures an
environment with paravirtual VMs that run some payload that overcommit
the vCPUs, it would be a valuable addition to the series.
Andrea Righi with his virtme is already in CC. It's a very friendly
and highly configurable wrapper around qemu that allows to compile a
and run kernel with a couple commands. Andrea, can the virtme prepare
such an environment? For testing we need:
- several paravirtual VMs, so that the number of vCPUs exceeds the
number of CPUs, and
- some payload running on them to overcommit the vCPUs, triggering
the steal time counter.
Thanks,
Yury
I think below should address all the three concerns.
Let me know if i missed anything.
Only compiled tested for x86 CONFIG_XEN.
---
diff --git a/Documentation/driver-api/steal-governor.rst
b/Documentation/driver-api/steal-governor.rst
index 672eeccabfe8..62add9f59032 100644
--- a/Documentation/driver-api/steal-governor.rst
+++ b/Documentation/driver-api/steal-governor.rst
@@ -102,22 +102,17 @@ reduce the preferred CPUs by 1 core.
Limitations of default values
-----------------------------
-Because of the vast diversity in VM configurations (e.g., highly populated
-vs. sparsely populated CPU masks, few offlined CPUs etc), the default
-thresholds may not be optimal for all systems. Users may need to tune these
-parameters based on the system under test to achieve the best results.
-
-For example:
-Possible CPUs = 128 and Active CPUs = 8
-Steal on online CPUs = 50%
-steal ratio: (50% * 8 + 0% * 120) / 128 = 3.125%
-This would fall in between and default values won't work.
-In this example, if one wants effective 2% and 5% limits, then set,
-low_threshold = (2% * 8 + 0% * 120) / 128 = 0.1250% = 12
-high_threshold = (5% * 8 + 0% * 120) / 128 = 0.3125% = 31
+Because of the vast diversity in VM configurations, the default
+thresholds may not be optimal for all systems.
Using possible CPUs helps to handle spikes during CPU hotplug as the steal
-time across possible CPUs is a monotonically increasing value.
+time across possible CPUs is a monotonically increasing value. Effective delta
+for steal time can come via only active CPUs. Current logic is effective for
even
+sparsely populated systems. But, some corner cases can still linger.
+
+Driver reduces/increases preferred CPUs by core-level. This could provide
faster
+convergence for hypervisors such as powerVM. But on KVM and Xen convergence
+could be slower depending on the configuration.
Reasons for CONFIG_STEAL_GOVERNOR=m
===================================
@@ -132,6 +127,6 @@ It is recommended to build CONFIG_STEAL_GOVERNOR=m due to
below reasons:
2. This works well when all VMs work in co-operative manner. When an
administrative user enables it in one VM, he/she will likely enable
- it all VMs.
+ it all VMs. But Note that, it should be enabled it only on actual guests.
3. User can tweak the module parameters by reloading the module.
diff --git a/drivers/virt/steal_governor.c b/drivers/virt/steal_governor.c
index ee92152e64cc..a25eb50a4c7b 100644
--- a/drivers/virt/steal_governor.c
+++ b/drivers/virt/steal_governor.c
@@ -28,6 +28,10 @@
#include <linux/types.h>
#include <linux/workqueue.h>
+#ifdef CONFIG_XEN
+#include <xen/xen.h>
+#endif
+
#if !IS_ENABLED(CONFIG_PREFERRED_CPU)
#error "Steal Governor requires CONFIG_PREFERRED_CPU"
#endif
@@ -122,7 +126,7 @@ static u64 get_system_steal_time(void)
/* Return number of CPUs to consider for steal ratio. */
static unsigned int get_system_cpus(void)
{
- return num_possible_cpus();
+ return num_active_cpus();
}
/*
@@ -254,6 +258,13 @@ static void steal_governor_loop(struct work_struct *work)
static int __init steal_governor_init(void)
{
+
+#ifdef CONFIG_XEN
+ if (xen_initial_domain()) {
+ pr_err("Cannot load in Xen Dom0 (Host OS). Driver is for guests
only.\n");
+ return -ENODEV;
+ }
+#endif
if (sg_ctx.low_threshold >= sg_ctx.high_threshold) {
pr_err("low_threshold (%u) must be less than high_threshold
(%u)\n",
sg_ctx.low_threshold, sg_ctx.high_threshold);