From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751537AbdAPCxM (ORCPT ); Sun, 15 Jan 2017 21:53:12 -0500 Received: from mx1.redhat.com ([209.132.183.28]:41284 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751246AbdAPCxL (ORCPT ); Sun, 15 Jan 2017 21:53:11 -0500 Message-Id: <20170116024554.461236678@redhat.com> User-Agent: quilt/0.65 Date: Mon, 16 Jan 2017 10:45:54 +0800 From: Dave Young To: Matt Fleming , Ard Biesheuvel Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, dyoung@redhat.com, x86@kernel.org, Nicolai Stange , Ingo Molnar , Thomas Gleixner , hpa@zytor.com, Dan Williams , mika.penttila@nextfour.com, bhsharma@redhat.com Subject: [PATCH V2 0/4] efi/x86: move efi bgrt init code to early init X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Mon, 16 Jan 2017 02:53:11 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Here the the update of the series for moving bgrt init code to early init. Main changes is: - Move the 1st patch to the last because it does not block the 2nd patch any more with Peter's patch to prune invlid memmap entries: https://git.kernel.org/cgit/linux/kernel/git/efi/efi.git/commit/?h=next&id=b2a91 a35445229 But it is still tood to have since efi_mem_reserve only cares about boot related mem ranges. - Other comments about code itself, details please the the patches themselves. arch/x86/include/asm/efi.h | 1 arch/x86/kernel/acpi/boot.c | 12 +++++++ arch/x86/platform/efi/efi-bgrt.c | 59 ++++++++++++++++----------------------- arch/x86/platform/efi/efi.c | 26 +++-------------- arch/x86/platform/efi/quirks.c | 2 - drivers/acpi/bgrt.c | 28 +++++++++++++----- drivers/firmware/efi/fake_mem.c | 3 + drivers/firmware/efi/memmap.c | 22 +++++++++++++- include/linux/efi-bgrt.h | 7 +--- include/linux/efi.h | 5 +-- init/main.c | 1 11 files changed, 92 insertions(+), 74 deletions(-) Thanks Dave