From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-27.3 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1,USER_IN_DEF_DKIM_WL autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 30429C433DB for ; Tue, 22 Dec 2020 23:33:55 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id E10D422B2D for ; Tue, 22 Dec 2020 23:33:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726685AbgLVXdy (ORCPT ); Tue, 22 Dec 2020 18:33:54 -0500 Received: from linux.microsoft.com ([13.77.154.182]:44776 "EHLO linux.microsoft.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726072AbgLVXdy (ORCPT ); Tue, 22 Dec 2020 18:33:54 -0500 Received: from [192.168.0.104] (c-73-42-176-67.hsd1.wa.comcast.net [73.42.176.67]) by linux.microsoft.com (Postfix) with ESMTPSA id A632520B83DE; Tue, 22 Dec 2020 15:33:12 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com A632520B83DE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1608679993; bh=fTplnXce8AUizepgT9tlgsV7Lx9McrTCz0G/NnMQFbk=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=gGnJRy48t4QVjJIZCI+rIS9RJemKGB3g4bEhcrKN+UwtQj3F1R0qPwjiaXJJOpTsB 4spvBH2HXEKkuq0V7UH/6OETY4rdN5pjeYeCiw/YusykEMH786W9HvX9+rGszMgMM1 GTWxH/FXOU3n6uYGUTH9DxNk/0iIRL9RL4Ello/s= Subject: Re: [RFC PATCH 4/4] powerpc: Use common of_kexec_setup_new_fdt() To: Thiago Jung Bauermann , Rob Herring Cc: takahiro.akashi@linaro.org, will@kernel.org, catalin.marinas@arm.com, mpe@ellerman.id.au, zohar@linux.ibm.com, james.morse@arm.com, sashal@kernel.org, benh@kernel.crashing.org, paulus@samba.org, frowand.list@gmail.com, vincenzo.frascino@arm.com, mark.rutland@arm.com, dmitry.kasatkin@gmail.com, jmorris@namei.org, serge@hallyn.com, pasha.tatashin@soleen.com, allison@lohutok.net, masahiroy@kernel.org, bhsharma@redhat.com, mbrugger@suse.com, hsinyi@chromium.org, tao.li@vivo.com, christophe.leroy@c-s.fr, linux-integrity@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, prsriva@linux.microsoft.com, balajib@linux.microsoft.com References: <20201211221006.1052453-1-robh@kernel.org> <20201211221006.1052453-5-robh@kernel.org> <87h7odld3x.fsf@manicouagan.localdomain> From: Lakshmi Ramasubramanian Message-ID: Date: Tue, 22 Dec 2020 15:33:12 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <87h7odld3x.fsf@manicouagan.localdomain> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-integrity@vger.kernel.org On 12/22/20 1:55 PM, Thiago Jung Bauermann wrote: > > Rob Herring writes: > >> Signed-off-by: Rob Herring >> --- >> >> After the IMA changes, delete_fdt_mem_rsv() can also be removed. >> >> arch/powerpc/kexec/file_load.c | 125 ++------------------------------- >> 1 file changed, 6 insertions(+), 119 deletions(-) > > Reviewed-by: Thiago Jung Bauermann > > Shouldn't this series also be Cc'd to the linuxppc-dev mailing list? > > I just noticed that the ARM64 IMA kexec series hasn't been copying the > linuxppc-dev mailing list, so perhaps this is why this series isn't > doing that, either. Thanks for pointing that out Thiago. I will copy linuxppc-dev mailing list (linuxppc-dev@vger.kernel.org) when I post v14 of my patch set. -lakshmi > >> diff --git a/arch/powerpc/kexec/file_load.c b/arch/powerpc/kexec/file_load.c >> index e452b11df631..956bcb2d1ec2 100644 >> --- a/arch/powerpc/kexec/file_load.c >> +++ b/arch/powerpc/kexec/file_load.c >> @@ -16,6 +16,7 @@ >> >> #include >> #include >> +#include >> #include >> #include >> #include > > It's possible to remove the include now. >