Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757551AbcC2QHh (ORCPT ); Tue, 29 Mar 2016 12:07:37 -0400 Received: from foss.arm.com ([217.140.101.70]:41261 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752704AbcC2QHf (ORCPT ); Tue, 29 Mar 2016 12:07:35 -0400 Date: Tue, 29 Mar 2016 17:07:57 +0100 From: Will Deacon To: Stefano Stabellini Cc: catalin.marinas@arm.com, linux-arm-kernel@lists.infradead.org, stefano.stabellini@citrix.com, david.vrabel@citrix.com, devicetree@vger.kernel.org, linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, julien.grall@arm.com, peter.huangpeng@huawei.com, xen-devel@lists.xen.org, zhaoshenglong@huawei.com, shannon.zhao@linaro.org Subject: Re: [PATCH v7 11/17] ARM: XEN: Move xen_early_init() before efi_init() Message-ID: <20160329160756.GG6745@arm.com> References: <1458830676-27075-1-git-send-email-shannon.zhao@linaro.org> <1458830676-27075-12-git-send-email-shannon.zhao@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 863 Lines: 28 On Sat, Mar 26, 2016 at 12:54:09PM +0000, Stefano Stabellini wrote: > are you OK with this patch? Nothing against it, but the only arm64 bit is: > > diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c > > index 450987d..6cf5051 100644 > > --- a/arch/arm64/kernel/setup.c > > +++ b/arch/arm64/kernel/setup.c > > @@ -313,6 +313,7 @@ void __init setup_arch(char **cmdline_p) > > */ > > local_async_enable(); > > > > + xen_early_init(); > > efi_init(); > > arm64_memblock_init(); > > > > @@ -334,7 +335,6 @@ void __init setup_arch(char **cmdline_p) > > } else { > > psci_acpi_init(); > > } > > - xen_early_init(); so it's difficult to care too much ;) I do hope that there won't be a need to split up efi_init() in future because some of it has to happen before xen_early_init, but that doesn't sound likely at the moment. Will