From: Alexander Graf Date: Sun, 11 May 2014 23:11:55 +0000 (+0200) Subject: PPC: KVM: Make NX bit available with magic page X-Git-Tag: v3.16-rc1~30^2~8^2~1^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5c165aeca3e357fbc9760e5f66b6de8ef994e3c7;p=platform%2Fkernel%2Flinux-exynos.git PPC: KVM: Make NX bit available with magic page Because old kernels enable the magic page and then choke on NXed trampoline code we have to disable NX by default in KVM when we use the magic page. However, since commit b18db0b8 we have successfully fixed that and can now leave NX enabled, so tell the hypervisor about this. Signed-off-by: Alexander Graf --- diff --git a/arch/powerpc/kernel/kvm.c b/arch/powerpc/kernel/kvm.c index 6a01752..5e6f24f 100644 --- a/arch/powerpc/kernel/kvm.c +++ b/arch/powerpc/kernel/kvm.c @@ -417,7 +417,7 @@ static void kvm_map_magic_page(void *data) ulong out[8]; in[0] = KVM_MAGIC_PAGE; - in[1] = KVM_MAGIC_PAGE; + in[1] = KVM_MAGIC_PAGE | MAGIC_PAGE_FLAG_NOT_MAPPED_NX; epapr_hypercall(in, out, KVM_HCALL_TOKEN(KVM_HC_PPC_MAP_MAGIC_PAGE));