mm, mem-hotplug: fix section mismatch. setup_per_zone_inactive_ratio() should be __meminit.
Commit bce7394a3e
("page-allocator: reset wmark_min and inactive ratio of
zone when hotplug happens") introduced invalid section references. Now,
setup_per_zone_inactive_ratio() is marked __init and then it can't be
referenced from memory hotplug code.
This patch marks it as __meminit and also marks caller as __ref.
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Reviewed-by: Minchan Kim <minchan.kim@gmail.com>
Cc: Yasunori Goto <y-goto@jp.fujitsu.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
37b23e0525
commit
839a4fcc8a
@@ -400,7 +400,7 @@ static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int online_pages(unsigned long pfn, unsigned long nr_pages)
|
int __ref online_pages(unsigned long pfn, unsigned long nr_pages)
|
||||||
{
|
{
|
||||||
unsigned long onlined_pages = 0;
|
unsigned long onlined_pages = 0;
|
||||||
struct zone *zone;
|
struct zone *zone;
|
||||||
@@ -795,7 +795,7 @@ check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
|
|||||||
return offlined;
|
return offlined;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int offline_pages(unsigned long start_pfn,
|
static int __ref offline_pages(unsigned long start_pfn,
|
||||||
unsigned long end_pfn, unsigned long timeout)
|
unsigned long end_pfn, unsigned long timeout)
|
||||||
{
|
{
|
||||||
unsigned long pfn, nr_pages, expire;
|
unsigned long pfn, nr_pages, expire;
|
||||||
|
@@ -5094,7 +5094,7 @@ void setup_per_zone_wmarks(void)
|
|||||||
* 1TB 101 10GB
|
* 1TB 101 10GB
|
||||||
* 10TB 320 32GB
|
* 10TB 320 32GB
|
||||||
*/
|
*/
|
||||||
void calculate_zone_inactive_ratio(struct zone *zone)
|
void __meminit calculate_zone_inactive_ratio(struct zone *zone)
|
||||||
{
|
{
|
||||||
unsigned int gb, ratio;
|
unsigned int gb, ratio;
|
||||||
|
|
||||||
@@ -5108,7 +5108,7 @@ void calculate_zone_inactive_ratio(struct zone *zone)
|
|||||||
zone->inactive_ratio = ratio;
|
zone->inactive_ratio = ratio;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void __init setup_per_zone_inactive_ratio(void)
|
static void __meminit setup_per_zone_inactive_ratio(void)
|
||||||
{
|
{
|
||||||
struct zone *zone;
|
struct zone *zone;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user