diff options
Diffstat (limited to 'mm/memory_hotplug.c')
| -rw-r--r-- | mm/memory_hotplug.c | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index e882cb6da994..d4b5f29906b9 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c @@ -328,6 +328,7 @@ int __ref __add_pages(int nid, unsigned long phys_start_pfn,  		if (err && (err != -EEXIST))  			break;  		err = 0; +		cond_resched();  	}  	vmemmap_populate_print_last();  out: @@ -337,7 +338,7 @@ EXPORT_SYMBOL_GPL(__add_pages);  #ifdef CONFIG_MEMORY_HOTREMOVE  /* find the smallest valid pfn in the range [start_pfn, end_pfn) */ -static int find_smallest_section_pfn(int nid, struct zone *zone, +static unsigned long find_smallest_section_pfn(int nid, struct zone *zone,  				     unsigned long start_pfn,  				     unsigned long end_pfn)  { @@ -362,7 +363,7 @@ static int find_smallest_section_pfn(int nid, struct zone *zone,  }  /* find the biggest valid pfn in the range [start_pfn, end_pfn). */ -static int find_biggest_section_pfn(int nid, struct zone *zone, +static unsigned long find_biggest_section_pfn(int nid, struct zone *zone,  				    unsigned long start_pfn,  				    unsigned long end_pfn)  { @@ -550,7 +551,7 @@ static int __remove_section(struct zone *zone, struct mem_section *ms,  		return ret;  	scn_nr = __section_nr(ms); -	start_pfn = section_nr_to_pfn(scn_nr); +	start_pfn = section_nr_to_pfn((unsigned long)scn_nr);  	__remove_zone(zone, start_pfn);  	sparse_remove_one_section(zone, ms, map_offset); |