[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH] x86/pv-shim: Avoid a command line parameter warning for CONFIG_PV_SHIM_EXCLUSIVE builds
>>> On 29.01.19 at 20:07, <andrew.cooper3@xxxxxxxxxx> wrote: > --- a/xen/arch/x86/pv/shim.c > +++ b/xen/arch/x86/pv/shim.c > @@ -40,7 +40,11 @@ > #undef virt_to_mfn > #define virt_to_mfn(va) _mfn(__virt_to_mfn(va)) > > -#ifndef CONFIG_PV_SHIM_EXCLUSIVE > +#ifdef CONFIG_PV_SHIM_EXCLUSIVE > +/* Tolerate "pv-shim" being passed to a CONFIG_PV_SHIM_EXCLUSIVE hypervisor. > */ > +static bool _discard; > +boolean_param("pv-shim", _discard); > +#else > bool pv_shim; > boolean_param("pv-shim", pv_shim); > #endif It would end up being less extra code if you did #ifdef CONFIG_PV_SHIM_EXCLUSIVE /* Tolerate "pv-shim" being passed to a CONFIG_PV_SHIM_EXCLUSIVE hypervisor. */ static bool __initdata pv_shim; #else bool pv_shim; #endif boolean_param("pv-shim", pv_shim); But at the very least the __initdata wants adding. Preferably in the suggested form Acked-by: Jan Beulich <jbeulich@xxxxxxxx> Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |