[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 11/30] xen/x86: split Dom0 build into PV and PVHv2
>>> On 27.09.16 at 17:57, <roger.pau@xxxxxxxxxx> wrote: > --- a/docs/misc/xen-command-line.markdown > +++ b/docs/misc/xen-command-line.markdown > @@ -663,6 +663,13 @@ Pin dom0 vcpus to their respective pcpus > > Flag that makes a 64bit dom0 boot in PVH mode. No 32bit support at present. > > +### dom0hvm > +> `= <boolean>` > + > +> Default: `false` > + > +Flag that makes a dom0 boot in PVHv2 mode. Considering sorting aspects this clearly wants to go at least ahead of dom0pvh. > --- a/xen/arch/x86/setup.c > +++ b/xen/arch/x86/setup.c > @@ -75,6 +75,10 @@ unsigned long __read_mostly cr4_pv32_mask; > static bool_t __initdata opt_dom0pvh; > boolean_param("dom0pvh", opt_dom0pvh); > > +/* Boot dom0 in HVM mode */ > +static bool_t __initdata opt_dom0hvm; Plain bool please. > @@ -1495,6 +1499,11 @@ void __init noreturn __start_xen(unsigned long mbi_p) > if ( opt_dom0pvh ) > domcr_flags |= DOMCRF_pvh | DOMCRF_hap; > > + if ( opt_dom0hvm ) { Coding style. > + domcr_flags |= DOMCRF_hvm | (hvm_funcs.hap_supported ? DOMCRF_hap : > 0); So you mean to support PVHv2 on shadow (including for Dom0) right away. Are you also testing that? Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |