From mboxrd@z Thu Jan 1 00:00:00 1970 From: "H. Peter Anvin" Subject: Re: [GIT PULL] x86/mm changes for v3.9-rc1 Date: Fri, 22 Feb 2013 09:33:34 -0800 Message-ID: <5127ABEE.8080303@zytor.com> References: <201302220034.r1M0Y6O8008311@terminus.zytor.com> <20130222165531.GA29308@phenom.dumpdata.com> <5127AB34.8090406@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <5127AB34.8090406@linux.vnet.ibm.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.linux-foundation.org Errors-To: virtualization-bounces@lists.linux-foundation.org To: Dave Hansen Cc: linux-mips@linux-mips.org, Jeremy Fitzhardinge , Fenghua Yu , Frederic Weisbecker , Joe Millenbach , virtualization@lists.linux-foundation.org, Gokul Caushik , Ralf Baechle , Pavel Machek , sparclinux@vger.kernel.org, Christoph Lameter , Ingo Molnar , =?UTF-8?B?VmlsbGUgU3lyasOkbMOk?= , Marek Szyprowski , Andrea Arcangeli , Lee Schermerhorn , xen-devel@lists.xensource.com, Russell King , Len Brown , Joerg Roedel , Stefano Stabellini , Hugh Dickins , Yasuaki Ishimatsu List-Id: virtualization@lists.linuxfoundation.org On 02/22/2013 09:30 AM, Dave Hansen wrote: > > Do you have CONFIG_DEBUG_VIRTUAL on? > > You're probably hitting the new BUG_ON() in __phys_addr(). It's > intended to detect places where someone is doing a __pa()/__phys_addr() > on an address that's outside the kernel's identity mapping. > > There are a lot of __pa() calls around there, but from the looks of it, > it's this code: > > static pgd_t *xen_get_user_pgd(pgd_t *pgd) > { > ... > if (offset < pgd_index(USER_LIMIT)) { > struct page *page = virt_to_page(pgd_page); > > I'm a bit fuzzy on exactly what the code is trying to do here. It could > mean either that the identity mapping isn't set up enough yet, or that > __pa() is getting called on a bogus address. > > I'm especially fuzzy on why we'd be calling anything that's looking at > userspace pagetables (xen_get_user_pgd() ??) this early in boot. > Ah yes, of course. This is unrelated to the early page table setups, which is why it didn't trip in Konrad's earlier testing. This debugging bits has already found real bugs in the kernel, and this might be another. -hpa -- H. Peter Anvin, Intel Open Source Technology Center I work for Intel. I don't speak on their behalf.