From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759405Ab3EAWlJ (ORCPT ); Wed, 1 May 2013 18:41:09 -0400 Received: from e31.co.us.ibm.com ([32.97.110.149]:54350 "EHLO e31.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757704Ab3EAWlI (ORCPT ); Wed, 1 May 2013 18:41:08 -0400 Message-ID: <518199FE.7060908@linux.vnet.ibm.com> Date: Wed, 01 May 2013 15:41:02 -0700 From: Cody P Schafer User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: David Rientjes CC: Andrew Morton , Linux MM , LKML Subject: Re: [PATCH 4/4] memory_hotplug: use pgdat_resize_lock() when updating node_present_pages References: <1367446635-12856-1-git-send-email-cody@linux.vnet.ibm.com> <1367446635-12856-5-git-send-email-cody@linux.vnet.ibm.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-TM-AS-MML: No X-Content-Scanned: Fidelis XPS MAILER x-cbid: 13050122-7282-0000-0000-000016B56E86 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 05/01/2013 03:30 PM, David Rientjes wrote: > On Wed, 1 May 2013, Cody P Schafer wrote: > >> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c >> index a221fac..0bdca10 100644 >> --- a/mm/memory_hotplug.c >> +++ b/mm/memory_hotplug.c >> @@ -915,6 +915,7 @@ static void node_states_set_node(int node, struct memory_notify *arg) >> >> int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type) >> { >> + unsigned long flags; >> unsigned long onlined_pages = 0; >> struct zone *zone; >> int need_zonelists_rebuild = 0; >> @@ -993,7 +994,11 @@ int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_typ >> >> zone->managed_pages += onlined_pages; >> zone->present_pages += onlined_pages; >> + >> + pgdat_resize_lock(zone->zone_pgdat, &flags); >> zone->zone_pgdat->node_present_pages += onlined_pages; >> + pgdat_resize_unlock(zone->zone_pgdat, &flags); >> + >> if (onlined_pages) { >> node_states_set_node(zone_to_nid(zone), &arg); >> if (need_zonelists_rebuild) > > Why? You can't get a partial read of a word-sized data structure. > Guaranteed to be stable means that if I'm a reader and pgdat_resize_lock(), node_present_pages had better not change at all until I pgdat_resize_unlock(). If nothing needs this guarantee, we should change the rules of pgdat_resize_lock(). I played it safe and went with following the existing rules.