On 10.06.2025 15:05, Jan Beulich wrote: > On 28.05.2025 11:16, Penny Zheng wrote: >> --- a/xen/common/Kconfig >> +++ b/xen/common/Kconfig >> @@ -579,4 +579,15 @@ config BUDDY_ALLOCATOR_SIZE >> Amount of memory reserved for the buddy allocator to serve Xen heap, >> working alongside the colored one. >> >> +menu "Supported hypercall interfaces" >> + visible if EXPERT >> + >> +config SYSCTL >> + bool "Enable sysctl hypercall" >> + def_bool y > > Why def_bool when you already have bool on the earlier line?
It took me until the last patch to properly figure what's wrong here. Whether "def_bool" or "default", neither makes the prompt invisible. So you want to keep that line but remove the earlier one, for that to be added in the final patch. Jan