From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751448AbdALMIJ (ORCPT ); Thu, 12 Jan 2017 07:08:09 -0500 Received: from mail-wj0-f193.google.com ([209.85.210.193]:33095 "EHLO mail-wj0-f193.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750981AbdALMIH (ORCPT ); Thu, 12 Jan 2017 07:08:07 -0500 From: Nicolai Stange To: Dave Young Cc: Matt Fleming , Ard Biesheuvel , linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, x86@kernel.org, Nicolai Stange , Ingo Molnar , Thomas Gleixner , hpa@zytor.com, Dan Williams , mika.penttila@nextfour.com, bhsharma@redhat.com Subject: Re: [PATCH 3/4] efi/x86: move efi_print_memmap to drivers/firmware/efi/memmap.c References: <20170112094118.815108042@redhat.com> <20170112094214.964092881@redhat.com> Date: Thu, 12 Jan 2017 13:08:03 +0100 In-Reply-To: <20170112094214.964092881@redhat.com> (Dave Young's message of "Thu, 12 Jan 2017 17:41:21 +0800") Message-ID: <87wpe0o50c.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Jan 12 2017, Dave Young wrote: > Signed-off-by: Dave Young > --- > arch/x86/platform/efi/efi.c | 16 ---------------- > drivers/firmware/efi/memmap.c | 16 ++++++++++++++++ > 2 files changed, 16 insertions(+), 16 deletions(-) > > --- linux-x86.orig/arch/x86/platform/efi/efi.c > +++ linux-x86/arch/x86/platform/efi/efi.c > @@ -210,22 +210,6 @@ int __init efi_memblock_x86_reserve_rang > return 0; > } > > -void __init efi_print_memmap(void) > -{ > - efi_memory_desc_t *md; > - int i = 0; > - > - for_each_efi_memory_desc(md) { > - char buf[64]; > - > - pr_info("mem%02u: %s range=[0x%016llx-0x%016llx] (%lluMB)\n", > - i++, efi_md_typeattr_format(buf, sizeof(buf), md), > - md->phys_addr, > - md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT) - 1, > - (md->num_pages >> (20 - EFI_PAGE_SHIFT))); > - } > -} > - > static int __init efi_systab_init(void *phys) > { > if (efi_enabled(EFI_64BIT)) { > --- linux-x86.orig/drivers/firmware/efi/memmap.c > +++ linux-x86/drivers/firmware/efi/memmap.c > @@ -10,6 +10,22 @@ > #include > #include > > +void __init efi_print_memmap(void) > +{ > + efi_memory_desc_t *md; > + int i = 0; > + > + for_each_efi_memory_desc(md) { > + char buf[64]; > + > + pr_info("mem%02u: %s range=[0x%016llx-0x%016llx] (%lluMB)\n", > + i++, efi_md_typeattr_format(buf, sizeof(buf), md), > + md->phys_addr, > + md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT) - 1, > + (md->num_pages >> (20 - EFI_PAGE_SHIFT))); > + } > +} > + > /** > * __efi_memmap_init - Common code for mapping the EFI memory map > * @data: EFI memory map data Shouldn't the declaration in arch/x86/include/asm/efi.h get moved as well? Thanks, Nicolai