Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965026Ab2EYRI2 (ORCPT ); Fri, 25 May 2012 13:08:28 -0400 Received: from mx1.redhat.com ([209.132.183.28]:63932 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933480Ab2EYRDf (ORCPT ); Fri, 25 May 2012 13:03:35 -0400 From: Andrea Arcangeli To: linux-kernel@vger.kernel.org, linux-mm@kvack.org Cc: Hillf Danton , Dan Smith , Peter Zijlstra , Linus Torvalds , Andrew Morton , Thomas Gleixner , Ingo Molnar , Paul Turner , Suresh Siddha , Mike Galbraith , "Paul E. McKenney" , Lai Jiangshan , Bharata B Rao , Lee Schermerhorn , Rik van Riel , Johannes Weiner , Srivatsa Vaddagiri , Christoph Lameter Subject: [PATCH 31/35] autonuma: initialize page structure fields Date: Fri, 25 May 2012 19:02:35 +0200 Message-Id: <1337965359-29725-32-git-send-email-aarcange@redhat.com> In-Reply-To: <1337965359-29725-1-git-send-email-aarcange@redhat.com> References: <1337965359-29725-1-git-send-email-aarcange@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 975 Lines: 27 Initialize the AutoNUMA page structure fields at boot. Signed-off-by: Andrea Arcangeli --- mm/page_alloc.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 1d3163f..3c354d4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -3673,6 +3673,10 @@ void __meminit memmap_init_zone(unsigned long size, int nid, unsigned long zone, set_pageblock_migratetype(page, MIGRATE_MOVABLE); INIT_LIST_HEAD(&page->lru); +#ifdef CONFIG_AUTONUMA + page->autonuma_last_nid = -1; + page->autonuma_migrate_nid = -1; +#endif #ifdef WANT_PAGE_VIRTUAL /* The shift won't overflow because ZONE_NORMAL is below 4G. */ if (!is_highmem_idx(zone)) -- 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/