Received: by 10.223.185.116 with SMTP id b49csp7183328wrg; Thu, 1 Mar 2018 00:59:31 -0800 (PST) X-Google-Smtp-Source: AG47ELsImAX/6zTtPvngicDKK/+/hW6vL0HmRXHnKRI5eKtJ8MD2Ruv/mr5kuUD5EGl6RH25LfhA X-Received: by 10.99.171.70 with SMTP id k6mr957703pgp.355.1519894770898; Thu, 01 Mar 2018 00:59:30 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519894770; cv=none; d=google.com; s=arc-20160816; b=yWw7nCIJ59qpse9WTFPvM9XrWyL6AFWX6lvPADyUNwJPRXbngnjPBzi5bcZqfFuiXW QZdTGKlF8fySGPna0KT0se5lkOX9Gbqa9u3nqeXyic105ttv+mH2FEGbuO5MMoeoexg5 SyTPcT+1BvKjgCEHzHRwnG05XCgRj/irWH7zKtugQF2MJ1FBje01/zTTaB3Xub1vPkCz bUcucdCQ7IcD9lhmoKT1OF/HPi6mcaQ+JlaEPJRYMWPqQve5YULEpeHPrrHNSxKWvyeR hMiY2YVaTJ8UY9orFa6OhWzS9Vl7D0a4aHqE3RBlUMPpcyCZVBcfSXmCchfLPl0vgHUA sc5w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date :arc-authentication-results; bh=oIrAAZD3eHUsdC0qM+G4dBhofVcepj8xuw2qr6DufOk=; b=sk5zXZ6iCRs1l+3fkbi3cuoNiCSJ24HGJZ0c1cyN3rtPJrYH329juOL7Ky+tUR+48c h8Izf19v9CCVkSKH/L1BTjuwAf+fGpfEtI4azfFo98BmZHCS71FPNF2okd3Yg8RgRhND 2a/HWI/1lc+s/oIEz59TuPcFTztgttzeWZrKptI+odXQR1+MIfowu+ECpxtidQ24OQw/ jdXrMtxogHY92ooWyCVMbNFMaoTcspFf5Sq+OG3wjsvotGVNwaQ3wliJvlxZkSweiTXT Bh+oSzRxYw+nEXPXCv3XUWE4g6pQbX61hG6J4eLdP5Wll5fpJCfrMe6IkMynYBM6Sai1 EC0w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a2si2179349pgd.452.2018.03.01.00.59.16; Thu, 01 Mar 2018 00:59:30 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966652AbeCAI5t (ORCPT + 99 others); Thu, 1 Mar 2018 03:57:49 -0500 Received: from Galois.linutronix.de ([146.0.238.70]:50515 "EHLO Galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S966635AbeCAI5r (ORCPT ); Thu, 1 Mar 2018 03:57:47 -0500 Received: from hsi-kbw-5-158-153-52.hsi19.kabel-badenwuerttemberg.de ([5.158.153.52] helo=nanos.tec.linutronix.de) by Galois.linutronix.de with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA256:256) (Exim 4.80) (envelope-from ) id 1erJyZ-0002Yx-3e; Thu, 01 Mar 2018 09:54:07 +0100 Date: Thu, 1 Mar 2018 09:57:44 +0100 (CET) From: Thomas Gleixner To: Ivan Gorinov cc: Linux Kernel Mailing List , x86@kernel.org Subject: Re: [PATCH v2 1/3] x86: devicetree: call early_init_dt_verify() In-Reply-To: <1519872327.58658.187.camel@intel.com> Message-ID: References: <1519872327.58658.187.camel@intel.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="8323329-526270464-1519894665=:1396" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --8323329-526270464-1519894665=:1396 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT On Wed, 28 Feb 2018, Ivan Gorinov wrote: > Call to early_init_dt_verify() is required to prepare DTB data. > It was called from arch/arm and arch/powerpc, but not arch/x86. > > Signed-off-by: Ivan Gorinov > --- >  arch/x86/kernel/devicetree.c | 1 + >  1 file changed, 1 insertion(+) > > diff --git a/arch/x86/kernel/devicetree.c b/arch/x86/kernel/devicetree.c > index 25de5f6..44189ee 100644 > --- a/arch/x86/kernel/devicetree.c > +++ b/arch/x86/kernel/devicetree.c > @@ -278,6 +278,7 @@ static void __init x86_flattree_get_config(void) >   map_len = size; ^ ^ Your patches are still whitespace damaged and fail to apply patching file arch/x86/kernel/devicetree.c patch: **** malformed patch at line 23:   map_len = size; Please fix your mail setup and please make the patch series properly threaded. There is plenty of documentation and your coworkers surely can help you with that. Thanks, tglx --8323329-526270464-1519894665=:1396--