Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758757Ab1FWBbZ (ORCPT ); Wed, 22 Jun 2011 21:31:25 -0400 Received: from fgwmail5.fujitsu.co.jp ([192.51.44.35]:43968 "EHLO fgwmail5.fujitsu.co.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758238Ab1FWBbY (ORCPT ); Wed, 22 Jun 2011 21:31:24 -0400 X-SecurityPolicyCheck-FJ: OK by FujitsuOutboundMailChecker v1.3.1 Message-ID: <4E02975A.3000800@jp.fujitsu.com> Date: Thu, 23 Jun 2011 10:31:06 +0900 From: KOSAKI Motohiro User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.9.2.18) Gecko/20110616 Lightning/1.0b2 Thunderbird/3.1.11 MIME-Version: 1.0 To: rientjes@google.com CC: akpm@linux-foundation.org, torvalds@linux-foundation.org, kamezawa.hiroyu@jp.fujitsu.com, mgorman@suse.de, linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [patch 1/2] mm, hotplug: fix error handling in mem_online_node() References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1679 Lines: 52 (2011/06/23 10:13), David Rientjes wrote: > The error handling in mem_online_node() is incorrect: hotadd_new_pgdat() > returns NULL if the new pgdat could not have been allocated and a pointer > to it otherwise. > > mem_online_node() should fail if hotadd_new_pgdat() fails, not the > inverse. This fixes an issue when memoryless nodes are not onlined and > their sysfs interface is not registered when their first cpu is brought > up. > > Signed-off-by: David Rientjes Nice catch. The fault was introduced by commit cf23422b9d76(cpu/mem hotplug: enable CPUs online before local memory online) iow v2.6.35. Reviewed-by: KOSAKI Motohiro > --- > mm/memory_hotplug.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c > --- a/mm/memory_hotplug.c > +++ b/mm/memory_hotplug.c > @@ -521,7 +521,7 @@ int mem_online_node(int nid) > > lock_memory_hotplug(); > pgdat = hotadd_new_pgdat(nid, 0); > - if (pgdat) { > + if (!pgdat) { > ret = -ENOMEM; > goto out; > } > > -- > To unsubscribe, send a message with 'unsubscribe linux-mm' in > the body to majordomo@kvack.org. For more info on Linux MM, > see: http://www.linux-mm.org/ . > Fight unfair telecom internet charges in Canada: sign http://stopthemeter.ca/ > Don't email: email@kvack.org > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/