x86/xen: Set EFER.NX and EFER.SCE in PVH guests
authorMukesh Rathor <mukesh.rathor@oracle.com>
Wed, 10 Sep 2014 23:36:06 +0000 (16:36 -0700)
committerDavid Vrabel <david.vrabel@citrix.com>
Mon, 6 Oct 2014 09:27:47 +0000 (10:27 +0100)
commita2ef5dc2c7cbedbeb4c847039845afaea5e63745
tree0dc9014daac67ace499d36cd1051cda7acc68271
parentd1e9abd630fe66046087f6501a4e4b8de55f7ab9
x86/xen: Set EFER.NX and EFER.SCE in PVH guests

This fixes two bugs in PVH guests:

  - Not setting EFER.NX means the NX bit in page table entries is
    ignored on Intel processors and causes reserved bit page faults on
    AMD processors.

  - After the Xen commit 7645640d6ff1 ("x86/PVH: don't set EFER_SCE for
    pvh guest") PVH guests are required to set EFER.SCE to enable the
    SYSCALL instruction.

Secondary VCPUs are started with pagetables with the NX bit set so
EFER.NX must be set before using any stack or data segment.
xen_pvh_cpu_early_init() is the new secondary VCPU entry point that
sets EFER before jumping to cpu_bringup_and_idle().

Signed-off-by: Mukesh Rathor <mukesh.rathor@oracle.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: David Vrabel <david.vrabel@citrix.com>
arch/x86/xen/enlighten.c
arch/x86/xen/smp.c
arch/x86/xen/smp.h
arch/x86/xen/xen-head.S