2 * linux/mm/memory_hotplug.c
7 #include <linux/stddef.h>
9 #include <linux/swap.h>
10 #include <linux/interrupt.h>
11 #include <linux/pagemap.h>
12 #include <linux/bootmem.h>
13 #include <linux/compiler.h>
14 #include <linux/module.h>
15 #include <linux/pagevec.h>
16 #include <linux/slab.h>
17 #include <linux/sysctl.h>
18 #include <linux/cpu.h>
19 #include <linux/memory.h>
20 #include <linux/memory_hotplug.h>
21 #include <linux/highmem.h>
22 #include <linux/vmalloc.h>
23 #include <linux/ioport.h>
25 #include <asm/tlbflush.h>
27 extern void zonetable_add(struct zone
*zone
, int nid
, int zid
, unsigned long pfn
,
29 static int __add_zone(struct zone
*zone
, unsigned long phys_start_pfn
)
31 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
32 int nr_pages
= PAGES_PER_SECTION
;
33 int nid
= pgdat
->node_id
;
36 zone_type
= zone
- pgdat
->node_zones
;
37 if (!populated_zone(zone
)) {
39 ret
= init_currently_empty_zone(zone
, phys_start_pfn
, nr_pages
);
43 memmap_init_zone(nr_pages
, nid
, zone_type
, phys_start_pfn
);
44 zonetable_add(zone
, nid
, zone_type
, phys_start_pfn
, nr_pages
);
48 extern int sparse_add_one_section(struct zone
*zone
, unsigned long start_pfn
,
50 static int __add_section(struct zone
*zone
, unsigned long phys_start_pfn
)
52 int nr_pages
= PAGES_PER_SECTION
;
55 if (pfn_valid(phys_start_pfn
))
58 ret
= sparse_add_one_section(zone
, phys_start_pfn
, nr_pages
);
63 ret
= __add_zone(zone
, phys_start_pfn
);
68 return register_new_memory(__pfn_to_section(phys_start_pfn
));
72 * Reasonably generic function for adding memory. It is
73 * expected that archs that support memory hotplug will
74 * call this function after deciding the zone to which to
77 int __add_pages(struct zone
*zone
, unsigned long phys_start_pfn
,
78 unsigned long nr_pages
)
82 int start_sec
, end_sec
;
83 /* during initialize mem_map, align hot-added range to section */
84 start_sec
= pfn_to_section_nr(phys_start_pfn
);
85 end_sec
= pfn_to_section_nr(phys_start_pfn
+ nr_pages
- 1);
87 for (i
= start_sec
; i
<= end_sec
; i
++) {
88 err
= __add_section(zone
, i
<< PFN_SECTION_SHIFT
);
91 * EEXIST is finally dealed with by ioresource collision
92 * check. see add_memory() => register_memory_resource()
93 * Warning will be printed if there is collision.
95 if (err
&& (err
!= -EEXIST
))
102 EXPORT_SYMBOL_GPL(__add_pages
);
104 static void grow_zone_span(struct zone
*zone
,
105 unsigned long start_pfn
, unsigned long end_pfn
)
107 unsigned long old_zone_end_pfn
;
109 zone_span_writelock(zone
);
111 old_zone_end_pfn
= zone
->zone_start_pfn
+ zone
->spanned_pages
;
112 if (start_pfn
< zone
->zone_start_pfn
)
113 zone
->zone_start_pfn
= start_pfn
;
115 zone
->spanned_pages
= max(old_zone_end_pfn
, end_pfn
) -
116 zone
->zone_start_pfn
;
118 zone_span_writeunlock(zone
);
121 static void grow_pgdat_span(struct pglist_data
*pgdat
,
122 unsigned long start_pfn
, unsigned long end_pfn
)
124 unsigned long old_pgdat_end_pfn
=
125 pgdat
->node_start_pfn
+ pgdat
->node_spanned_pages
;
127 if (start_pfn
< pgdat
->node_start_pfn
)
128 pgdat
->node_start_pfn
= start_pfn
;
130 pgdat
->node_spanned_pages
= max(old_pgdat_end_pfn
, end_pfn
) -
131 pgdat
->node_start_pfn
;
134 int online_pages(unsigned long pfn
, unsigned long nr_pages
)
138 unsigned long onlined_pages
= 0;
141 unsigned long start_pfn
;
143 int need_zonelists_rebuild
= 0;
146 * This doesn't need a lock to do pfn_to_page().
147 * The section can't be removed here because of the
148 * memory_block->state_sem.
150 zone
= page_zone(pfn_to_page(pfn
));
151 pgdat_resize_lock(zone
->zone_pgdat
, &flags
);
152 grow_zone_span(zone
, pfn
, pfn
+ nr_pages
);
153 grow_pgdat_span(zone
->zone_pgdat
, pfn
, pfn
+ nr_pages
);
154 pgdat_resize_unlock(zone
->zone_pgdat
, &flags
);
157 * If this zone is not populated, then it is not in zonelist.
158 * This means the page allocator ignores this zone.
159 * So, zonelist must be updated after online.
161 if (!populated_zone(zone
))
162 need_zonelists_rebuild
= 1;
164 res
.start
= (u64
)pfn
<< PAGE_SHIFT
;
165 res
.end
= res
.start
+ ((u64
)nr_pages
<< PAGE_SHIFT
) - 1;
166 res
.flags
= IORESOURCE_MEM
; /* we just need system ram */
167 section_end
= res
.end
;
169 while ((res
.start
< res
.end
) && (find_next_system_ram(&res
) >= 0)) {
170 start_pfn
= (unsigned long)(res
.start
>> PAGE_SHIFT
);
171 nr_pages
= (unsigned long)
172 ((res
.end
+ 1 - res
.start
) >> PAGE_SHIFT
);
174 if (PageReserved(pfn_to_page(start_pfn
))) {
175 /* this region's page is not onlined now */
176 for (i
= 0; i
< nr_pages
; i
++) {
177 struct page
*page
= pfn_to_page(start_pfn
+ i
);
183 res
.start
= res
.end
+ 1;
184 res
.end
= section_end
;
186 zone
->present_pages
+= onlined_pages
;
187 zone
->zone_pgdat
->node_present_pages
+= onlined_pages
;
189 setup_per_zone_pages_min();
191 if (need_zonelists_rebuild
)
192 build_all_zonelists();
193 vm_total_pages
= nr_free_pagecache_pages();
197 static pg_data_t
*hotadd_new_pgdat(int nid
, u64 start
)
199 struct pglist_data
*pgdat
;
200 unsigned long zones_size
[MAX_NR_ZONES
] = {0};
201 unsigned long zholes_size
[MAX_NR_ZONES
] = {0};
202 unsigned long start_pfn
= start
>> PAGE_SHIFT
;
204 pgdat
= arch_alloc_nodedata(nid
);
208 arch_refresh_nodedata(nid
, pgdat
);
210 /* we can use NODE_DATA(nid) from here */
212 /* init node's zones as empty zones, we don't have any present pages.*/
213 free_area_init_node(nid
, pgdat
, zones_size
, start_pfn
, zholes_size
);
218 static void rollback_node_hotadd(int nid
, pg_data_t
*pgdat
)
220 arch_refresh_nodedata(nid
, NULL
);
221 arch_free_nodedata(pgdat
);
225 /* add this memory to iomem resource */
226 static struct resource
*register_memory_resource(u64 start
, u64 size
)
228 struct resource
*res
;
229 res
= kzalloc(sizeof(struct resource
), GFP_KERNEL
);
232 res
->name
= "System RAM";
234 res
->end
= start
+ size
- 1;
235 res
->flags
= IORESOURCE_MEM
;
236 if (request_resource(&iomem_resource
, res
) < 0) {
237 printk("System RAM resource %llx - %llx cannot be added\n",
238 (unsigned long long)res
->start
, (unsigned long long)res
->end
);
245 static void release_memory_resource(struct resource
*res
)
249 release_resource(res
);
256 int add_memory(int nid
, u64 start
, u64 size
)
258 pg_data_t
*pgdat
= NULL
;
260 struct resource
*res
;
263 res
= register_memory_resource(start
, size
);
267 if (!node_online(nid
)) {
268 pgdat
= hotadd_new_pgdat(nid
, start
);
272 ret
= kswapd_run(nid
);
277 /* call arch's memory hotadd */
278 ret
= arch_add_memory(nid
, start
, size
);
283 /* we online node here. we can't roll back from here. */
284 node_set_online(nid
);
287 ret
= register_one_node(nid
);
289 * If sysfs file of new node can't create, cpu on the node
290 * can't be hot-added. There is no rollback way now.
291 * So, check by BUG_ON() to catch it reluctantly..
298 /* rollback pgdat allocation and others */
300 rollback_node_hotadd(nid
, pgdat
);
302 release_memory_resource(res
);
306 EXPORT_SYMBOL_GPL(add_memory
);