Browse Source

mm: Fix section mismatch for setup_zone_pageset()

build_all_zonelists() which is not __meminit, calls setup_zone_pageset().

Signed-off-by: Nikanth Karthikesan <knikanth@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Nikanth Karthikesan 14 years ago
parent
commit
58c2ee4007
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mm/page_alloc.c

+ 1 - 1
mm/page_alloc.c

@@ -3448,7 +3448,7 @@ static void setup_pagelist_highmark(struct per_cpu_pageset *p,
 		pcp->batch = PAGE_SHIFT * 8;
 		pcp->batch = PAGE_SHIFT * 8;
 }
 }
 
 
-static __meminit void setup_zone_pageset(struct zone *zone)
+static void setup_zone_pageset(struct zone *zone)
 {
 {
 	int cpu;
 	int cpu;