All of lore.kernel.org
 help / color / mirror / Atom feed
From: <gregkh@linuxfoundation.org>
To: ytht.net@gmail.com, gregkh@linuxfoundation.org, groeck@chromium.org
Cc: <stable@vger.kernel.org>, <stable-commits@vger.kernel.org>
Subject: Patch "kaiser: Set _PAGE_NX only if supported" has been added to the 4.9-stable tree
Date: Sat, 13 Jan 2018 15:53:56 +0100	[thread overview]
Message-ID: <151585523669@kroah.com> (raw)
In-Reply-To: <20180112214256.257463-1-ytht.net@gmail.com>


This is a note to let you know that I've just added the patch titled

    kaiser: Set _PAGE_NX only if supported

to the 4.9-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     kaiser-set-_page_nx-only-if-supported.patch
and it can be found in the queue-4.9 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From ytht.net@gmail.com  Sat Jan 13 15:46:36 2018
From: Lepton Wu <ytht.net@gmail.com>
Date: Fri, 12 Jan 2018 13:42:56 -0800
Subject: kaiser: Set _PAGE_NX only if supported
To: stable@vger.kernel.org
Cc: gregkh@linuxfoundation.org, groeck@chromium.org, hshan@google.com, Lepton Wu <ytht.net@gmail.com>
Message-ID: <20180112214256.257463-1-ytht.net@gmail.com>

From: Lepton Wu <ytht.net@gmail.com>

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>
---
 arch/x86/mm/kaiser.c |    2 ++
 1 file changed, 2 insertions(+)

--- a/arch/x86/mm/kaiser.c
+++ b/arch/x86/mm/kaiser.c
@@ -197,6 +197,8 @@ static int kaiser_add_user_map(const voi
 	 * 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);


Patches currently in stable-queue which might be from ytht.net@gmail.com are

queue-4.9/kaiser-set-_page_nx-only-if-supported.patch

  parent reply	other threads:[~2018-01-13 14:54 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-12 21:31 [PATCH 4.4-stable] kaiser: Set _PAGE_NX only if supported Lepton Wu
2018-01-12 21:38 ` [PATCH 4.4-stable v2] " Lepton Wu
2018-01-12 21:39 ` [PATCH 4.4-stable] " Guenter Roeck
2018-01-12 21:41 ` [PATCH 4.4-stable v3] " Lepton Wu
2018-01-12 21:46   ` Guenter Roeck
2018-01-12 21:48     ` lepton
2018-01-12 23:05       ` lepton
2018-01-13 14:51         ` Greg Kroah-Hartman
2018-01-13 18:47           ` lepton
2018-01-13 19:10             ` Greg Kroah-Hartman
2018-01-16 14:18             ` [PATCH 3.2-stable 1/2] " Juerg Haefliger
2018-01-16 14:18             ` [PATCH 3.2-stable 2/2] " Juerg Haefliger
2018-01-16 14:19             ` [PATCH 3.16-stable 1/2] " Juerg Haefliger
2018-02-05 19:26               ` Ben Hutchings
2018-01-16 14:19             ` [PATCH 3.16-stable 2/2] " Juerg Haefliger
2018-01-12 21:42 ` [PATCH 4.4-stable v4] " Lepton Wu
2018-01-13 14:53   ` Patch "kaiser: Set _PAGE_NX only if supported" has been added to the 4.4-stable tree gregkh
2018-01-13 14:53   ` gregkh [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-01-05 13:44 Patch "kaiser: Set _PAGE_NX only if supported" has been added to the 4.9-stable tree gregkh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=151585523669@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=groeck@chromium.org \
    --cc=stable-commits@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=ytht.net@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.