summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLepton Wu <ytht.net@gmail.com>2018-01-16 15:19:14 +0100
committerBen Hutchings <ben@decadent.org.uk>2018-02-13 18:42:35 +0000
commit748165213beda6f96381357327ad461f70c7b881 (patch)
tree4a3438edf5f3f5875f4b181c42c85cf77f50421e
parent8c88582f4d3c3052f03e394c3d1b4af6744ed8d8 (diff)
kaiser: Set _PAGE_NX only if supported
This finally resolve crash if loaded under qemu + haxm. Haitao Shan pointed out that the reason of that crash is that NX bit get set for page tables. It seems we missed checking if _PAGE_NX is supported in kaiser_add_user_map Link: https://www.spinics.net/lists/kernel/msg2689835.html Reviewed-by: Guenter Roeck <groeck@chromium.org> Signed-off-by: Lepton Wu <ytht.net@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> (backported from Greg K-H's 4.4 stable-queue) Signed-off-by: Juerg Haefliger <juerg.haefliger@canonical.com> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
-rw-r--r--arch/x86/mm/kaiser.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/mm/kaiser.c b/arch/x86/mm/kaiser.c
index 60087fcbfbb8..8a07537dae08 100644
--- a/arch/x86/mm/kaiser.c
+++ b/arch/x86/mm/kaiser.c
@@ -195,6 +195,8 @@ static int kaiser_add_user_map(const void *__start_addr, unsigned long size,
* requires that not to be #defined to 0): so mask it off here.
*/
flags &= ~_PAGE_GLOBAL;
+ if (!(__supported_pte_mask & _PAGE_NX))
+ flags &= ~_PAGE_NX;
for (; address < end_addr; address += PAGE_SIZE) {
target_address = get_pa_from_mapping(address);