aboutsummaryrefslogtreecommitdiffstats
path: root/mm/memory_hotplug.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/memory_hotplug.c')
-rw-r--r--mm/memory_hotplug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index f5ba127b2051..cd2990fdf6c1 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -208,13 +208,13 @@ void register_page_bootmem_info_node(struct pglist_data *pgdat)
208 pfn = pgdat->node_start_pfn; 208 pfn = pgdat->node_start_pfn;
209 end_pfn = pgdat_end_pfn(pgdat); 209 end_pfn = pgdat_end_pfn(pgdat);
210 210
211 /* register_section info */ 211 /* register section info */
212 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) { 212 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
213 /* 213 /*
214 * Some platforms can assign the same pfn to multiple nodes - on 214 * Some platforms can assign the same pfn to multiple nodes - on
215 * node0 as well as nodeN. To avoid registering a pfn against 215 * node0 as well as nodeN. To avoid registering a pfn against
216 * multiple nodes we check that this pfn does not already 216 * multiple nodes we check that this pfn does not already
217 * reside in some other node. 217 * reside in some other nodes.
218 */ 218 */
219 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node)) 219 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
220 register_page_bootmem_info_section(pfn); 220 register_page_bootmem_info_section(pfn);