Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751412Ab2JEGsH (ORCPT ); Fri, 5 Oct 2012 02:48:07 -0400 Received: from arkanian.console-pimps.org ([212.110.184.194]:44651 "EHLO arkanian.console-pimps.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750709Ab2JEGsF (ORCPT ); Fri, 5 Oct 2012 02:48:05 -0400 Message-ID: <1349419680.15966.32.camel@mfleming-mobl1.ger.corp.intel.com> Subject: Re: [PATCH 1/3] x86, mm: Include the entire kernel memory map in trampoline_pgd From: Matt Fleming To: Jan Beulich Cc: "H. Peter Anvin" , mingo@kernel.org, x86@kernel.org, mjg@redhat.com, linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org Date: Fri, 05 Oct 2012 07:48:00 +0100 In-Reply-To: <506E9CDC020000780009FD13@nat28.tlf.novell.com> References: <1349269157-25956-1-git-send-email-matt@console-pimps.org> <1349269157-25956-2-git-send-email-matt@console-pimps.org> <506C4C3A020000780008D041@nat28.tlf.novell.com> <506DFAD8.5060701@zytor.com> <506E9CDC020000780009FD13@nat28.tlf.novell.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.4.4 (3.4.4-2.fc17) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1836 Lines: 49 On Fri, 2012-10-05 at 07:39 +0100, Jan Beulich wrote: > >>> On 04.10.12 at 23:08, "H. Peter Anvin" wrote: > > On 10/03/2012 06:31 AM, Jan Beulich wrote: > >>>>> Matt Fleming 10/03/12 2:59 PM >>> > >>> +static int insert_identity_mapping(resource_size_t paddr, unsigned long > > vaddr, > >>> + unsigned long size) > >>> +{ > >>> + unsigned long end = vaddr + size; > >>> + unsigned long next; > >>> + pgd_t *vpgd, *ppgd; > >>> + > >>> +#ifdef CONFIG_X86_32 > >>> + ppgd = initial_page_table + pgd_index(paddr); > >>> + > >>> + if (paddr >= PAGE_OFFSET || paddr + size > PAGE_OFFSET) > >>> + return 1; > >>> +#else > >>> + ppgd = __va(real_mode_header->trampoline_pgd) + pgd_index(paddr); > >> > >> Missing equivalent code (to the 32-bit one above) here - after all, you're > > trying > >> to potentially insert a 52-bit physical address into 48-bit virtual space. > >> > > > > We should have the check, but at least for Linux support we require > > P <= V-2. > > Not really imo - P <= V - 1 should be sufficient here, as all that is > necessary is that the result represents a 1:1 mapping. Specifically, > there's no constraint to the virtual space limitation of the direct > mapping of RAM. Just to be clear, I was going to add this check, /* Don't map over the guard hole. */ if (paddr >= 0x7fffffffffff || paddr + size > 0x7fffffffffff) return 1; Since I'm guessing mapping over the guard hole would be bad. -- Matt Fleming, Intel Open Source Technology Center -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/