]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
PPC: KVM: Make NX bit available with magic page
authorAlexander Graf <agraf@suse.de>
Sun, 11 May 2014 23:11:55 +0000 (01:11 +0200)
committerAlexander Graf <agraf@suse.de>
Fri, 30 May 2014 12:26:25 +0000 (14:26 +0200)
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 <agraf@suse.de>
arch/powerpc/kernel/kvm.c

index 6a0175297b0d8e92495ce97e7274ecba72fcb790..5e6f24f894d979094870d96bff2c7aff406225d9 100644 (file)
@@ -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));