Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760609AbcLVVcj (ORCPT ); Thu, 22 Dec 2016 16:32:39 -0500 Received: from mail-pf0-f194.google.com ([209.85.192.194]:33002 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752410AbcLVVch (ORCPT ); Thu, 22 Dec 2016 16:32:37 -0500 Subject: Re: Fwd: [PATCH 1/1] of/fdt: failed to mark hotplug range message To: Heinrich Schuchardt , Reza Arbab , Balbir Singh , Andrew Morton References: <20161222053405.27190-1-xypron.glpk@gmx.de> <5251e7ef-cadf-7833-9a7e-66ebf78e2e94@gmx.de> Cc: Rob Herring , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org From: Frank Rowand Message-ID: <585C463A.3080102@gmail.com> Date: Thu, 22 Dec 2016 13:31:38 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <5251e7ef-cadf-7833-9a7e-66ebf78e2e94@gmx.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1091 Lines: 37 And the patch to be fixed was merged via akpm, so adding him. Fixes: 41a9ada3e6b4 ("of/fdt: mark hotpluggable memory") -Frank On 12/21/16 21:52, Heinrich Schuchardt wrote: > scripts/get_maintainers.pl did not show the people involved in creating > the code to be changed. > > On 12/22/2016 06:34 AM, Heinrich Schuchardt wrote: >> If marking a hotplug range fails a message >> "failed to mark hotplug range" is written. >> >> The end address is base + size - 1. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> drivers/of/fdt.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c >> index c9b5cac03b36..fd129b6e5396 100644 >> --- a/drivers/of/fdt.c >> +++ b/drivers/of/fdt.c >> @@ -1057,7 +1057,7 @@ int __init early_init_dt_scan_memory(unsigned long node, const char *uname, >> >> if (early_init_dt_mark_hotplug_memory_arch(base, size)) >> pr_warn("failed to mark hotplug range 0x%llx - 0x%llx\n", >> - base, base + size); >> + base, base + size - 1); >> } >> >> return 0; >> > >