On 10.09.2025 09:38, Penny Zheng wrote: > In order to fix CI error of a randconfig picking both PV_SHIM_EXCLUSIVE=y and > HVM=y results in hvm.c being built, but domctl.c not being built, which leaves > a few functions, like domctl_lock_acquire/release() undefined, causing linking > to fail. > To fix that, we intend to move domctl.o out of the PV_SHIM_EXCLUSIVE Makefile > /hypercall-defs section, with this adjustment, we also need to release > redundant vnuma_destroy() stub definition from PV_SHIM_EXCLUSIVE guardian, > to not break compilation > Above change will leave dead code in the shim binary temporarily and will be > fixed with the introduction of "wrap domctl-op with CONFIG_MGMT_HYPERCALLS". > > Fixes: 568f806cba4c ("xen/x86: remove "depends on !PV_SHIM_EXCLUSIVE"") > Reported-by: Jan Beulich <jbeul...@suse.com> > Signed-off-by: Penny Zheng <penny.zh...@amd.com> > --- > v1 -> v2: > - remove paging_domctl hypercall-defs > --- > xen/arch/x86/Makefile | 2 +- > xen/common/Makefile | 5 +---- > xen/include/hypercall-defs.c | 4 +--- > xen/include/xen/domain.h | 4 ---- > 4 files changed, 3 insertions(+), 12 deletions(-)
So this is still the same patch as before, still at the front of the series. While I understand Stefano thinks differently, it was my expectation that the domctl work would follow the sysctl one in (technical) style: First make necessary arrangements, then expose the option for people to turn it off if they feel like doing so. Jan