blob: 988bd91b9f7fdd8460d2b94dbf18d05aa57d431a [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>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070016#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070017#include <linux/slab.h>
18#include <linux/sysctl.h>
19#include <linux/cpu.h>
20#include <linux/memory.h>
21#include <linux/memory_hotplug.h>
22#include <linux/highmem.h>
23#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070024#include <linux/ioport.h>
Paul Jackson38837fc2006-09-29 02:01:16 -070025#include <linux/cpuset.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070026#include <linux/delay.h>
27#include <linux/migrate.h>
28#include <linux/page-isolation.h>
Dave Hansen3947be12005-10-29 18:16:54 -070029
30#include <asm/tlbflush.h>
31
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030032#include "internal.h"
33
Keith Mannthey45e0b782006-09-30 23:27:09 -070034/* add this memory to iomem resource */
35static struct resource *register_memory_resource(u64 start, u64 size)
36{
37 struct resource *res;
38 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
39 BUG_ON(!res);
40
41 res->name = "System RAM";
42 res->start = start;
43 res->end = start + size - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -080044 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -070045 if (request_resource(&iomem_resource, res) < 0) {
46 printk("System RAM resource %llx - %llx cannot be added\n",
47 (unsigned long long)res->start, (unsigned long long)res->end);
48 kfree(res);
49 res = NULL;
50 }
51 return res;
52}
53
54static void release_memory_resource(struct resource *res)
55{
56 if (!res)
57 return;
58 release_resource(res);
59 kfree(res);
60 return;
61}
62
Keith Mannthey53947022006-09-30 23:27:08 -070063#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasunori Goto04753272008-04-28 02:13:31 -070064#ifndef CONFIG_SPARSEMEM_VMEMMAP
65static void get_page_bootmem(unsigned long info, struct page *page, int magic)
66{
67 atomic_set(&page->_mapcount, magic);
68 SetPagePrivate(page);
69 set_page_private(page, info);
70 atomic_inc(&page->_count);
71}
72
73void put_page_bootmem(struct page *page)
74{
75 int magic;
76
77 magic = atomic_read(&page->_mapcount);
78 BUG_ON(magic >= -1);
79
80 if (atomic_dec_return(&page->_count) == 1) {
81 ClearPagePrivate(page);
82 set_page_private(page, 0);
83 reset_page_mapcount(page);
84 __free_pages_bootmem(page, 0);
85 }
86
87}
88
89void register_page_bootmem_info_section(unsigned long start_pfn)
90{
91 unsigned long *usemap, mapsize, section_nr, i;
92 struct mem_section *ms;
93 struct page *page, *memmap;
94
95 if (!pfn_valid(start_pfn))
96 return;
97
98 section_nr = pfn_to_section_nr(start_pfn);
99 ms = __nr_to_section(section_nr);
100
101 /* Get section's memmap address */
102 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
103
104 /*
105 * Get page for the memmap's phys address
106 * XXX: need more consideration for sparse_vmemmap...
107 */
108 page = virt_to_page(memmap);
109 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
110 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
111
112 /* remember memmap's page */
113 for (i = 0; i < mapsize; i++, page++)
114 get_page_bootmem(section_nr, page, SECTION_INFO);
115
116 usemap = __nr_to_section(section_nr)->pageblock_flags;
117 page = virt_to_page(usemap);
118
119 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
120
121 for (i = 0; i < mapsize; i++, page++)
122 get_page_bootmem(section_nr, page, MIX_INFO);
123
124}
125
126void register_page_bootmem_info_node(struct pglist_data *pgdat)
127{
128 unsigned long i, pfn, end_pfn, nr_pages;
129 int node = pgdat->node_id;
130 struct page *page;
131 struct zone *zone;
132
133 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
134 page = virt_to_page(pgdat);
135
136 for (i = 0; i < nr_pages; i++, page++)
137 get_page_bootmem(node, page, NODE_INFO);
138
139 zone = &pgdat->node_zones[0];
140 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
141 if (zone->wait_table) {
142 nr_pages = zone->wait_table_hash_nr_entries
143 * sizeof(wait_queue_head_t);
144 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
145 page = virt_to_page(zone->wait_table);
146
147 for (i = 0; i < nr_pages; i++, page++)
148 get_page_bootmem(node, page, NODE_INFO);
149 }
150 }
151
152 pfn = pgdat->node_start_pfn;
153 end_pfn = pfn + pgdat->node_spanned_pages;
154
155 /* register_section info */
156 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION)
157 register_page_bootmem_info_section(pfn);
158
159}
160#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
161
Yasunori Goto718127c2006-06-23 02:03:10 -0700162static int __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700163{
164 struct pglist_data *pgdat = zone->zone_pgdat;
165 int nr_pages = PAGES_PER_SECTION;
166 int nid = pgdat->node_id;
167 int zone_type;
168
169 zone_type = zone - pgdat->node_zones;
Heiko Carstensc3723ca2008-05-14 16:05:40 -0700170 if (!zone->wait_table)
171 return init_currently_empty_zone(zone, phys_start_pfn,
172 nr_pages, MEMMAP_HOTPLUG);
Dave Hansena2f3aa02007-01-10 23:15:30 -0800173 memmap_init_zone(nr_pages, nid, zone_type,
174 phys_start_pfn, MEMMAP_HOTPLUG);
Yasunori Goto718127c2006-06-23 02:03:10 -0700175 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700176}
177
Dave Hansen3947be12005-10-29 18:16:54 -0700178static int __add_section(struct zone *zone, unsigned long phys_start_pfn)
179{
Dave Hansen3947be12005-10-29 18:16:54 -0700180 int nr_pages = PAGES_PER_SECTION;
Dave Hansen3947be12005-10-29 18:16:54 -0700181 int ret;
182
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700183 if (pfn_valid(phys_start_pfn))
184 return -EEXIST;
185
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700186 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700187
188 if (ret < 0)
189 return ret;
190
Yasunori Goto718127c2006-06-23 02:03:10 -0700191 ret = __add_zone(zone, phys_start_pfn);
192
193 if (ret < 0)
194 return ret;
195
Dave Hansen3947be12005-10-29 18:16:54 -0700196 return register_new_memory(__pfn_to_section(phys_start_pfn));
197}
198
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700199#ifdef CONFIG_SPARSEMEM_VMEMMAP
200static int __remove_section(struct zone *zone, struct mem_section *ms)
201{
202 /*
203 * XXX: Freeing memmap with vmemmap is not implement yet.
204 * This should be removed later.
205 */
206 return -EBUSY;
207}
208#else
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700209static int __remove_section(struct zone *zone, struct mem_section *ms)
210{
211 unsigned long flags;
212 struct pglist_data *pgdat = zone->zone_pgdat;
213 int ret = -EINVAL;
214
215 if (!valid_section(ms))
216 return ret;
217
218 ret = unregister_memory_section(ms);
219 if (ret)
220 return ret;
221
222 pgdat_resize_lock(pgdat, &flags);
223 sparse_remove_one_section(zone, ms);
224 pgdat_resize_unlock(pgdat, &flags);
225 return 0;
226}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700227#endif
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700228
Dave Hansen3947be12005-10-29 18:16:54 -0700229/*
230 * Reasonably generic function for adding memory. It is
231 * expected that archs that support memory hotplug will
232 * call this function after deciding the zone to which to
233 * add the new pages.
234 */
235int __add_pages(struct zone *zone, unsigned long phys_start_pfn,
236 unsigned long nr_pages)
237{
238 unsigned long i;
239 int err = 0;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700240 int start_sec, end_sec;
241 /* during initialize mem_map, align hot-added range to section */
242 start_sec = pfn_to_section_nr(phys_start_pfn);
243 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
Dave Hansen3947be12005-10-29 18:16:54 -0700244
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700245 for (i = start_sec; i <= end_sec; i++) {
246 err = __add_section(zone, i << PFN_SECTION_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700247
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700248 /*
Simon Arlott183ff222007-10-20 01:27:18 +0200249 * EEXIST is finally dealt with by ioresource collision
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700250 * check. see add_memory() => register_memory_resource()
251 * Warning will be printed if there is collision.
Joel H Schoppbed120c2006-05-01 12:16:11 -0700252 */
253 if (err && (err != -EEXIST))
Dave Hansen3947be12005-10-29 18:16:54 -0700254 break;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700255 err = 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700256 }
257
258 return err;
259}
Joel H Schoppbed120c2006-05-01 12:16:11 -0700260EXPORT_SYMBOL_GPL(__add_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700261
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700262/**
263 * __remove_pages() - remove sections of pages from a zone
264 * @zone: zone from which pages need to be removed
265 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
266 * @nr_pages: number of pages to remove (must be multiple of section size)
267 *
268 * Generic helper function to remove section mappings and sysfs entries
269 * for the section of the memory we are removing. Caller needs to make
270 * sure that pages are marked reserved and zones are adjust properly by
271 * calling offline_pages().
272 */
273int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
274 unsigned long nr_pages)
275{
276 unsigned long i, ret = 0;
277 int sections_to_remove;
278
279 /*
280 * We can only remove entire sections
281 */
282 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
283 BUG_ON(nr_pages % PAGES_PER_SECTION);
284
285 release_mem_region(phys_start_pfn << PAGE_SHIFT, nr_pages * PAGE_SIZE);
286
287 sections_to_remove = nr_pages / PAGES_PER_SECTION;
288 for (i = 0; i < sections_to_remove; i++) {
289 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
290 ret = __remove_section(zone, __pfn_to_section(pfn));
291 if (ret)
292 break;
293 }
294 return ret;
295}
296EXPORT_SYMBOL_GPL(__remove_pages);
297
Dave Hansen3947be12005-10-29 18:16:54 -0700298static void grow_zone_span(struct zone *zone,
299 unsigned long start_pfn, unsigned long end_pfn)
300{
301 unsigned long old_zone_end_pfn;
302
303 zone_span_writelock(zone);
304
305 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
306 if (start_pfn < zone->zone_start_pfn)
307 zone->zone_start_pfn = start_pfn;
308
Yasunori Goto25a6df92006-05-30 21:25:42 -0700309 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
310 zone->zone_start_pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700311
312 zone_span_writeunlock(zone);
313}
314
315static void grow_pgdat_span(struct pglist_data *pgdat,
316 unsigned long start_pfn, unsigned long end_pfn)
317{
318 unsigned long old_pgdat_end_pfn =
319 pgdat->node_start_pfn + pgdat->node_spanned_pages;
320
321 if (start_pfn < pgdat->node_start_pfn)
322 pgdat->node_start_pfn = start_pfn;
323
Yasunori Goto25a6df92006-05-30 21:25:42 -0700324 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
325 pgdat->node_start_pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700326}
327
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700328void online_page(struct page *page)
329{
330 totalram_pages++;
331 num_physpages++;
332
333#ifdef CONFIG_HIGHMEM
334 if (PageHighMem(page))
335 totalhigh_pages++;
336#endif
337
338#ifdef CONFIG_FLATMEM
339 max_mapnr = max(page_to_pfn(page), max_mapnr);
340#endif
341
342 ClearPageReserved(page);
343 init_page_count(page);
344 __free_page(page);
345}
346
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700347static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
348 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700349{
350 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700351 unsigned long onlined_pages = *(unsigned long *)arg;
352 struct page *page;
353 if (PageReserved(pfn_to_page(start_pfn)))
354 for (i = 0; i < nr_pages; i++) {
355 page = pfn_to_page(start_pfn + i);
356 online_page(page);
357 onlined_pages++;
358 }
359 *(unsigned long *)arg = onlined_pages;
360 return 0;
361}
362
363
364int online_pages(unsigned long pfn, unsigned long nr_pages)
365{
Dave Hansen3947be12005-10-29 18:16:54 -0700366 unsigned long flags;
367 unsigned long onlined_pages = 0;
368 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700369 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700370 int nid;
371 int ret;
372 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700373
Yasunori Goto7b78d332007-10-21 16:41:36 -0700374 arg.start_pfn = pfn;
375 arg.nr_pages = nr_pages;
376 arg.status_change_nid = -1;
377
378 nid = page_to_nid(pfn_to_page(pfn));
379 if (node_present_pages(nid) == 0)
380 arg.status_change_nid = nid;
381
382 ret = memory_notify(MEM_GOING_ONLINE, &arg);
383 ret = notifier_to_errno(ret);
384 if (ret) {
385 memory_notify(MEM_CANCEL_ONLINE, &arg);
386 return ret;
387 }
Dave Hansen3947be12005-10-29 18:16:54 -0700388 /*
389 * This doesn't need a lock to do pfn_to_page().
390 * The section can't be removed here because of the
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800391 * memory_block->state_mutex.
Dave Hansen3947be12005-10-29 18:16:54 -0700392 */
393 zone = page_zone(pfn_to_page(pfn));
394 pgdat_resize_lock(zone->zone_pgdat, &flags);
395 grow_zone_span(zone, pfn, pfn + nr_pages);
396 grow_pgdat_span(zone->zone_pgdat, pfn, pfn + nr_pages);
397 pgdat_resize_unlock(zone->zone_pgdat, &flags);
398
Yasunori Goto68113782006-06-23 02:03:11 -0700399 /*
400 * If this zone is not populated, then it is not in zonelist.
401 * This means the page allocator ignores this zone.
402 * So, zonelist must be updated after online.
403 */
404 if (!populated_zone(zone))
405 need_zonelists_rebuild = 1;
406
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700407 walk_memory_resource(pfn, nr_pages, &onlined_pages,
408 online_pages_range);
Dave Hansen3947be12005-10-29 18:16:54 -0700409 zone->present_pages += onlined_pages;
Yasunori Gotof2937be2006-03-09 17:33:51 -0800410 zone->zone_pgdat->node_present_pages += onlined_pages;
Dave Hansen3947be12005-10-29 18:16:54 -0700411
Dave Hansen61b13992005-10-29 18:16:56 -0700412 setup_per_zone_pages_min();
Christoph Lameter7ea15302007-10-16 01:25:29 -0700413 if (onlined_pages) {
414 kswapd_run(zone_to_nid(zone));
415 node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
416 }
Dave Hansen61b13992005-10-29 18:16:56 -0700417
Yasunori Goto68113782006-06-23 02:03:11 -0700418 if (need_zonelists_rebuild)
419 build_all_zonelists();
KAMEZAWA Hiroyuki5a4d4362006-06-23 02:03:47 -0700420 vm_total_pages = nr_free_pagecache_pages();
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700421 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700422
423 if (onlined_pages)
424 memory_notify(MEM_ONLINE, &arg);
425
Dave Hansen3947be12005-10-29 18:16:54 -0700426 return 0;
427}
Keith Mannthey53947022006-09-30 23:27:08 -0700428#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700429
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700430static pg_data_t *hotadd_new_pgdat(int nid, u64 start)
431{
432 struct pglist_data *pgdat;
433 unsigned long zones_size[MAX_NR_ZONES] = {0};
434 unsigned long zholes_size[MAX_NR_ZONES] = {0};
435 unsigned long start_pfn = start >> PAGE_SHIFT;
436
437 pgdat = arch_alloc_nodedata(nid);
438 if (!pgdat)
439 return NULL;
440
441 arch_refresh_nodedata(nid, pgdat);
442
443 /* we can use NODE_DATA(nid) from here */
444
445 /* init node's zones as empty zones, we don't have any present pages.*/
446 free_area_init_node(nid, pgdat, zones_size, start_pfn, zholes_size);
447
448 return pgdat;
449}
450
451static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
452{
453 arch_refresh_nodedata(nid, NULL);
454 arch_free_nodedata(pgdat);
455 return;
456}
457
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700458
Yasunori Gotobc02af92006-06-27 02:53:30 -0700459int add_memory(int nid, u64 start, u64 size)
460{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700461 pg_data_t *pgdat = NULL;
462 int new_pgdat = 0;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700463 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700464 int ret;
465
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700466 res = register_memory_resource(start, size);
467 if (!res)
468 return -EEXIST;
469
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700470 if (!node_online(nid)) {
471 pgdat = hotadd_new_pgdat(nid, start);
472 if (!pgdat)
473 return -ENOMEM;
474 new_pgdat = 1;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700475 }
476
Yasunori Gotobc02af92006-06-27 02:53:30 -0700477 /* call arch's memory hotadd */
478 ret = arch_add_memory(nid, start, size);
479
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700480 if (ret < 0)
481 goto error;
482
Yasunori Goto0fc44152006-06-27 02:53:38 -0700483 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700484 node_set_online(nid);
485
Paul Jackson38837fc2006-09-29 02:01:16 -0700486 cpuset_track_online_nodes();
487
Yasunori Goto0fc44152006-06-27 02:53:38 -0700488 if (new_pgdat) {
489 ret = register_one_node(nid);
490 /*
491 * If sysfs file of new node can't create, cpu on the node
492 * can't be hot-added. There is no rollback way now.
493 * So, check by BUG_ON() to catch it reluctantly..
494 */
495 BUG_ON(ret);
496 }
497
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700498 return ret;
499error:
500 /* rollback pgdat allocation and others */
501 if (new_pgdat)
502 rollback_node_hotadd(nid, pgdat);
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700503 if (res)
504 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700505
Yasunori Gotobc02af92006-06-27 02:53:30 -0700506 return ret;
507}
508EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700509
510#ifdef CONFIG_MEMORY_HOTREMOVE
511/*
512 * Confirm all pages in a range [start, end) is belongs to the same zone.
513 */
514static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
515{
516 unsigned long pfn;
517 struct zone *zone = NULL;
518 struct page *page;
519 int i;
520 for (pfn = start_pfn;
521 pfn < end_pfn;
522 pfn += MAX_ORDER_NR_PAGES) {
523 i = 0;
524 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
525 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
526 i++;
527 if (i == MAX_ORDER_NR_PAGES)
528 continue;
529 page = pfn_to_page(pfn + i);
530 if (zone && page_zone(page) != zone)
531 return 0;
532 zone = page_zone(page);
533 }
534 return 1;
535}
536
537/*
538 * Scanning pfn is much easier than scanning lru list.
539 * Scan pfn from start to end and Find LRU page.
540 */
541int scan_lru_pages(unsigned long start, unsigned long end)
542{
543 unsigned long pfn;
544 struct page *page;
545 for (pfn = start; pfn < end; pfn++) {
546 if (pfn_valid(pfn)) {
547 page = pfn_to_page(pfn);
548 if (PageLRU(page))
549 return pfn;
550 }
551 }
552 return 0;
553}
554
555static struct page *
556hotremove_migrate_alloc(struct page *page,
557 unsigned long private,
558 int **x)
559{
560 /* This should be improoooooved!! */
561 return alloc_page(GFP_HIGHUSER_PAGECACHE);
562}
563
564
565#define NR_OFFLINE_AT_ONCE_PAGES (256)
566static int
567do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
568{
569 unsigned long pfn;
570 struct page *page;
571 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
572 int not_managed = 0;
573 int ret = 0;
574 LIST_HEAD(source);
575
576 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
577 if (!pfn_valid(pfn))
578 continue;
579 page = pfn_to_page(pfn);
580 if (!page_count(page))
581 continue;
582 /*
583 * We can skip free pages. And we can only deal with pages on
584 * LRU.
585 */
586 ret = isolate_lru_page(page, &source);
587 if (!ret) { /* Success */
588 move_pages--;
589 } else {
590 /* Becasue we don't have big zone->lock. we should
591 check this again here. */
592 if (page_count(page))
593 not_managed++;
594#ifdef CONFIG_DEBUG_VM
595 printk(KERN_INFO "removing from LRU failed"
596 " %lx/%d/%lx\n",
597 pfn, page_count(page), page->flags);
598#endif
599 }
600 }
601 ret = -EBUSY;
602 if (not_managed) {
603 if (!list_empty(&source))
604 putback_lru_pages(&source);
605 goto out;
606 }
607 ret = 0;
608 if (list_empty(&source))
609 goto out;
610 /* this function returns # of failed pages */
611 ret = migrate_pages(&source, hotremove_migrate_alloc, 0);
612
613out:
614 return ret;
615}
616
617/*
618 * remove from free_area[] and mark all as Reserved.
619 */
620static int
621offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
622 void *data)
623{
624 __offline_isolated_pages(start, start + nr_pages);
625 return 0;
626}
627
628static void
629offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
630{
631 walk_memory_resource(start_pfn, end_pfn - start_pfn, NULL,
632 offline_isolated_pages_cb);
633}
634
635/*
636 * Check all pages in range, recoreded as memory resource, are isolated.
637 */
638static int
639check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
640 void *data)
641{
642 int ret;
643 long offlined = *(long *)data;
644 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages);
645 offlined = nr_pages;
646 if (!ret)
647 *(long *)data += offlined;
648 return ret;
649}
650
651static long
652check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
653{
654 long offlined = 0;
655 int ret;
656
657 ret = walk_memory_resource(start_pfn, end_pfn - start_pfn, &offlined,
658 check_pages_isolated_cb);
659 if (ret < 0)
660 offlined = (long)ret;
661 return offlined;
662}
663
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700664int offline_pages(unsigned long start_pfn,
665 unsigned long end_pfn, unsigned long timeout)
666{
667 unsigned long pfn, nr_pages, expire;
668 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700669 int ret, drain, retry_max, node;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700670 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700671 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700672
673 BUG_ON(start_pfn >= end_pfn);
674 /* at least, alignment against pageblock is necessary */
675 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
676 return -EINVAL;
677 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
678 return -EINVAL;
679 /* This makes hotplug much easier...and readable.
680 we assume this for now. .*/
681 if (!test_pages_in_a_zone(start_pfn, end_pfn))
682 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700683
684 zone = page_zone(pfn_to_page(start_pfn));
685 node = zone_to_nid(zone);
686 nr_pages = end_pfn - start_pfn;
687
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700688 /* set above range as isolated */
689 ret = start_isolate_page_range(start_pfn, end_pfn);
690 if (ret)
691 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700692
693 arg.start_pfn = start_pfn;
694 arg.nr_pages = nr_pages;
695 arg.status_change_nid = -1;
696 if (nr_pages >= node_present_pages(node))
697 arg.status_change_nid = node;
698
699 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
700 ret = notifier_to_errno(ret);
701 if (ret)
702 goto failed_removal;
703
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700704 pfn = start_pfn;
705 expire = jiffies + timeout;
706 drain = 0;
707 retry_max = 5;
708repeat:
709 /* start memory hot removal */
710 ret = -EAGAIN;
711 if (time_after(jiffies, expire))
712 goto failed_removal;
713 ret = -EINTR;
714 if (signal_pending(current))
715 goto failed_removal;
716 ret = 0;
717 if (drain) {
718 lru_add_drain_all();
719 flush_scheduled_work();
720 cond_resched();
Christoph Lameter9f8f2172008-02-04 22:29:11 -0800721 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700722 }
723
724 pfn = scan_lru_pages(start_pfn, end_pfn);
725 if (pfn) { /* We have page on LRU */
726 ret = do_migrate_range(pfn, end_pfn);
727 if (!ret) {
728 drain = 1;
729 goto repeat;
730 } else {
731 if (ret < 0)
732 if (--retry_max == 0)
733 goto failed_removal;
734 yield();
735 drain = 1;
736 goto repeat;
737 }
738 }
739 /* drain all zone's lru pagevec, this is asyncronous... */
740 lru_add_drain_all();
741 flush_scheduled_work();
742 yield();
743 /* drain pcp pages , this is synchrouns. */
Christoph Lameter9f8f2172008-02-04 22:29:11 -0800744 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700745 /* check again */
746 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
747 if (offlined_pages < 0) {
748 ret = -EBUSY;
749 goto failed_removal;
750 }
751 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
752 /* Ok, all of our target is islaoted.
753 We cannot do rollback at this point. */
754 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800755 /* reset pagetype flags and makes migrate type to be MOVABLE */
756 undo_isolate_page_range(start_pfn, end_pfn);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700757 /* removal success */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700758 zone->present_pages -= offlined_pages;
759 zone->zone_pgdat->node_present_pages -= offlined_pages;
760 totalram_pages -= offlined_pages;
761 num_physpages -= offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700762
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700763 vm_total_pages = nr_free_pagecache_pages();
764 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700765
766 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700767 return 0;
768
769failed_removal:
770 printk(KERN_INFO "memory offlining %lx to %lx failed\n",
771 start_pfn, end_pfn);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700772 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700773 /* pushback to free area */
774 undo_isolate_page_range(start_pfn, end_pfn);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700775
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700776 return ret;
777}
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -0700778#else
779int remove_memory(u64 start, u64 size)
780{
781 return -EINVAL;
782}
783EXPORT_SYMBOL_GPL(remove_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700784#endif /* CONFIG_MEMORY_HOTREMOVE */