Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751268AbeADX6k (ORCPT + 1 other); Thu, 4 Jan 2018 18:58:40 -0500 Received: from mail-it0-f54.google.com ([209.85.214.54]:40773 "EHLO mail-it0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751100AbeADX6j (ORCPT ); Thu, 4 Jan 2018 18:58:39 -0500 X-Google-Smtp-Source: ACJfBosWzb6bGZ6RbnkWA3i9P7f/KN+3bHYVLd5UZz4Yaohci6ru7YIuItr+qNsMGJlsGPoaSbRsLolnXTkMW6W7t98= MIME-Version: 1.0 In-Reply-To: <20180104234555.GA4143@roeck-us.net> References: <20180103195056.837404126@linuxfoundation.org> <20180104234555.GA4143@roeck-us.net> From: Linus Torvalds Date: Thu, 4 Jan 2018 15:58:37 -0800 X-Google-Sender-Auth: k2RS9uULcSKmdUsTvhpXIbqyNfQ Message-ID: Subject: Re: [PATCH 4.4 00/37] 4.4.110-stable review To: Guenter Roeck Cc: Greg Kroah-Hartman , Linux Kernel Mailing List , Andrew Morton , Shuah Khan , patches@kernelci.org, Ben Hutchings , lkft-triage@lists.linaro.org, stable , Tao Wu Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Thu, Jan 4, 2018 at 3:45 PM, Guenter Roeck wrote: > > [ 0.721821] init: Corrupted page table at address 57b029b332e0 > [ 0.722761] PGD 80000000bb238067 PUD bc36a067 PMD bc369067 PTE 45d2067 > [ 0.722761] Bad pagetable: 000b [#1] PREEMPT SMP Ok, it's unhappy because the RSVD bit is set in the error code. And yeah, that seems to be due to NX in the pgd (nothing else is certainly set), with presumably a virtual machine that doesn't support it. So I suspect your patch is indeed the right thing. > The crash part of this problem may be solved with the following patch > (thanks to Hugh for the hint). There is still another problem, though - > with this patch applied, the qemu session aborts with "VCPU Shutdown > request", whatever that means. Presumably that is a triple fault. That causes a reboot traditionally, and in a virtual environment that would be approximated with a VCPU shutdown. Linus