blob: 78291526eb4d6818bcf93b76d2b85ee3e66666f4 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Dave Hansen3947be12005-10-29 18:16:54 -07002/*
3 * linux/mm/memory_hotplug.c
4 *
5 * Copyright (C)
6 */
7
Dave Hansen3947be12005-10-29 18:16:54 -07008#include <linux/stddef.h>
9#include <linux/mm.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010010#include <linux/sched/signal.h>
Dave Hansen3947be12005-10-29 18:16:54 -070011#include <linux/swap.h>
12#include <linux/interrupt.h>
13#include <linux/pagemap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070014#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040015#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070017#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070018#include <linux/slab.h>
19#include <linux/sysctl.h>
20#include <linux/cpu.h>
21#include <linux/memory.h>
Dan Williams4b94ffd2016-01-15 16:56:22 -080022#include <linux/memremap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070023#include <linux/memory_hotplug.h>
24#include <linux/highmem.h>
25#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070026#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070027#include <linux/delay.h>
28#include <linux/migrate.h>
29#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070030#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080031#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080032#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080033#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080034#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070035#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080036#include <linux/memblock.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070037#include <linux/compaction.h>
Michal Hockob15c8722018-12-28 00:38:01 -080038#include <linux/rmap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070039
40#include <asm/tlbflush.h>
41
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030042#include "internal.h"
Dan Williamse900a912019-05-14 15:41:28 -070043#include "shuffle.h"
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030044
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070045/*
46 * online_page_callback contains pointer to current page onlining function.
47 * Initially it is generic_online_page(). If it is required it could be
48 * changed by calling set_online_page_callback() for callback registration
49 * and restore_online_page_callback() for generic callback restore.
50 */
51
Arun KSa9cd4102019-03-05 15:42:14 -080052static void generic_online_page(struct page *page, unsigned int order);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070053
54static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070055static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070056
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070057DEFINE_STATIC_PERCPU_RWSEM(mem_hotplug_lock);
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080058
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070059void get_online_mems(void)
60{
61 percpu_down_read(&mem_hotplug_lock);
62}
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070063
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070064void put_online_mems(void)
65{
66 percpu_up_read(&mem_hotplug_lock);
67}
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070068
Michal Hocko49323812017-07-06 15:41:05 -070069bool movable_node_enabled = false;
70
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070071#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070072bool memhp_auto_online;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070073#else
74bool memhp_auto_online = true;
75#endif
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070076EXPORT_SYMBOL_GPL(memhp_auto_online);
77
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070078static int __init setup_memhp_default_state(char *str)
79{
80 if (!strcmp(str, "online"))
81 memhp_auto_online = true;
82 else if (!strcmp(str, "offline"))
83 memhp_auto_online = false;
84
85 return 1;
86}
87__setup("memhp_default_state=", setup_memhp_default_state);
88
David Rientjes30467e02015-04-14 15:45:11 -070089void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070090{
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070091 cpus_read_lock();
92 percpu_down_write(&mem_hotplug_lock);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070093}
94
David Rientjes30467e02015-04-14 15:45:11 -070095void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070096{
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070097 percpu_up_write(&mem_hotplug_lock);
98 cpus_read_unlock();
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070099}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800100
Juergen Gross357b4da2019-02-14 11:42:39 +0100101u64 max_mem_size = U64_MAX;
102
Keith Mannthey45e0b782006-09-30 23:27:09 -0700103/* add this memory to iomem resource */
104static struct resource *register_memory_resource(u64 start, u64 size)
105{
Dave Hansen27941292019-02-25 10:57:36 -0800106 struct resource *res;
107 unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
108 char *resource_name = "System RAM";
Juergen Gross357b4da2019-02-14 11:42:39 +0100109
110 if (start + size > max_mem_size)
111 return ERR_PTR(-E2BIG);
112
Dave Hansen27941292019-02-25 10:57:36 -0800113 /*
114 * Request ownership of the new memory range. This might be
115 * a child of an existing resource that was present but
116 * not marked as busy.
117 */
118 res = __request_region(&iomem_resource, start, size,
119 resource_name, flags);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700120
Dave Hansen27941292019-02-25 10:57:36 -0800121 if (!res) {
122 pr_debug("Unable to reserve System RAM region: %016llx->%016llx\n",
123 start, start + size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800124 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700125 }
126 return res;
127}
128
129static void release_memory_resource(struct resource *res)
130{
131 if (!res)
132 return;
133 release_resource(res);
134 kfree(res);
135 return;
136}
137
Keith Mannthey53947022006-09-30 23:27:08 -0700138#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800139void get_page_bootmem(unsigned long info, struct page *page,
140 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700141{
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800142 page->freelist = (void *)type;
Yasunori Goto04753272008-04-28 02:13:31 -0700143 SetPagePrivate(page);
144 set_page_private(page, info);
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700145 page_ref_inc(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700146}
147
Jiang Liu170a5a72013-07-03 15:03:17 -0700148void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700149{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800150 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700151
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800152 type = (unsigned long) page->freelist;
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800153 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
154 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700155
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700156 if (page_ref_dec_return(page) == 1) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800157 page->freelist = NULL;
Yasunori Goto04753272008-04-28 02:13:31 -0700158 ClearPagePrivate(page);
159 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800160 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700161 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700162 }
Yasunori Goto04753272008-04-28 02:13:31 -0700163}
164
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800165#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
166#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700167static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700168{
169 unsigned long *usemap, mapsize, section_nr, i;
170 struct mem_section *ms;
171 struct page *page, *memmap;
172
Yasunori Goto04753272008-04-28 02:13:31 -0700173 section_nr = pfn_to_section_nr(start_pfn);
174 ms = __nr_to_section(section_nr);
175
176 /* Get section's memmap address */
177 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
178
179 /*
180 * Get page for the memmap's phys address
181 * XXX: need more consideration for sparse_vmemmap...
182 */
183 page = virt_to_page(memmap);
184 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
185 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
186
187 /* remember memmap's page */
188 for (i = 0; i < mapsize; i++, page++)
189 get_page_bootmem(section_nr, page, SECTION_INFO);
190
Oscar Salvador9ac93222018-01-31 16:17:25 -0800191 usemap = ms->pageblock_flags;
Yasunori Goto04753272008-04-28 02:13:31 -0700192 page = virt_to_page(usemap);
193
194 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
195
196 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700197 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700198
199}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800200#else /* CONFIG_SPARSEMEM_VMEMMAP */
201static void register_page_bootmem_info_section(unsigned long start_pfn)
202{
203 unsigned long *usemap, mapsize, section_nr, i;
204 struct mem_section *ms;
205 struct page *page, *memmap;
206
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800207 section_nr = pfn_to_section_nr(start_pfn);
208 ms = __nr_to_section(section_nr);
209
210 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
211
212 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
213
Oscar Salvador9ac93222018-01-31 16:17:25 -0800214 usemap = ms->pageblock_flags;
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800215 page = virt_to_page(usemap);
216
217 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
218
219 for (i = 0; i < mapsize; i++, page++)
220 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
221}
222#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700223
Linus Torvalds7ded3842016-05-27 15:23:32 -0700224void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
Yasunori Goto04753272008-04-28 02:13:31 -0700225{
226 unsigned long i, pfn, end_pfn, nr_pages;
227 int node = pgdat->node_id;
228 struct page *page;
Yasunori Goto04753272008-04-28 02:13:31 -0700229
230 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
231 page = virt_to_page(pgdat);
232
233 for (i = 0; i < nr_pages; i++, page++)
234 get_page_bootmem(node, page, NODE_INFO);
235
Yasunori Goto04753272008-04-28 02:13:31 -0700236 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800237 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700238
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700239 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700240 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
241 /*
242 * Some platforms can assign the same pfn to multiple nodes - on
243 * node0 as well as nodeN. To avoid registering a pfn against
244 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700245 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700246 */
Yang Shif65e91df2016-05-27 14:27:32 -0700247 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
qiuxishif14851a2012-09-17 14:09:24 -0700248 register_page_bootmem_info_section(pfn);
249 }
Yasunori Goto04753272008-04-28 02:13:31 -0700250}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800251#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700252
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700253static int __meminit __add_section(int nid, unsigned long phys_start_pfn,
Christoph Hellwig7b73d972017-12-29 08:53:54 +0100254 struct vmem_altmap *altmap, bool want_memblock)
Dave Hansen3947be12005-10-29 18:16:54 -0700255{
Dave Hansen3947be12005-10-29 18:16:54 -0700256 int ret;
257
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700258 if (pfn_valid(phys_start_pfn))
259 return -EEXIST;
260
Wei Yang4e0d2e72018-12-28 00:37:06 -0800261 ret = sparse_add_one_section(nid, phys_start_pfn, altmap);
David Hildenbranddb051a02019-07-18 15:56:56 -0700262 return ret < 0 ? ret : 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700263}
264
David Rientjes4edd7ce2013-04-29 15:08:22 -0700265/*
266 * Reasonably generic function for adding memory. It is
267 * expected that archs that support memory hotplug will
268 * call this function after deciding the zone to which to
269 * add the new pages.
270 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700271int __ref __add_pages(int nid, unsigned long phys_start_pfn,
Michal Hocko940519f2019-05-13 17:21:26 -0700272 unsigned long nr_pages, struct mhp_restrictions *restrictions)
David Rientjes4edd7ce2013-04-29 15:08:22 -0700273{
274 unsigned long i;
275 int err = 0;
276 int start_sec, end_sec;
Michal Hocko940519f2019-05-13 17:21:26 -0700277 struct vmem_altmap *altmap = restrictions->altmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800278
David Rientjes4edd7ce2013-04-29 15:08:22 -0700279 /* during initialize mem_map, align hot-added range to section */
280 start_sec = pfn_to_section_nr(phys_start_pfn);
281 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
282
Dan Williams4b94ffd2016-01-15 16:56:22 -0800283 if (altmap) {
284 /*
285 * Validate altmap is within bounds of the total request
286 */
287 if (altmap->base_pfn != phys_start_pfn
288 || vmem_altmap_offset(altmap) > nr_pages) {
289 pr_warn_once("memory add fail, invalid altmap\n");
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700290 err = -EINVAL;
291 goto out;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800292 }
293 altmap->alloc = 0;
294 }
295
David Rientjes4edd7ce2013-04-29 15:08:22 -0700296 for (i = start_sec; i <= end_sec; i++) {
Christoph Hellwig7b73d972017-12-29 08:53:54 +0100297 err = __add_section(nid, section_nr_to_pfn(i), altmap,
Michal Hocko940519f2019-05-13 17:21:26 -0700298 restrictions->flags & MHP_MEMBLOCK_API);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700299
300 /*
301 * EEXIST is finally dealt with by ioresource collision
302 * check. see add_memory() => register_memory_resource()
303 * Warning will be printed if there is collision.
304 */
305 if (err && (err != -EEXIST))
306 break;
307 err = 0;
Michal Hockof64ac5e2017-10-03 16:16:16 -0700308 cond_resched();
David Rientjes4edd7ce2013-04-29 15:08:22 -0700309 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700310 vmemmap_populate_print_last();
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700311out:
David Rientjes4edd7ce2013-04-29 15:08:22 -0700312 return err;
313}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700314
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800315/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
YASUAKI ISHIMATSUd09b0132017-10-03 16:16:32 -0700316static unsigned long find_smallest_section_pfn(int nid, struct zone *zone,
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800317 unsigned long start_pfn,
318 unsigned long end_pfn)
319{
320 struct mem_section *ms;
321
322 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
323 ms = __pfn_to_section(start_pfn);
324
325 if (unlikely(!valid_section(ms)))
326 continue;
327
328 if (unlikely(pfn_to_nid(start_pfn) != nid))
329 continue;
330
331 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
332 continue;
333
334 return start_pfn;
335 }
336
337 return 0;
338}
339
340/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
YASUAKI ISHIMATSUd09b0132017-10-03 16:16:32 -0700341static unsigned long find_biggest_section_pfn(int nid, struct zone *zone,
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800342 unsigned long start_pfn,
343 unsigned long end_pfn)
344{
345 struct mem_section *ms;
346 unsigned long pfn;
347
348 /* pfn is the end pfn of a memory section. */
349 pfn = end_pfn - 1;
350 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
351 ms = __pfn_to_section(pfn);
352
353 if (unlikely(!valid_section(ms)))
354 continue;
355
356 if (unlikely(pfn_to_nid(pfn) != nid))
357 continue;
358
359 if (zone && zone != page_zone(pfn_to_page(pfn)))
360 continue;
361
362 return pfn;
363 }
364
365 return 0;
366}
367
368static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
369 unsigned long end_pfn)
370{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700371 unsigned long zone_start_pfn = zone->zone_start_pfn;
372 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
373 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800374 unsigned long pfn;
375 struct mem_section *ms;
376 int nid = zone_to_nid(zone);
377
378 zone_span_writelock(zone);
379 if (zone_start_pfn == start_pfn) {
380 /*
381 * If the section is smallest section in the zone, it need
382 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
383 * In this case, we find second smallest valid mem_section
384 * for shrinking zone.
385 */
386 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
387 zone_end_pfn);
388 if (pfn) {
389 zone->zone_start_pfn = pfn;
390 zone->spanned_pages = zone_end_pfn - pfn;
391 }
392 } else if (zone_end_pfn == end_pfn) {
393 /*
394 * If the section is biggest section in the zone, it need
395 * shrink zone->spanned_pages.
396 * In this case, we find second biggest valid mem_section for
397 * shrinking zone.
398 */
399 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
400 start_pfn);
401 if (pfn)
402 zone->spanned_pages = pfn - zone_start_pfn + 1;
403 }
404
405 /*
406 * The section is not biggest or smallest mem_section in the zone, it
407 * only creates a hole in the zone. So in this case, we need not
408 * change the zone. But perhaps, the zone has only hole data. Thus
409 * it check the zone has only hole or not.
410 */
411 pfn = zone_start_pfn;
412 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
413 ms = __pfn_to_section(pfn);
414
415 if (unlikely(!valid_section(ms)))
416 continue;
417
418 if (page_zone(pfn_to_page(pfn)) != zone)
419 continue;
420
421 /* If the section is current section, it continues the loop */
422 if (start_pfn == pfn)
423 continue;
424
425 /* If we find valid section, we have nothing to do */
426 zone_span_writeunlock(zone);
427 return;
428 }
429
430 /* The zone has no valid section */
431 zone->zone_start_pfn = 0;
432 zone->spanned_pages = 0;
433 zone_span_writeunlock(zone);
434}
435
436static void shrink_pgdat_span(struct pglist_data *pgdat,
437 unsigned long start_pfn, unsigned long end_pfn)
438{
Xishi Qiu83285c72013-11-12 15:07:19 -0800439 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
440 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
441 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800442 unsigned long pfn;
443 struct mem_section *ms;
444 int nid = pgdat->node_id;
445
446 if (pgdat_start_pfn == start_pfn) {
447 /*
448 * If the section is smallest section in the pgdat, it need
449 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
450 * In this case, we find second smallest valid mem_section
451 * for shrinking zone.
452 */
453 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
454 pgdat_end_pfn);
455 if (pfn) {
456 pgdat->node_start_pfn = pfn;
457 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
458 }
459 } else if (pgdat_end_pfn == end_pfn) {
460 /*
461 * If the section is biggest section in the pgdat, it need
462 * shrink pgdat->node_spanned_pages.
463 * In this case, we find second biggest valid mem_section for
464 * shrinking zone.
465 */
466 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
467 start_pfn);
468 if (pfn)
469 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
470 }
471
472 /*
473 * If the section is not biggest or smallest mem_section in the pgdat,
474 * it only creates a hole in the pgdat. So in this case, we need not
475 * change the pgdat.
476 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
477 * has only hole or not.
478 */
479 pfn = pgdat_start_pfn;
480 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
481 ms = __pfn_to_section(pfn);
482
483 if (unlikely(!valid_section(ms)))
484 continue;
485
486 if (pfn_to_nid(pfn) != nid)
487 continue;
488
489 /* If the section is current section, it continues the loop */
490 if (start_pfn == pfn)
491 continue;
492
493 /* If we find valid section, we have nothing to do */
494 return;
495 }
496
497 /* The pgdat has no valid section */
498 pgdat->node_start_pfn = 0;
499 pgdat->node_spanned_pages = 0;
500}
501
502static void __remove_zone(struct zone *zone, unsigned long start_pfn)
503{
504 struct pglist_data *pgdat = zone->zone_pgdat;
505 int nr_pages = PAGES_PER_SECTION;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800506 unsigned long flags;
507
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800508 pgdat_resize_lock(zone->zone_pgdat, &flags);
509 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
510 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
511 pgdat_resize_unlock(zone->zone_pgdat, &flags);
512}
513
David Hildenbrand9d1d8872019-05-13 17:21:41 -0700514static void __remove_section(struct zone *zone, struct mem_section *ms,
515 unsigned long map_offset,
516 struct vmem_altmap *altmap)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700517{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800518 unsigned long start_pfn;
519 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700520
David Hildenbrand9d1d8872019-05-13 17:21:41 -0700521 if (WARN_ON_ONCE(!valid_section(ms)))
522 return;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700523
David Hildenbrandcb7b3a32019-05-13 17:21:37 -0700524 unregister_memory_section(ms);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700525
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800526 scn_nr = __section_nr(ms);
YASUAKI ISHIMATSU1dd2bfc2017-10-03 16:16:29 -0700527 start_pfn = section_nr_to_pfn((unsigned long)scn_nr);
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800528 __remove_zone(zone, start_pfn);
529
Christoph Hellwig24b6d412017-12-29 08:53:56 +0100530 sparse_remove_one_section(zone, ms, map_offset, altmap);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700531}
532
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700533/**
534 * __remove_pages() - remove sections of pages from a zone
535 * @zone: zone from which pages need to be removed
536 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
537 * @nr_pages: number of pages to remove (must be multiple of section size)
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700538 * @altmap: alternative device page map or %NULL if default memmap is used
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700539 *
540 * Generic helper function to remove section mappings and sysfs entries
541 * for the section of the memory we are removing. Caller needs to make
542 * sure that pages are marked reserved and zones are adjust properly by
543 * calling offline_pages().
544 */
David Hildenbrandac5c9422019-05-13 17:21:46 -0700545void __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
546 unsigned long nr_pages, struct vmem_altmap *altmap)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700547{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700548 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800549 unsigned long map_offset = 0;
David Hildenbrand9d1d8872019-05-13 17:21:41 -0700550 int sections_to_remove;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800551
552 /* In the ZONE_DEVICE case device driver owns the memory region */
Christoph Hellwig514caf22019-06-26 14:27:13 +0200553 if (is_dev_zone(zone))
554 map_offset = vmem_altmap_offset(altmap);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700555
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700556 clear_zone_contiguous(zone);
557
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700558 /*
559 * We can only remove entire sections
560 */
561 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
562 BUG_ON(nr_pages % PAGES_PER_SECTION);
563
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700564 sections_to_remove = nr_pages / PAGES_PER_SECTION;
565 for (i = 0; i < sections_to_remove; i++) {
566 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800567
Michal Hockodd33ad72018-11-02 15:48:46 -0700568 cond_resched();
David Hildenbrand9d1d8872019-05-13 17:21:41 -0700569 __remove_section(zone, __pfn_to_section(pfn), map_offset,
570 altmap);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800571 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700572 }
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700573
574 set_zone_contiguous(zone);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700575}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700576
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700577int set_online_page_callback(online_page_callback_t callback)
578{
579 int rc = -EINVAL;
580
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700581 get_online_mems();
582 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700583
584 if (online_page_callback == generic_online_page) {
585 online_page_callback = callback;
586 rc = 0;
587 }
588
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700589 mutex_unlock(&online_page_callback_lock);
590 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700591
592 return rc;
593}
594EXPORT_SYMBOL_GPL(set_online_page_callback);
595
596int restore_online_page_callback(online_page_callback_t callback)
597{
598 int rc = -EINVAL;
599
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700600 get_online_mems();
601 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700602
603 if (online_page_callback == callback) {
604 online_page_callback = generic_online_page;
605 rc = 0;
606 }
607
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700608 mutex_unlock(&online_page_callback_lock);
609 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700610
611 return rc;
612}
613EXPORT_SYMBOL_GPL(restore_online_page_callback);
614
615void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700616{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700617}
618EXPORT_SYMBOL_GPL(__online_page_set_limits);
619
620void __online_page_increment_counters(struct page *page)
621{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700622 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700623}
624EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700625
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700626void __online_page_free(struct page *page)
627{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700628 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700629}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700630EXPORT_SYMBOL_GPL(__online_page_free);
631
Arun KSa9cd4102019-03-05 15:42:14 -0800632static void generic_online_page(struct page *page, unsigned int order)
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700633{
Qian Caicd02cf12019-03-05 15:49:57 -0800634 kernel_map_pages(page, 1 << order, 1);
Arun KSa9cd4102019-03-05 15:42:14 -0800635 __free_pages_core(page, order);
636 totalram_pages_add(1UL << order);
637#ifdef CONFIG_HIGHMEM
638 if (PageHighMem(page))
639 totalhigh_pages_add(1UL << order);
640#endif
641}
642
643static int online_pages_blocks(unsigned long start, unsigned long nr_pages)
644{
645 unsigned long end = start + nr_pages;
646 int order, onlined_pages = 0;
647
648 while (start < end) {
649 order = min(MAX_ORDER - 1,
650 get_order(PFN_PHYS(end) - PFN_PHYS(start)));
651 (*online_page_callback)(pfn_to_page(start), order);
652
653 onlined_pages += (1UL << order);
654 start += (1UL << order);
655 }
656 return onlined_pages;
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700657}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700658
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700659static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
660 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700661{
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700662 unsigned long onlined_pages = *(unsigned long *)arg;
Michal Hocko2d070ea2017-07-06 15:37:56 -0700663
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700664 if (PageReserved(pfn_to_page(start_pfn)))
Arun KSa9cd4102019-03-05 15:42:14 -0800665 onlined_pages += online_pages_blocks(start_pfn, nr_pages);
Michal Hocko2d070ea2017-07-06 15:37:56 -0700666
667 online_mem_sections(start_pfn, start_pfn + nr_pages);
668
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700669 *(unsigned long *)arg = onlined_pages;
670 return 0;
671}
672
Lai Jiangshand9713672012-12-11 16:01:03 -0800673/* check which state of node_states will be changed when online memory */
674static void node_states_check_changes_online(unsigned long nr_pages,
675 struct zone *zone, struct memory_notify *arg)
676{
677 int nid = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -0800678
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800679 arg->status_change_nid = NUMA_NO_NODE;
680 arg->status_change_nid_normal = NUMA_NO_NODE;
681 arg->status_change_nid_high = NUMA_NO_NODE;
Lai Jiangshand9713672012-12-11 16:01:03 -0800682
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800683 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800684 arg->status_change_nid = nid;
Oscar Salvador8efe33f2018-10-26 15:07:34 -0700685 if (zone_idx(zone) <= ZONE_NORMAL && !node_state(nid, N_NORMAL_MEMORY))
686 arg->status_change_nid_normal = nid;
687#ifdef CONFIG_HIGHMEM
Baoquan Hed3ba3ae2019-05-13 17:17:35 -0700688 if (zone_idx(zone) <= ZONE_HIGHMEM && !node_state(nid, N_HIGH_MEMORY))
Oscar Salvador8efe33f2018-10-26 15:07:34 -0700689 arg->status_change_nid_high = nid;
690#endif
Lai Jiangshand9713672012-12-11 16:01:03 -0800691}
692
693static void node_states_set_node(int node, struct memory_notify *arg)
694{
695 if (arg->status_change_nid_normal >= 0)
696 node_set_state(node, N_NORMAL_MEMORY);
697
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800698 if (arg->status_change_nid_high >= 0)
699 node_set_state(node, N_HIGH_MEMORY);
700
Oscar Salvador83d83612018-10-26 15:07:25 -0700701 if (arg->status_change_nid >= 0)
702 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800703}
704
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700705static void __meminit resize_zone_range(struct zone *zone, unsigned long start_pfn,
706 unsigned long nr_pages)
707{
708 unsigned long old_end_pfn = zone_end_pfn(zone);
709
710 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
711 zone->zone_start_pfn = start_pfn;
712
713 zone->spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - zone->zone_start_pfn;
714}
715
716static void __meminit resize_pgdat_range(struct pglist_data *pgdat, unsigned long start_pfn,
717 unsigned long nr_pages)
718{
719 unsigned long old_end_pfn = pgdat_end_pfn(pgdat);
720
721 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
722 pgdat->node_start_pfn = start_pfn;
723
724 pgdat->node_spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - pgdat->node_start_pfn;
725}
726
Christoph Hellwiga99583e2017-12-29 08:53:57 +0100727void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
728 unsigned long nr_pages, struct vmem_altmap *altmap)
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700729{
730 struct pglist_data *pgdat = zone->zone_pgdat;
731 int nid = pgdat->node_id;
732 unsigned long flags;
733
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700734 clear_zone_contiguous(zone);
735
736 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
737 pgdat_resize_lock(pgdat, &flags);
738 zone_span_writelock(zone);
Wei Yangfa004ab2018-12-28 00:37:10 -0800739 if (zone_is_empty(zone))
740 init_currently_empty_zone(zone, start_pfn, nr_pages);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700741 resize_zone_range(zone, start_pfn, nr_pages);
742 zone_span_writeunlock(zone);
743 resize_pgdat_range(pgdat, start_pfn, nr_pages);
744 pgdat_resize_unlock(pgdat, &flags);
745
746 /*
747 * TODO now we have a visible range of pages which are not associated
748 * with their zone properly. Not nice but set_pfnblock_flags_mask
749 * expects the zone spans the pfn range. All the pages in the range
750 * are reserved so nobody should be touching them so we should be safe
751 */
Christoph Hellwiga99583e2017-12-29 08:53:57 +0100752 memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn,
753 MEMMAP_HOTPLUG, altmap);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700754
755 set_zone_contiguous(zone);
756}
757
758/*
Michal Hockoc246a212017-07-06 15:38:18 -0700759 * Returns a default kernel memory zone for the given pfn range.
760 * If no kernel zone covers this pfn range it will automatically go
761 * to the ZONE_NORMAL.
762 */
Michal Hockoc6f03e22017-09-06 16:19:40 -0700763static struct zone *default_kernel_zone_for_pfn(int nid, unsigned long start_pfn,
Michal Hockoc246a212017-07-06 15:38:18 -0700764 unsigned long nr_pages)
765{
766 struct pglist_data *pgdat = NODE_DATA(nid);
767 int zid;
768
769 for (zid = 0; zid <= ZONE_NORMAL; zid++) {
770 struct zone *zone = &pgdat->node_zones[zid];
771
772 if (zone_intersects(zone, start_pfn, nr_pages))
773 return zone;
774 }
775
776 return &pgdat->node_zones[ZONE_NORMAL];
777}
778
Michal Hockoc6f03e22017-09-06 16:19:40 -0700779static inline struct zone *default_zone_for_pfn(int nid, unsigned long start_pfn,
780 unsigned long nr_pages)
Michal Hockoe5e68932017-09-06 16:19:37 -0700781{
Michal Hockoc6f03e22017-09-06 16:19:40 -0700782 struct zone *kernel_zone = default_kernel_zone_for_pfn(nid, start_pfn,
783 nr_pages);
784 struct zone *movable_zone = &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
785 bool in_kernel = zone_intersects(kernel_zone, start_pfn, nr_pages);
786 bool in_movable = zone_intersects(movable_zone, start_pfn, nr_pages);
Michal Hockoe5e68932017-09-06 16:19:37 -0700787
788 /*
Michal Hockoc6f03e22017-09-06 16:19:40 -0700789 * We inherit the existing zone in a simple case where zones do not
790 * overlap in the given range
Michal Hockoe5e68932017-09-06 16:19:37 -0700791 */
Michal Hockoc6f03e22017-09-06 16:19:40 -0700792 if (in_kernel ^ in_movable)
793 return (in_kernel) ? kernel_zone : movable_zone;
Michal Hockoe5e68932017-09-06 16:19:37 -0700794
Michal Hockoc6f03e22017-09-06 16:19:40 -0700795 /*
796 * If the range doesn't belong to any zone or two zones overlap in the
797 * given range then we use movable zone only if movable_node is
798 * enabled because we always online to a kernel zone by default.
799 */
800 return movable_node_enabled ? movable_zone : kernel_zone;
Michal Hocko9f123ab2017-07-10 15:48:37 -0700801}
802
Michal Hockoe5e68932017-09-06 16:19:37 -0700803struct zone * zone_for_pfn_range(int online_type, int nid, unsigned start_pfn,
804 unsigned long nr_pages)
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700805{
Michal Hockoc6f03e22017-09-06 16:19:40 -0700806 if (online_type == MMOP_ONLINE_KERNEL)
807 return default_kernel_zone_for_pfn(nid, start_pfn, nr_pages);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700808
Michal Hockoc6f03e22017-09-06 16:19:40 -0700809 if (online_type == MMOP_ONLINE_MOVABLE)
810 return &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
Reza Arbabdf429ac2016-07-26 15:22:23 -0700811
Michal Hockoc6f03e22017-09-06 16:19:40 -0700812 return default_zone_for_pfn(nid, start_pfn, nr_pages);
Michal Hockoe5e68932017-09-06 16:19:37 -0700813}
814
815/*
816 * Associates the given pfn range with the given node and the zone appropriate
817 * for the given online type.
818 */
819static struct zone * __meminit move_pfn_range(int online_type, int nid,
820 unsigned long start_pfn, unsigned long nr_pages)
821{
822 struct zone *zone;
823
824 zone = zone_for_pfn_range(online_type, nid, start_pfn, nr_pages);
Christoph Hellwiga99583e2017-12-29 08:53:57 +0100825 move_pfn_range_to_zone(zone, start_pfn, nr_pages, NULL);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700826 return zone;
Reza Arbabdf429ac2016-07-26 15:22:23 -0700827}
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700828
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800829int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700830{
Cody P Schaferaa472282013-07-03 15:02:10 -0700831 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700832 unsigned long onlined_pages = 0;
833 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700834 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700835 int nid;
836 int ret;
837 struct memory_notify arg;
Pavel Tatashind0dc12e2018-04-05 16:23:00 -0700838 struct memory_block *mem;
Dave Hansen3947be12005-10-29 18:16:54 -0700839
David Hildenbrand381eab42018-10-30 15:10:29 -0700840 mem_hotplug_begin();
841
Pavel Tatashind0dc12e2018-04-05 16:23:00 -0700842 /*
843 * We can't use pfn_to_nid() because nid might be stored in struct page
844 * which is not yet initialized. Instead, we find nid from memory block.
845 */
846 mem = find_memory_block(__pfn_to_section(pfn));
847 nid = mem->nid;
David Hildenbrand89c02e62019-04-25 22:23:37 -0700848 put_device(&mem->dev);
Pavel Tatashind0dc12e2018-04-05 16:23:00 -0700849
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700850 /* associate pfn range with the zone */
851 zone = move_pfn_range(online_type, nid, pfn, nr_pages);
852
Yasunori Goto7b78d332007-10-21 16:41:36 -0700853 arg.start_pfn = pfn;
854 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800855 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700856
Yasunori Goto7b78d332007-10-21 16:41:36 -0700857 ret = memory_notify(MEM_GOING_ONLINE, &arg);
858 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -0700859 if (ret)
860 goto failed_addition;
861
Dave Hansen3947be12005-10-29 18:16:54 -0700862 /*
Yasunori Goto68113782006-06-23 02:03:11 -0700863 * If this zone is not populated, then it is not in zonelist.
864 * This means the page allocator ignores this zone.
865 * So, zonelist must be updated after online.
866 */
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800867 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -0700868 need_zonelists_rebuild = 1;
Michal Hocko72675e12017-09-06 16:20:24 -0700869 setup_zone_pageset(zone);
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800870 }
Yasunori Goto68113782006-06-23 02:03:11 -0700871
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700872 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700873 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700874 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800875 if (need_zonelists_rebuild)
876 zone_pcp_reset(zone);
Chen Yuconge33e33b2016-03-17 14:19:35 -0700877 goto failed_addition;
Geoff Levandfd8a4222008-05-14 16:05:50 -0700878 }
879
Dave Hansen3947be12005-10-29 18:16:54 -0700880 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700881
882 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -0800883 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700884 pgdat_resize_unlock(zone->zone_pgdat, &flags);
885
Dan Williamse900a912019-05-14 15:41:28 -0700886 shuffle_zone(zone);
887
Jiang Liu08dff7b2012-07-31 16:43:30 -0700888 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -0700889 node_states_set_node(nid, &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700890 if (need_zonelists_rebuild)
Michal Hocko72675e12017-09-06 16:20:24 -0700891 build_all_zonelists(NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700892 else
893 zone_pcp_update(zone);
894 }
Dave Hansen3947be12005-10-29 18:16:54 -0700895
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700896 init_per_zone_wmark_min();
897
Vlastimil Babka698b1b32016-03-17 14:18:08 -0700898 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -0700899 kswapd_run(nid);
Vlastimil Babka698b1b32016-03-17 14:18:08 -0700900 kcompactd_run(nid);
901 }
Dave Hansen61b13992005-10-29 18:16:56 -0700902
Haicheng Li1f522502010-05-24 14:32:51 -0700903 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -0700904
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700905 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700906
907 if (onlined_pages)
908 memory_notify(MEM_ONLINE, &arg);
David Hildenbrand381eab42018-10-30 15:10:29 -0700909 mem_hotplug_done();
David Rientjes30467e02015-04-14 15:45:11 -0700910 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -0700911
912failed_addition:
913 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
914 (unsigned long long) pfn << PAGE_SHIFT,
915 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
916 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Hildenbrand381eab42018-10-30 15:10:29 -0700917 mem_hotplug_done();
Chen Yuconge33e33b2016-03-17 14:19:35 -0700918 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700919}
Keith Mannthey53947022006-09-30 23:27:08 -0700920#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700921
Tang Chen0bd85422014-11-13 15:19:41 -0800922static void reset_node_present_pages(pg_data_t *pgdat)
923{
924 struct zone *z;
925
926 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
927 z->present_pages = 0;
928
929 pgdat->node_present_pages = 0;
930}
931
Hidetoshi Setoe1319332009-11-17 14:06:18 -0800932/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
933static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700934{
935 struct pglist_data *pgdat;
Fabian Frederickc8e861a2014-06-04 16:07:51 -0700936 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700937
Tang Chena1e565a2013-02-22 16:33:18 -0800938 pgdat = NODE_DATA(nid);
939 if (!pgdat) {
940 pgdat = arch_alloc_nodedata(nid);
941 if (!pgdat)
942 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700943
Tang Chena1e565a2013-02-22 16:33:18 -0800944 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -0700945 } else {
Mel Gormane716f2e2017-05-03 14:53:45 -0700946 /*
947 * Reset the nr_zones, order and classzone_idx before reuse.
948 * Note that kswapd will init kswapd_classzone_idx properly
949 * when it starts in the near future.
950 */
Gu Zhengb0dc3a32015-03-25 15:55:20 -0700951 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -0700952 pgdat->kswapd_order = 0;
953 pgdat->kswapd_classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -0800954 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700955
956 /* we can use NODE_DATA(nid) from here */
957
Oscar Salvador03e85f92018-08-21 21:53:43 -0700958 pgdat->node_id = nid;
959 pgdat->node_start_pfn = start_pfn;
960
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700961 /* init node's zones as empty zones, we don't have any present pages.*/
Oscar Salvador03e85f92018-08-21 21:53:43 -0700962 free_area_init_core_hotplug(nid);
Reza Arbab58301692016-08-11 15:33:12 -0700963 pgdat->per_cpu_nodestats = alloc_percpu(struct per_cpu_nodestat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700964
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700965 /*
966 * The node we allocated has no zone fallback lists. For avoiding
967 * to access not-initialized zonelist, build here.
968 */
Michal Hocko72675e12017-09-06 16:20:24 -0700969 build_all_zonelists(pgdat);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700970
Tang Chenf784a3f2014-11-13 15:19:39 -0800971 /*
Tang Chen0bd85422014-11-13 15:19:41 -0800972 * When memory is hot-added, all the memory is in offline state. So
973 * clear all zones' present_pages because they will be updated in
974 * online_pages() and offline_pages().
975 */
Oscar Salvador03e85f92018-08-21 21:53:43 -0700976 reset_node_managed_pages(pgdat);
Tang Chen0bd85422014-11-13 15:19:41 -0800977 reset_node_present_pages(pgdat);
978
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700979 return pgdat;
980}
981
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700982static void rollback_node_hotadd(int nid)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700983{
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700984 pg_data_t *pgdat = NODE_DATA(nid);
985
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700986 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -0700987 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700988 arch_free_nodedata(pgdat);
989 return;
990}
991
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700992
Toshi Kani01b0f192013-11-12 15:07:25 -0800993/**
994 * try_online_node - online a node if offlined
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700995 * @nid: the node ID
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700996 * @start: start addr of the node
997 * @set_node_online: Whether we want to online the node
minskey guocf234222010-05-24 14:32:41 -0700998 * called by cpu_up() to online a node without onlined memory.
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700999 *
1000 * Returns:
1001 * 1 -> a new node has been allocated
1002 * 0 -> the node is already online
1003 * -ENOMEM -> the node could not be allocated
minskey guocf234222010-05-24 14:32:41 -07001004 */
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001005static int __try_online_node(int nid, u64 start, bool set_node_online)
minskey guocf234222010-05-24 14:32:41 -07001006{
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001007 pg_data_t *pgdat;
1008 int ret = 1;
minskey guocf234222010-05-24 14:32:41 -07001009
Toshi Kani01b0f192013-11-12 15:07:25 -08001010 if (node_online(nid))
1011 return 0;
1012
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001013 pgdat = hotadd_new_pgdat(nid, start);
David Rientjes7553e8f2011-06-22 18:13:01 -07001014 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001015 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001016 ret = -ENOMEM;
1017 goto out;
1018 }
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001019
1020 if (set_node_online) {
1021 node_set_online(nid);
1022 ret = register_one_node(nid);
1023 BUG_ON(ret);
1024 }
minskey guocf234222010-05-24 14:32:41 -07001025out:
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001026 return ret;
1027}
1028
1029/*
1030 * Users of this function always want to online/register the node
1031 */
1032int try_online_node(int nid)
1033{
1034 int ret;
1035
1036 mem_hotplug_begin();
1037 ret = __try_online_node(nid, 0, true);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001038 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001039 return ret;
1040}
1041
Toshi Kani27356f52013-09-11 14:21:49 -07001042static int check_hotplug_memory_range(u64 start, u64 size)
1043{
Pavel Tatashinba325582018-04-05 16:22:39 -07001044 /* memory range must be block size aligned */
David Hildenbrandcec3ebd2019-07-18 15:56:25 -07001045 if (!size || !IS_ALIGNED(start, memory_block_size_bytes()) ||
1046 !IS_ALIGNED(size, memory_block_size_bytes())) {
Pavel Tatashinba325582018-04-05 16:22:39 -07001047 pr_err("Block size [%#lx] unaligned hotplug range: start %#llx, size %#llx",
David Hildenbrandcec3ebd2019-07-18 15:56:25 -07001048 memory_block_size_bytes(), start, size);
Toshi Kani27356f52013-09-11 14:21:49 -07001049 return -EINVAL;
1050 }
1051
1052 return 0;
1053}
1054
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001055static int online_memory_block(struct memory_block *mem, void *arg)
1056{
Nathan Fontenotdc18d702017-02-24 15:00:02 -08001057 return device_online(&mem->dev);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001058}
1059
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001060/*
1061 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1062 * and online/offline operations (triggered e.g. by sysfs).
1063 *
1064 * we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG
1065 */
David Hildenbrandf29d8e9c02018-12-28 00:35:36 -08001066int __ref add_memory_resource(int nid, struct resource *res)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001067{
Michal Hocko940519f2019-05-13 17:21:26 -07001068 struct mhp_restrictions restrictions = {
1069 .flags = MHP_MEMBLOCK_API,
1070 };
David Vrabel62cedb92015-06-25 16:35:49 +01001071 u64 start, size;
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001072 bool new_node = false;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001073 int ret;
1074
David Vrabel62cedb92015-06-25 16:35:49 +01001075 start = res->start;
1076 size = resource_size(res);
1077
Toshi Kani27356f52013-09-11 14:21:49 -07001078 ret = check_hotplug_memory_range(start, size);
1079 if (ret)
1080 return ret;
1081
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001082 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001083
Tang Chen7f36e3e2015-09-04 15:42:32 -07001084 /*
1085 * Add new range to memblock so that when hotadd_new_pgdat() is called
1086 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1087 * this new range and calculate total pages correctly. The range will
1088 * be removed at hot-remove time.
1089 */
1090 memblock_add_node(start, size, nid);
1091
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001092 ret = __try_online_node(nid, start, false);
1093 if (ret < 0)
1094 goto error;
1095 new_node = ret;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001096
Yasunori Gotobc02af92006-06-27 02:53:30 -07001097 /* call arch's memory hotadd */
Michal Hocko940519f2019-05-13 17:21:26 -07001098 ret = arch_add_memory(nid, start, size, &restrictions);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001099 if (ret < 0)
1100 goto error;
1101
David Hildenbranddb051a02019-07-18 15:56:56 -07001102 /* create memory block devices after memory was added */
1103 ret = create_memory_block_devices(start, size);
1104 if (ret) {
1105 arch_remove_memory(nid, start, size, NULL);
1106 goto error;
1107 }
1108
Tang Chena1e565a2013-02-22 16:33:18 -08001109 if (new_node) {
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001110 /* If sysfs file of new node can't be created, cpu on the node
Yasunori Goto0fc44152006-06-27 02:53:38 -07001111 * can't be hot-added. There is no rollback way now.
1112 * So, check by BUG_ON() to catch it reluctantly..
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001113 * We online node here. We can't roll back from here.
Yasunori Goto0fc44152006-06-27 02:53:38 -07001114 */
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001115 node_set_online(nid);
1116 ret = __register_one_node(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -07001117 BUG_ON(ret);
1118 }
1119
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001120 /* link memory sections under this node.*/
Oscar Salvador4fbce632018-08-17 15:46:22 -07001121 ret = link_mem_sections(nid, PFN_DOWN(start), PFN_UP(start + size - 1));
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001122 BUG_ON(ret);
1123
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001124 /* create new memmap entry */
1125 firmware_map_add_hotplug(start, start + size, "System RAM");
1126
David Hildenbrand381eab42018-10-30 15:10:29 -07001127 /* device_online() will take the lock when calling online_pages() */
1128 mem_hotplug_done();
1129
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001130 /* online pages if requested */
David Hildenbrandf29d8e9c02018-12-28 00:35:36 -08001131 if (memhp_auto_online)
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001132 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1133 NULL, online_memory_block);
1134
David Hildenbrand381eab42018-10-30 15:10:29 -07001135 return ret;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001136error:
1137 /* rollback pgdat allocation and others */
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001138 if (new_node)
1139 rollback_node_hotadd(nid);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001140 memblock_remove(start, size);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001141 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001142 return ret;
1143}
David Vrabel62cedb92015-06-25 16:35:49 +01001144
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001145/* requires device_hotplug_lock, see add_memory_resource() */
1146int __ref __add_memory(int nid, u64 start, u64 size)
David Vrabel62cedb92015-06-25 16:35:49 +01001147{
1148 struct resource *res;
1149 int ret;
1150
1151 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001152 if (IS_ERR(res))
1153 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001154
David Hildenbrandf29d8e9c02018-12-28 00:35:36 -08001155 ret = add_memory_resource(nid, res);
David Vrabel62cedb92015-06-25 16:35:49 +01001156 if (ret < 0)
1157 release_memory_resource(res);
1158 return ret;
1159}
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001160
1161int add_memory(int nid, u64 start, u64 size)
1162{
1163 int rc;
1164
1165 lock_device_hotplug();
1166 rc = __add_memory(nid, start, size);
1167 unlock_device_hotplug();
1168
1169 return rc;
1170}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001171EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001172
1173#ifdef CONFIG_MEMORY_HOTREMOVE
1174/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001175 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1176 * set and the size of the free page is given by page_order(). Using this,
1177 * the function determines if the pageblock contains only free pages.
1178 * Due to buddy contraints, a free page at least the size of a pageblock will
1179 * be located at the start of the pageblock
1180 */
1181static inline int pageblock_free(struct page *page)
1182{
1183 return PageBuddy(page) && page_order(page) >= pageblock_order;
1184}
1185
Michal Hocko891cb2a2019-02-20 22:20:46 -08001186/* Return the pfn of the start of the next active pageblock after a given pfn */
1187static unsigned long next_active_pageblock(unsigned long pfn)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001188{
Michal Hocko891cb2a2019-02-20 22:20:46 -08001189 struct page *page = pfn_to_page(pfn);
1190
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001191 /* Ensure the starting page is pageblock-aligned */
Michal Hocko891cb2a2019-02-20 22:20:46 -08001192 BUG_ON(pfn & (pageblock_nr_pages - 1));
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001193
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001194 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001195 if (pageblock_free(page)) {
1196 int order;
1197 /* be careful. we don't have locks, page_order can be changed.*/
1198 order = page_order(page);
1199 if ((order < MAX_ORDER) && (order >= pageblock_order))
Michal Hocko891cb2a2019-02-20 22:20:46 -08001200 return pfn + (1 << order);
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001201 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001202
Michal Hocko891cb2a2019-02-20 22:20:46 -08001203 return pfn + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001204}
1205
Michal Hocko891cb2a2019-02-20 22:20:46 -08001206static bool is_pageblock_removable_nolock(unsigned long pfn)
Mathieu Malaterrefb52bba2018-06-07 17:07:43 -07001207{
Michal Hocko891cb2a2019-02-20 22:20:46 -08001208 struct page *page = pfn_to_page(pfn);
Mathieu Malaterrefb52bba2018-06-07 17:07:43 -07001209 struct zone *zone;
Mathieu Malaterrefb52bba2018-06-07 17:07:43 -07001210
1211 /*
1212 * We have to be careful here because we are iterating over memory
1213 * sections which are not zone aware so we might end up outside of
1214 * the zone but still within the section.
1215 * We have to take care about the node as well. If the node is offline
1216 * its NODE_DATA will be NULL - see page_zone.
1217 */
1218 if (!node_online(page_to_nid(page)))
1219 return false;
1220
1221 zone = page_zone(page);
1222 pfn = page_to_pfn(page);
1223 if (!zone_spans_pfn(zone, pfn))
1224 return false;
1225
Michal Hockod381c542018-12-28 00:33:56 -08001226 return !has_unmovable_pages(zone, page, 0, MIGRATE_MOVABLE, SKIP_HWPOISON);
Mathieu Malaterrefb52bba2018-06-07 17:07:43 -07001227}
1228
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001229/* Checks if this range of memory is likely to be hot-removable. */
Yaowei Baic98940f2016-05-19 17:11:26 -07001230bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001231{
Michal Hocko891cb2a2019-02-20 22:20:46 -08001232 unsigned long end_pfn, pfn;
1233
1234 end_pfn = min(start_pfn + nr_pages,
1235 zone_end_pfn(page_zone(pfn_to_page(start_pfn))));
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001236
1237 /* Check the starting page of each pageblock within the range */
Michal Hocko891cb2a2019-02-20 22:20:46 -08001238 for (pfn = start_pfn; pfn < end_pfn; pfn = next_active_pageblock(pfn)) {
1239 if (!is_pageblock_removable_nolock(pfn))
Yaowei Baic98940f2016-05-19 17:11:26 -07001240 return false;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001241 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001242 }
1243
1244 /* All pageblocks in the memory block are likely to be hot-removable */
Yaowei Baic98940f2016-05-19 17:11:26 -07001245 return true;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001246}
1247
1248/*
Toshi Kanideb88a22017-02-03 13:13:20 -08001249 * Confirm all pages in a range [start, end) belong to the same zone.
Toshi Kania96dfdd2017-02-03 13:13:23 -08001250 * When true, return its valid [start, end).
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001251 */
Toshi Kania96dfdd2017-02-03 13:13:23 -08001252int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
1253 unsigned long *valid_start, unsigned long *valid_end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001254{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001255 unsigned long pfn, sec_end_pfn;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001256 unsigned long start, end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001257 struct zone *zone = NULL;
1258 struct page *page;
1259 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001260 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001261 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001262 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001263 /* Make sure the memory section is present first */
1264 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001265 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001266 for (; pfn < sec_end_pfn && pfn < end_pfn;
1267 pfn += MAX_ORDER_NR_PAGES) {
1268 i = 0;
1269 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1270 while ((i < MAX_ORDER_NR_PAGES) &&
1271 !pfn_valid_within(pfn + i))
1272 i++;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001273 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
Andrew Banman5f0f2882015-12-29 14:54:25 -08001274 continue;
Mikhail Zaslonko24feb472019-02-01 14:20:38 -08001275 /* Check if we got outside of the zone */
1276 if (zone && !zone_spans_pfn(zone, pfn + i))
1277 return 0;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001278 page = pfn_to_page(pfn + i);
1279 if (zone && page_zone(page) != zone)
1280 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001281 if (!zone)
1282 start = pfn + i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001283 zone = page_zone(page);
Toshi Kania96dfdd2017-02-03 13:13:23 -08001284 end = pfn + MAX_ORDER_NR_PAGES;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001285 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001286 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001287
Toshi Kania96dfdd2017-02-03 13:13:23 -08001288 if (zone) {
1289 *valid_start = start;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001290 *valid_end = min(end, end_pfn);
Toshi Kanideb88a22017-02-03 13:13:20 -08001291 return 1;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001292 } else {
Toshi Kanideb88a22017-02-03 13:13:20 -08001293 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001294 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001295}
1296
1297/*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001298 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1299 * non-lru movable pages and hugepages). We scan pfn because it's much
1300 * easier than scanning over linked list. This function returns the pfn
1301 * of the first found movable page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001302 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001303static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001304{
1305 unsigned long pfn;
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001306
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001307 for (pfn = start; pfn < end; pfn++) {
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001308 struct page *page, *head;
1309 unsigned long skip;
1310
1311 if (!pfn_valid(pfn))
1312 continue;
1313 page = pfn_to_page(pfn);
1314 if (PageLRU(page))
1315 return pfn;
1316 if (__PageMovable(page))
1317 return pfn;
1318
1319 if (!PageHuge(page))
1320 continue;
1321 head = compound_head(page);
Oscar Salvador39186cb2019-05-13 17:17:32 -07001322 if (page_huge_active(head))
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001323 return pfn;
1324 skip = (1 << compound_order(head)) - (page - head);
1325 pfn += skip - 1;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001326 }
1327 return 0;
1328}
1329
Michal Hocko666feb22018-04-10 16:30:03 -07001330static struct page *new_node_page(struct page *page, unsigned long private)
Xishi Qiu394e31d2016-07-28 15:48:53 -07001331{
Xishi Qiu394e31d2016-07-28 15:48:53 -07001332 int nid = page_to_nid(page);
Li Zhong231e97e2016-09-28 15:22:38 -07001333 nodemask_t nmask = node_states[N_MEMORY];
Michal Hocko7f252f22017-07-10 15:48:41 -07001334
1335 /*
1336 * try to allocate from a different node but reuse this node if there
1337 * are no other online nodes to be used (e.g. we are offlining a part
1338 * of the only existing node)
1339 */
1340 node_clear(nid, nmask);
1341 if (nodes_empty(nmask))
1342 node_set(nid, nmask);
Xishi Qiu394e31d2016-07-28 15:48:53 -07001343
Michal Hocko8b913232017-07-10 15:48:47 -07001344 return new_page_nodemask(page, nid, &nmask);
Xishi Qiu394e31d2016-07-28 15:48:53 -07001345}
1346
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001347static int
1348do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1349{
1350 unsigned long pfn;
1351 struct page *page;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001352 int ret = 0;
1353 LIST_HEAD(source);
1354
Michal Hockoa85009c2018-12-28 00:38:29 -08001355 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001356 if (!pfn_valid(pfn))
1357 continue;
1358 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001359
1360 if (PageHuge(page)) {
1361 struct page *head = compound_head(page);
Oscar Salvadordaf35382019-03-05 15:48:53 -08001362 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1363 isolate_huge_page(head, &source);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001364 continue;
Michal Hocko94723aa2018-04-10 16:30:07 -07001365 } else if (PageTransHuge(page))
Naoya Horiguchi8135d892017-09-08 16:11:15 -07001366 pfn = page_to_pfn(compound_head(page))
1367 + hpage_nr_pages(page) - 1;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001368
Michal Hockob15c8722018-12-28 00:38:01 -08001369 /*
1370 * HWPoison pages have elevated reference counts so the migration would
1371 * fail on them. It also doesn't make any sense to migrate them in the
1372 * first place. Still try to unmap such a page in case it is still mapped
1373 * (e.g. current hwpoison implementation doesn't unmap KSM pages but keep
1374 * the unmap as the catch all safety net).
1375 */
1376 if (PageHWPoison(page)) {
1377 if (WARN_ON(PageLRU(page)))
1378 isolate_lru_page(page);
1379 if (page_mapped(page))
1380 try_to_unmap(page, TTU_IGNORE_MLOCK | TTU_IGNORE_ACCESS);
1381 continue;
1382 }
1383
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001384 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001385 continue;
1386 /*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001387 * We can skip free pages. And we can deal with pages on
1388 * LRU and non-lru movable pages.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001389 */
Yisheng Xie0efadf42017-02-24 14:57:39 -08001390 if (PageLRU(page))
1391 ret = isolate_lru_page(page);
1392 else
1393 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001394 if (!ret) { /* Success */
Nick Piggin62695a82008-10-18 20:26:09 -07001395 list_add_tail(&page->lru, &source);
Yisheng Xie0efadf42017-02-24 14:57:39 -08001396 if (!__PageMovable(page))
1397 inc_node_page_state(page, NR_ISOLATED_ANON +
1398 page_is_file_cache(page));
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001399
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001400 } else {
Michal Hocko2932c8b2018-12-28 00:33:53 -08001401 pr_warn("failed to isolate pfn %lx\n", pfn);
Yisheng Xie0efadf42017-02-24 14:57:39 -08001402 dump_page(page, "isolation failed");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001403 }
Oscar Salvador17230582019-02-01 14:19:57 -08001404 put_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001405 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001406 if (!list_empty(&source)) {
Xishi Qiu394e31d2016-07-28 15:48:53 -07001407 /* Allocate a new page from the nearest neighbor node */
1408 ret = migrate_pages(&source, new_node_page, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001409 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Michal Hocko2932c8b2018-12-28 00:33:53 -08001410 if (ret) {
1411 list_for_each_entry(page, &source, lru) {
1412 pr_warn("migrating pfn %lx failed ret:%d ",
1413 page_to_pfn(page), ret);
1414 dump_page(page, "migration failure");
1415 }
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001416 putback_movable_pages(&source);
Michal Hocko2932c8b2018-12-28 00:33:53 -08001417 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001418 }
Oscar Salvador17230582019-02-01 14:19:57 -08001419
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001420 return ret;
1421}
1422
1423/*
1424 * remove from free_area[] and mark all as Reserved.
1425 */
1426static int
1427offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1428 void *data)
1429{
Michal Hocko5557c762019-05-13 17:21:24 -07001430 unsigned long *offlined_pages = (unsigned long *)data;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001431
Michal Hocko5557c762019-05-13 17:21:24 -07001432 *offlined_pages += __offline_isolated_pages(start, start + nr_pages);
1433 return 0;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001434}
1435
1436/*
1437 * Check all pages in range, recoreded as memory resource, are isolated.
1438 */
1439static int
1440check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1441 void *data)
1442{
Michal Hocko5557c762019-05-13 17:21:24 -07001443 return test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001444}
1445
Tang Chenc5320922013-11-12 15:08:10 -08001446static int __init cmdline_parse_movable_node(char *p)
1447{
Michal Hocko49323812017-07-06 15:41:05 -07001448#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
Tang Chen55ac5902014-01-21 15:49:35 -08001449 movable_node_enabled = true;
Michal Hocko49323812017-07-06 15:41:05 -07001450#else
1451 pr_warn("movable_node parameter depends on CONFIG_HAVE_MEMBLOCK_NODE_MAP to work properly\n");
1452#endif
Tang Chenc5320922013-11-12 15:08:10 -08001453 return 0;
1454}
1455early_param("movable_node", cmdline_parse_movable_node);
1456
Lai Jiangshand9713672012-12-11 16:01:03 -08001457/* check which state of node_states will be changed when offline memory */
1458static void node_states_check_changes_offline(unsigned long nr_pages,
1459 struct zone *zone, struct memory_notify *arg)
1460{
1461 struct pglist_data *pgdat = zone->zone_pgdat;
1462 unsigned long present_pages = 0;
Oscar Salvador86b27be2018-10-26 15:07:38 -07001463 enum zone_type zt;
1464
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001465 arg->status_change_nid = NUMA_NO_NODE;
1466 arg->status_change_nid_normal = NUMA_NO_NODE;
1467 arg->status_change_nid_high = NUMA_NO_NODE;
Lai Jiangshand9713672012-12-11 16:01:03 -08001468
1469 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001470 * Check whether node_states[N_NORMAL_MEMORY] will be changed.
1471 * If the memory to be offline is within the range
1472 * [0..ZONE_NORMAL], and it is the last present memory there,
1473 * the zones in that range will become empty after the offlining,
1474 * thus we can determine that we need to clear the node from
1475 * node_states[N_NORMAL_MEMORY].
Lai Jiangshand9713672012-12-11 16:01:03 -08001476 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001477 for (zt = 0; zt <= ZONE_NORMAL; zt++)
Lai Jiangshand9713672012-12-11 16:01:03 -08001478 present_pages += pgdat->node_zones[zt].present_pages;
Oscar Salvador86b27be2018-10-26 15:07:38 -07001479 if (zone_idx(zone) <= ZONE_NORMAL && nr_pages >= present_pages)
Lai Jiangshand9713672012-12-11 16:01:03 -08001480 arg->status_change_nid_normal = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -08001481
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001482#ifdef CONFIG_HIGHMEM
1483 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001484 * node_states[N_HIGH_MEMORY] contains nodes which
1485 * have normal memory or high memory.
1486 * Here we add the present_pages belonging to ZONE_HIGHMEM.
1487 * If the zone is within the range of [0..ZONE_HIGHMEM), and
1488 * we determine that the zones in that range become empty,
1489 * we need to clear the node for N_HIGH_MEMORY.
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001490 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001491 present_pages += pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1492 if (zone_idx(zone) <= ZONE_HIGHMEM && nr_pages >= present_pages)
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001493 arg->status_change_nid_high = zone_to_nid(zone);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001494#endif
1495
Lai Jiangshand9713672012-12-11 16:01:03 -08001496 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001497 * We have accounted the pages from [0..ZONE_NORMAL), and
1498 * in case of CONFIG_HIGHMEM the pages from ZONE_HIGHMEM
1499 * as well.
1500 * Here we count the possible pages from ZONE_MOVABLE.
1501 * If after having accounted all the pages, we see that the nr_pages
1502 * to be offlined is over or equal to the accounted pages,
1503 * we know that the node will become empty, and so, we can clear
1504 * it for N_MEMORY as well.
Lai Jiangshand9713672012-12-11 16:01:03 -08001505 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001506 present_pages += pgdat->node_zones[ZONE_MOVABLE].present_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001507
Lai Jiangshand9713672012-12-11 16:01:03 -08001508 if (nr_pages >= present_pages)
1509 arg->status_change_nid = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -08001510}
1511
1512static void node_states_clear_node(int node, struct memory_notify *arg)
1513{
1514 if (arg->status_change_nid_normal >= 0)
1515 node_clear_state(node, N_NORMAL_MEMORY);
1516
Oscar Salvadorcf01f6f52018-10-26 15:07:28 -07001517 if (arg->status_change_nid_high >= 0)
Lai Jiangshand9713672012-12-11 16:01:03 -08001518 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001519
Oscar Salvadorcf01f6f52018-10-26 15:07:28 -07001520 if (arg->status_change_nid >= 0)
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001521 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001522}
1523
Wen Congyanga16cee12012-10-08 16:33:58 -07001524static int __ref __offline_pages(unsigned long start_pfn,
Michal Hockoecde0f32017-11-15 17:33:38 -08001525 unsigned long end_pfn)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001526{
Michal Hockoecde0f32017-11-15 17:33:38 -08001527 unsigned long pfn, nr_pages;
Michal Hocko5557c762019-05-13 17:21:24 -07001528 unsigned long offlined_pages = 0;
Qian Cai9b7ea462019-03-28 20:43:34 -07001529 int ret, node, nr_isolate_pageblock;
Cody P Schaferd7029092013-07-03 15:02:11 -07001530 unsigned long flags;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001531 unsigned long valid_start, valid_end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001532 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001533 struct memory_notify arg;
Michal Hocko79605092018-12-28 00:33:49 -08001534 char *reason;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001535
David Hildenbrand381eab42018-10-30 15:10:29 -07001536 mem_hotplug_begin();
1537
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001538 /* This makes hotplug much easier...and readable.
1539 we assume this for now. .*/
David Hildenbrand381eab42018-10-30 15:10:29 -07001540 if (!test_pages_in_a_zone(start_pfn, end_pfn, &valid_start,
1541 &valid_end)) {
Michal Hocko79605092018-12-28 00:33:49 -08001542 ret = -EINVAL;
1543 reason = "multizone range";
1544 goto failed_removal;
David Hildenbrand381eab42018-10-30 15:10:29 -07001545 }
Yasunori Goto7b78d332007-10-21 16:41:36 -07001546
Toshi Kania96dfdd2017-02-03 13:13:23 -08001547 zone = page_zone(pfn_to_page(valid_start));
Yasunori Goto7b78d332007-10-21 16:41:36 -07001548 node = zone_to_nid(zone);
1549 nr_pages = end_pfn - start_pfn;
1550
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001551 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001552 ret = start_isolate_page_range(start_pfn, end_pfn,
Michal Hockod381c542018-12-28 00:33:56 -08001553 MIGRATE_MOVABLE,
1554 SKIP_HWPOISON | REPORT_FAILURE);
Qian Cai9b7ea462019-03-28 20:43:34 -07001555 if (ret < 0) {
Michal Hocko79605092018-12-28 00:33:49 -08001556 reason = "failure to isolate range";
1557 goto failed_removal;
David Hildenbrand381eab42018-10-30 15:10:29 -07001558 }
Qian Cai9b7ea462019-03-28 20:43:34 -07001559 nr_isolate_pageblock = ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001560
1561 arg.start_pfn = start_pfn;
1562 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001563 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001564
1565 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1566 ret = notifier_to_errno(ret);
Michal Hocko79605092018-12-28 00:33:49 -08001567 if (ret) {
1568 reason = "notifier failure";
1569 goto failed_removal_isolated;
1570 }
Yasunori Goto7b78d332007-10-21 16:41:36 -07001571
Michal Hockobb8965b2018-12-28 00:38:32 -08001572 do {
1573 for (pfn = start_pfn; pfn;) {
1574 if (signal_pending(current)) {
1575 ret = -EINTR;
1576 reason = "signal backoff";
1577 goto failed_removal_isolated;
1578 }
Michal Hocko72b39cf2017-11-15 17:33:34 -08001579
Michal Hockobb8965b2018-12-28 00:38:32 -08001580 cond_resched();
1581 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001582
Michal Hockobb8965b2018-12-28 00:38:32 -08001583 pfn = scan_movable_pages(pfn, end_pfn);
1584 if (pfn) {
1585 /*
1586 * TODO: fatal migration failures should bail
1587 * out
1588 */
1589 do_migrate_range(pfn, end_pfn);
1590 }
1591 }
Michal Hocko72b39cf2017-11-15 17:33:34 -08001592
Michal Hockobb8965b2018-12-28 00:38:32 -08001593 /*
1594 * Dissolve free hugepages in the memory block before doing
1595 * offlining actually in order to make hugetlbfs's object
1596 * counting consistent.
1597 */
1598 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1599 if (ret) {
1600 reason = "failure to dissolve huge pages";
1601 goto failed_removal_isolated;
1602 }
1603 /* check again */
Michal Hocko5557c762019-05-13 17:21:24 -07001604 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn,
1605 NULL, check_pages_isolated_cb);
1606 } while (ret);
Michal Hockobb8965b2018-12-28 00:38:32 -08001607
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001608 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001609 We cannot do rollback at this point. */
Michal Hocko5557c762019-05-13 17:21:24 -07001610 walk_system_ram_range(start_pfn, end_pfn - start_pfn,
1611 &offlined_pages, offline_isolated_pages_cb);
1612 pr_info("Offlined Pages %ld\n", offlined_pages);
Qian Cai9b7ea462019-03-28 20:43:34 -07001613 /*
1614 * Onlining will reset pagetype flags and makes migrate type
1615 * MOVABLE, so just need to decrease the number of isolated
1616 * pageblocks zone counter here.
1617 */
1618 spin_lock_irqsave(&zone->lock, flags);
1619 zone->nr_isolate_pageblock -= nr_isolate_pageblock;
1620 spin_unlock_irqrestore(&zone->lock, flags);
1621
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001622 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001623 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001624 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001625
1626 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001627 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001628 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001629
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001630 init_per_zone_wmark_min();
1631
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001632 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001633 zone_pcp_reset(zone);
Michal Hocko72675e12017-09-06 16:20:24 -07001634 build_all_zonelists(NULL);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001635 } else
1636 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001637
Lai Jiangshand9713672012-12-11 16:01:03 -08001638 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001639 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08001640 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001641 kcompactd_stop(node);
1642 }
Minchan Kimbce73942009-06-16 15:32:50 -07001643
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001644 vm_total_pages = nr_free_pagecache_pages();
1645 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001646
1647 memory_notify(MEM_OFFLINE, &arg);
David Hildenbrand381eab42018-10-30 15:10:29 -07001648 mem_hotplug_done();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001649 return 0;
1650
Michal Hocko79605092018-12-28 00:33:49 -08001651failed_removal_isolated:
1652 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
Qian Caic4efe482019-03-28 20:44:16 -07001653 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001654failed_removal:
Michal Hocko79605092018-12-28 00:33:49 -08001655 pr_debug("memory offlining [mem %#010llx-%#010llx] failed due to %s\n",
Chen Yuconge33e33b2016-03-17 14:19:35 -07001656 (unsigned long long) start_pfn << PAGE_SHIFT,
Michal Hocko79605092018-12-28 00:33:49 -08001657 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1,
1658 reason);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001659 /* pushback to free area */
David Hildenbrand381eab42018-10-30 15:10:29 -07001660 mem_hotplug_done();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001661 return ret;
1662}
Badari Pulavarty71088782008-10-18 20:25:58 -07001663
Wen Congyanga16cee12012-10-08 16:33:58 -07001664int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1665{
Michal Hockoecde0f32017-11-15 17:33:38 -08001666 return __offline_pages(start_pfn, start_pfn + nr_pages);
Wen Congyanga16cee12012-10-08 16:33:58 -07001667}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001668#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07001669
Wen Congyangbbc76be2013-02-22 16:32:54 -08001670/**
1671 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1672 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07001673 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08001674 * @arg: argument passed to func
1675 * @func: callback for each memory section walked
1676 *
1677 * This function walks through all present mem sections in range
1678 * [start_pfn, end_pfn) and call func on each mem section.
1679 *
1680 * Returns the return value of func.
1681 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001682int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08001683 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001684{
Wen Congyange90bdb72012-10-08 16:34:01 -07001685 struct memory_block *mem = NULL;
1686 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001687 unsigned long pfn, section_nr;
1688 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001689
Wen Congyange90bdb72012-10-08 16:34:01 -07001690 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1691 section_nr = pfn_to_section_nr(pfn);
1692 if (!present_section_nr(section_nr))
1693 continue;
1694
1695 section = __nr_to_section(section_nr);
1696 /* same memblock? */
1697 if (mem)
1698 if ((section_nr >= mem->start_section_nr) &&
1699 (section_nr <= mem->end_section_nr))
1700 continue;
1701
1702 mem = find_memory_block_hinted(section, mem);
1703 if (!mem)
1704 continue;
1705
Wen Congyangbbc76be2013-02-22 16:32:54 -08001706 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001707 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001708 kobject_put(&mem->dev.kobj);
1709 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001710 }
1711 }
1712
1713 if (mem)
1714 kobject_put(&mem->dev.kobj);
1715
Wen Congyangbbc76be2013-02-22 16:32:54 -08001716 return 0;
1717}
1718
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001719#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08001720static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001721{
1722 int ret = !is_memblock_offlined(mem);
1723
Randy Dunlap349daa02013-04-29 15:08:49 -07001724 if (unlikely(ret)) {
1725 phys_addr_t beginpa, endpa;
1726
1727 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1728 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Joe Perches756a0252016-03-17 14:19:47 -07001729 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07001730 &beginpa, &endpa);
Wen Congyangbbc76be2013-02-22 16:32:54 -08001731
Pavel Tatashineca499a2019-07-16 16:30:31 -07001732 return -EBUSY;
1733 }
1734 return 0;
Wen Congyangbbc76be2013-02-22 16:32:54 -08001735}
1736
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001737static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08001738{
Tang Chen60a5a192013-02-22 16:33:14 -08001739 int cpu;
1740
1741 for_each_present_cpu(cpu) {
1742 if (cpu_to_node(cpu) == pgdat->node_id)
1743 /*
1744 * the cpu on this node isn't removed, and we can't
1745 * offline this node.
1746 */
1747 return -EBUSY;
1748 }
1749
1750 return 0;
1751}
1752
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001753/**
1754 * try_offline_node
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001755 * @nid: the node ID
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001756 *
1757 * Offline a node if all memory sections and cpus of the node are removed.
1758 *
1759 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1760 * and online/offline operations before this call.
1761 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001762void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001763{
Wen Congyangd822b862013-02-22 16:33:16 -08001764 pg_data_t *pgdat = NODE_DATA(nid);
1765 unsigned long start_pfn = pgdat->node_start_pfn;
1766 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08001767 unsigned long pfn;
1768
1769 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1770 unsigned long section_nr = pfn_to_section_nr(pfn);
1771
1772 if (!present_section_nr(section_nr))
1773 continue;
1774
1775 if (pfn_to_nid(pfn) != nid)
1776 continue;
1777
1778 /*
1779 * some memory sections of this node are not removed, and we
1780 * can't offline node now.
1781 */
1782 return;
1783 }
1784
Michal Hocko46a36792018-12-28 00:34:13 -08001785 if (check_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08001786 return;
1787
1788 /*
1789 * all memory/cpu of this node are removed, we can offline this
1790 * node now.
1791 */
1792 node_set_offline(nid);
1793 unregister_one_node(nid);
1794}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001795EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001796
David Hildenbrandd9eb1412019-05-13 17:21:33 -07001797static void __release_memory_resource(resource_size_t start,
1798 resource_size_t size)
1799{
1800 int ret;
1801
1802 /*
1803 * When removing memory in the same granularity as it was added,
1804 * this function never fails. It might only fail if resources
1805 * have to be adjusted or split. We'll ignore the error, as
1806 * removing of memory cannot fail.
1807 */
1808 ret = release_mem_region_adjustable(&iomem_resource, start, size);
1809 if (ret) {
1810 resource_size_t endres = start + size - 1;
1811
1812 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
1813 &start, &endres, ret);
1814 }
1815}
1816
Pavel Tatashineca499a2019-07-16 16:30:31 -07001817static int __ref try_remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001818{
Pavel Tatashineca499a2019-07-16 16:30:31 -07001819 int rc = 0;
Wen Congyang993c1aa2013-02-22 16:32:50 -08001820
Toshi Kani27356f52013-09-11 14:21:49 -07001821 BUG_ON(check_hotplug_memory_range(start, size));
1822
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001823 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001824
1825 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001826 * All memory blocks must be offlined before removing memory. Check
Pavel Tatashineca499a2019-07-16 16:30:31 -07001827 * whether all memory blocks in question are offline and return error
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001828 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001829 */
Pavel Tatashineca499a2019-07-16 16:30:31 -07001830 rc = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
1831 check_memblock_offlined_cb);
1832 if (rc)
1833 goto done;
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001834
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001835 /* remove memmap entry */
1836 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07001837 memblock_free(start, size);
1838 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001839
Oscar Salvador2c2a5af2018-12-28 00:36:22 -08001840 arch_remove_memory(nid, start, size, NULL);
David Hildenbrandd9eb1412019-05-13 17:21:33 -07001841 __release_memory_resource(start, size);
Wen Congyang24d335c2013-02-22 16:32:58 -08001842
Tang Chen60a5a192013-02-22 16:33:14 -08001843 try_offline_node(nid);
1844
Pavel Tatashineca499a2019-07-16 16:30:31 -07001845done:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001846 mem_hotplug_done();
Pavel Tatashineca499a2019-07-16 16:30:31 -07001847 return rc;
Badari Pulavarty71088782008-10-18 20:25:58 -07001848}
David Hildenbrandd15e5922018-10-30 15:10:18 -07001849
Pavel Tatashineca499a2019-07-16 16:30:31 -07001850/**
1851 * remove_memory
1852 * @nid: the node ID
1853 * @start: physical address of the region to remove
1854 * @size: size of the region to remove
1855 *
1856 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1857 * and online/offline operations before this call, as required by
1858 * try_offline_node().
1859 */
1860void __remove_memory(int nid, u64 start, u64 size)
David Hildenbrandd15e5922018-10-30 15:10:18 -07001861{
Pavel Tatashineca499a2019-07-16 16:30:31 -07001862
1863 /*
1864 * trigger BUG() is some memory is not offlined prior to calling this
1865 * function
1866 */
1867 if (try_remove_memory(nid, start, size))
1868 BUG();
1869}
1870
1871/*
1872 * Remove memory if every memory block is offline, otherwise return -EBUSY is
1873 * some memory is not offline
1874 */
1875int remove_memory(int nid, u64 start, u64 size)
1876{
1877 int rc;
1878
David Hildenbrandd15e5922018-10-30 15:10:18 -07001879 lock_device_hotplug();
Pavel Tatashineca499a2019-07-16 16:30:31 -07001880 rc = try_remove_memory(nid, start, size);
David Hildenbrandd15e5922018-10-30 15:10:18 -07001881 unlock_device_hotplug();
Pavel Tatashineca499a2019-07-16 16:30:31 -07001882
1883 return rc;
David Hildenbrandd15e5922018-10-30 15:10:18 -07001884}
Badari Pulavarty71088782008-10-18 20:25:58 -07001885EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02001886#endif /* CONFIG_MEMORY_HOTREMOVE */