From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756381Ab2CMPeN (ORCPT ); Tue, 13 Mar 2012 11:34:13 -0400 Received: from mail-pz0-f52.google.com ([209.85.210.52]:40004 "EHLO mail-pz0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754513Ab2CMPeL (ORCPT ); Tue, 13 Mar 2012 11:34:11 -0400 From: Kautuk Consul To: Andrew Morton , Mel Gorman , Tejun Heo , KAMEZAWA Hiroyuki , Minchan Kim Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org, Kautuk Consul Subject: [PATCH 2/2] page_alloc: Remove argument to find_zone_movable_pfns_for_nodes Date: Tue, 13 Mar 2012 11:33:23 -0400 Message-Id: <1331652803-3092-1-git-send-email-consul.kautuk@gmail.com> X-Mailer: git-send-email 1.7.5.4 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The find_zone_movable_pfns_for_nodes() function does not utiilize the argument to it. Removing this argument from the function prototype as well as its caller, i.e. free_area_init_nodes(). Signed-off-by: Kautuk Consul --- mm/page_alloc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mm/page_alloc.c b/mm/page_alloc.c index 3171f4c..a368b9b 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -4509,7 +4509,7 @@ static unsigned long __init early_calculate_totalpages(void) * memory. When they don't, some nodes will have more kernelcore than * others */ -static void __init find_zone_movable_pfns_for_nodes(unsigned long *movable_pfn) +static void __init find_zone_movable_pfns_for_nodes(void) { int i, nid; unsigned long usable_startpfn; @@ -4701,7 +4701,7 @@ void __init free_area_init_nodes(unsigned long *max_zone_pfn) /* Find the PFNs that ZONE_MOVABLE begins at in each node */ memset(zone_movable_pfn, 0, sizeof(zone_movable_pfn)); - find_zone_movable_pfns_for_nodes(zone_movable_pfn); + find_zone_movable_pfns_for_nodes(); /* Print out the zone ranges */ printk("Zone PFN ranges:\n"); -- 1.7.5.4