Re: [V0 PATCH] xen/pvh: set some cr flags upon vcpu start

From: Mukesh Rathor
Date: Wed Jan 22 2014 - 22:22:34 EST


On Mon, 20 Jan 2014 10:09:30 -0500
Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx> wrote:

> On Fri, Jan 17, 2014 at 06:24:55PM -0800, Mukesh Rathor wrote:
> > pvh was designed to start with pv flags, but a commit in xen tree
>
> Thank you for posting this!
>
> > 51e2cac257ec8b4080d89f0855c498cbbd76a5e5 removed some of the flags
> > as
>
> You need to always include the title of said commit.
>
> > they are not necessary. As a result, these CR flags must be set in
> > the guest.
>
> I sent out replies to this over the weekend but somehow they are not
> showing up.
>

Well, they finally showed up today... US mail must be slow :)...


>
> > +
> > + if (!cpu)
> > + return;
>
> And what happens if don't have this check? Will be bad if do multiple
> cr4 writes?

no, but just confuses the reader/debugger of the code IMO :)...


> Fyi, this (cr4) should have been a seperate patch. I fixed it up that
> way.
> > + /*
> > + * Unlike PV, for pvh xen does not set: PSE PGE OSFXSR
> > OSXMMEXCPT
> > + * For BSP, PSE PGE will be set in probe_page_size_mask(),
> > for AP
> > + * set them here. For all, OSFXSR OSXMMEXCPT will be set
> > in fpu_init
> > + */
> > + if (cpu_has_pse)
> > + set_in_cr4(X86_CR4_PSE);
> > +
> > + if (cpu_has_pge)
> > + set_in_cr4(X86_CR4_PGE);
> > +}
>
> Seperate patch and since the PGE part is more complicated that just
> setting the CR4 - you also have to tweak this:
>
> 1512 /* Prevent unwanted bits from being set in PTEs.
> */ 1513 __supported_pte_mask &=
> ~_PAGE_GLOBAL;
>
> I think it should be done once we have actually confirmed that you can
> do 2MB pages within the guest. (might need some more tweaking?)

Umm... well, the above is just setting the PSE and PGE in the APs, the
BSP is already doing that in probe_page_size_mask, and setting
__supported_pte_mask which needs to be set just once. So, because it's
being set in the BSP, it's already broken/untested if we add expose of PGE
from xen to a linux PVH guest...

IOW, leaving above is no more harm, or we should 'if (pvh)' the code in
probe_page_size_mask() for PSE, and wait till we can test it...

thanks
Mukesh

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/