From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg0-f67.google.com ([74.125.83.67]:39698 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965133AbeALVnB (ORCPT ); Fri, 12 Jan 2018 16:43:01 -0500 Received: by mail-pg0-f67.google.com with SMTP id z20so5385145pgv.6 for ; Fri, 12 Jan 2018 13:43:01 -0800 (PST) From: Lepton Wu To: stable@vger.kernel.org Cc: gregkh@linuxfoundation.org, groeck@chromium.org, hshan@google.com, Lepton Wu Subject: [PATCH 4.4-stable v4] kaiser: Set _PAGE_NX only if supported Date: Fri, 12 Jan 2018 13:42:56 -0800 Message-Id: <20180112214256.257463-1-ytht.net@gmail.com> In-Reply-To: <20180112213150.250374-1-ytht.net@gmail.com> References: <20180112213150.250374-1-ytht.net@gmail.com> Sender: stable-owner@vger.kernel.org List-ID: 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 Signed-off-by: Lepton Wu --- arch/x86/mm/kaiser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/mm/kaiser.c b/arch/x86/mm/kaiser.c index 6a7a77929a8c..8af98513d36c 100644 --- a/arch/x86/mm/kaiser.c +++ b/arch/x86/mm/kaiser.c @@ -198,6 +198,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); -- 2.16.0.rc1.238.g530d649a79-goog