blob: c37319542b700a92339fdfc4427a5fc4d6fa2ee4 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * linux/mm/memory_hotplug.c
3 *
4 * Copyright (C)
5 */
6
Dave Hansen3947be12005-10-29 18:16:54 -07007#include <linux/stddef.h>
8#include <linux/mm.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>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070023#include <linux/ioport.h>
Dave Hansen3947be12005-10-29 18:16:54 -070024
25#include <asm/tlbflush.h>
26
Dave Hansen3947be12005-10-29 18:16:54 -070027extern void zonetable_add(struct zone *zone, int nid, int zid, unsigned long pfn,
28 unsigned long size);
Yasunori Goto718127c2006-06-23 02:03:10 -070029static int __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -070030{
31 struct pglist_data *pgdat = zone->zone_pgdat;
32 int nr_pages = PAGES_PER_SECTION;
33 int nid = pgdat->node_id;
34 int zone_type;
35
36 zone_type = zone - pgdat->node_zones;
Yasunori Goto718127c2006-06-23 02:03:10 -070037 if (!populated_zone(zone)) {
38 int ret = 0;
39 ret = init_currently_empty_zone(zone, phys_start_pfn, nr_pages);
40 if (ret < 0)
41 return ret;
42 }
Dave Hansen3947be12005-10-29 18:16:54 -070043 memmap_init_zone(nr_pages, nid, zone_type, phys_start_pfn);
44 zonetable_add(zone, nid, zone_type, phys_start_pfn, nr_pages);
Yasunori Goto718127c2006-06-23 02:03:10 -070045 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -070046}
47
Dave Hansen0b0acbe2005-10-29 18:16:55 -070048extern int sparse_add_one_section(struct zone *zone, unsigned long start_pfn,
49 int nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -070050static int __add_section(struct zone *zone, unsigned long phys_start_pfn)
51{
Dave Hansen3947be12005-10-29 18:16:54 -070052 int nr_pages = PAGES_PER_SECTION;
Dave Hansen3947be12005-10-29 18:16:54 -070053 int ret;
54
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -070055 if (pfn_valid(phys_start_pfn))
56 return -EEXIST;
57
Dave Hansen0b0acbe2005-10-29 18:16:55 -070058 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -070059
60 if (ret < 0)
61 return ret;
62
Yasunori Goto718127c2006-06-23 02:03:10 -070063 ret = __add_zone(zone, phys_start_pfn);
64
65 if (ret < 0)
66 return ret;
67
Dave Hansen3947be12005-10-29 18:16:54 -070068 return register_new_memory(__pfn_to_section(phys_start_pfn));
69}
70
71/*
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
75 * add the new pages.
76 */
77int __add_pages(struct zone *zone, unsigned long phys_start_pfn,
78 unsigned long nr_pages)
79{
80 unsigned long i;
81 int err = 0;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -070082 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);
Dave Hansen3947be12005-10-29 18:16:54 -070086
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -070087 for (i = start_sec; i <= end_sec; i++) {
88 err = __add_section(zone, i << PFN_SECTION_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -070089
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -070090 /*
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.
Joel H Schoppbed120c2006-05-01 12:16:11 -070094 */
95 if (err && (err != -EEXIST))
Dave Hansen3947be12005-10-29 18:16:54 -070096 break;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -070097 err = 0;
Dave Hansen3947be12005-10-29 18:16:54 -070098 }
99
100 return err;
101}
Joel H Schoppbed120c2006-05-01 12:16:11 -0700102EXPORT_SYMBOL_GPL(__add_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700103
104static void grow_zone_span(struct zone *zone,
105 unsigned long start_pfn, unsigned long end_pfn)
106{
107 unsigned long old_zone_end_pfn;
108
109 zone_span_writelock(zone);
110
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;
114
Yasunori Goto25a6df92006-05-30 21:25:42 -0700115 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
116 zone->zone_start_pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700117
118 zone_span_writeunlock(zone);
119}
120
121static void grow_pgdat_span(struct pglist_data *pgdat,
122 unsigned long start_pfn, unsigned long end_pfn)
123{
124 unsigned long old_pgdat_end_pfn =
125 pgdat->node_start_pfn + pgdat->node_spanned_pages;
126
127 if (start_pfn < pgdat->node_start_pfn)
128 pgdat->node_start_pfn = start_pfn;
129
Yasunori Goto25a6df92006-05-30 21:25:42 -0700130 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
131 pgdat->node_start_pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700132}
133
134int online_pages(unsigned long pfn, unsigned long nr_pages)
135{
136 unsigned long i;
137 unsigned long flags;
138 unsigned long onlined_pages = 0;
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700139 struct resource res;
140 u64 section_end;
141 unsigned long start_pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700142 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700143 int need_zonelists_rebuild = 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700144
145 /*
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.
149 */
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);
155
Yasunori Goto68113782006-06-23 02:03:11 -0700156 /*
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.
160 */
161 if (!populated_zone(zone))
162 need_zonelists_rebuild = 1;
163
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700164 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;
168
KAMEZAWA Hiroyuki58c1b5b2006-08-05 12:15:01 -0700169 while ((res.start < res.end) && (find_next_system_ram(&res) >= 0)) {
KAMEZAWA Hiroyuki2842f112006-06-27 02:53:36 -0700170 start_pfn = (unsigned long)(res.start >> PAGE_SHIFT);
171 nr_pages = (unsigned long)
172 ((res.end + 1 - res.start) >> PAGE_SHIFT);
173
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);
178 online_page(page);
179 onlined_pages++;
180 }
181 }
182
183 res.start = res.end + 1;
184 res.end = section_end;
Dave Hansen3947be12005-10-29 18:16:54 -0700185 }
186 zone->present_pages += onlined_pages;
Yasunori Gotof2937be2006-03-09 17:33:51 -0800187 zone->zone_pgdat->node_present_pages += onlined_pages;
Dave Hansen3947be12005-10-29 18:16:54 -0700188
Dave Hansen61b13992005-10-29 18:16:56 -0700189 setup_per_zone_pages_min();
190
Yasunori Goto68113782006-06-23 02:03:11 -0700191 if (need_zonelists_rebuild)
192 build_all_zonelists();
KAMEZAWA Hiroyuki5a4d4362006-06-23 02:03:47 -0700193 vm_total_pages = nr_free_pagecache_pages();
Dave Hansen3947be12005-10-29 18:16:54 -0700194 return 0;
195}
Yasunori Gotobc02af92006-06-27 02:53:30 -0700196
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700197static pg_data_t *hotadd_new_pgdat(int nid, u64 start)
198{
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;
203
204 pgdat = arch_alloc_nodedata(nid);
205 if (!pgdat)
206 return NULL;
207
208 arch_refresh_nodedata(nid, pgdat);
209
210 /* we can use NODE_DATA(nid) from here */
211
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);
214
215 return pgdat;
216}
217
218static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
219{
220 arch_refresh_nodedata(nid, NULL);
221 arch_free_nodedata(pgdat);
222 return;
223}
224
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700225/* add this memory to iomem resource */
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700226static struct resource *register_memory_resource(u64 start, u64 size)
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700227{
228 struct resource *res;
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700229 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
230 BUG_ON(!res);
231
232 res->name = "System RAM";
233 res->start = start;
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);
239 kfree(res);
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700240 res = NULL;
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700241 }
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700242 return res;
243}
244
245static void release_memory_resource(struct resource *res)
246{
247 if (!res)
248 return;
249 release_resource(res);
250 kfree(res);
251 return;
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700252}
253
254
255
Yasunori Gotobc02af92006-06-27 02:53:30 -0700256int add_memory(int nid, u64 start, u64 size)
257{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700258 pg_data_t *pgdat = NULL;
259 int new_pgdat = 0;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700260 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700261 int ret;
262
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700263 res = register_memory_resource(start, size);
264 if (!res)
265 return -EEXIST;
266
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700267 if (!node_online(nid)) {
268 pgdat = hotadd_new_pgdat(nid, start);
269 if (!pgdat)
270 return -ENOMEM;
271 new_pgdat = 1;
272 ret = kswapd_run(nid);
273 if (ret)
274 goto error;
275 }
276
Yasunori Gotobc02af92006-06-27 02:53:30 -0700277 /* call arch's memory hotadd */
278 ret = arch_add_memory(nid, start, size);
279
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700280 if (ret < 0)
281 goto error;
282
Yasunori Goto0fc44152006-06-27 02:53:38 -0700283 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700284 node_set_online(nid);
285
Yasunori Goto0fc44152006-06-27 02:53:38 -0700286 if (new_pgdat) {
287 ret = register_one_node(nid);
288 /*
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..
292 */
293 BUG_ON(ret);
294 }
295
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700296 return ret;
297error:
298 /* rollback pgdat allocation and others */
299 if (new_pgdat)
300 rollback_node_hotadd(nid, pgdat);
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700301 if (res)
302 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700303
Yasunori Gotobc02af92006-06-27 02:53:30 -0700304 return ret;
305}
306EXPORT_SYMBOL_GPL(add_memory);