blob: 89c19c0feadb95374a9724af6d98f962c1b8768b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -07002/*
3 * linux/mm/page_isolation.c
4 */
5
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -07006#include <linux/mm.h>
7#include <linux/page-isolation.h>
8#include <linux/pageblock-flags.h>
Minchan Kimee6f5092012-07-31 16:43:50 -07009#include <linux/memory.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070010#include <linux/hugetlb.h>
Joonsoo Kim83358ec2016-07-26 15:23:43 -070011#include <linux/page_owner.h>
Michal Hocko8b913232017-07-10 15:48:47 -070012#include <linux/migrate.h>
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -070013#include "internal.h"
14
Joonsoo Kim0f0848e2016-01-14 15:18:42 -080015#define CREATE_TRACE_POINTS
16#include <trace/events/page_isolation.h>
17
Michal Hockod381c542018-12-28 00:33:56 -080018static int set_migratetype_isolate(struct page *page, int migratetype, int isol_flags)
Minchan Kimee6f5092012-07-31 16:43:50 -070019{
20 struct zone *zone;
21 unsigned long flags, pfn;
22 struct memory_isolate_notify arg;
23 int notifier_ret;
24 int ret = -EBUSY;
25
26 zone = page_zone(page);
27
28 spin_lock_irqsave(&zone->lock, flags);
29
Mike Kravetz2c7452a2018-04-05 16:25:26 -070030 /*
31 * We assume the caller intended to SET migrate type to isolate.
32 * If it is already set, then someone else must have raced and
33 * set it before us. Return -EBUSY
34 */
35 if (is_migrate_isolate_page(page))
36 goto out;
37
Minchan Kimee6f5092012-07-31 16:43:50 -070038 pfn = page_to_pfn(page);
39 arg.start_pfn = pfn;
40 arg.nr_pages = pageblock_nr_pages;
41 arg.pages_found = 0;
42
43 /*
44 * It may be possible to isolate a pageblock even if the
45 * migratetype is not MIGRATE_MOVABLE. The memory isolation
46 * notifier chain is used by balloon drivers to return the
47 * number of pages in a range that are held by the balloon
48 * driver to shrink memory. If all the pages are accounted for
49 * by balloons, are free, or on the LRU, isolation can continue.
50 * Later, for example, when memory hotplug notifier runs, these
51 * pages reported as "can be isolated" should be isolated(freed)
52 * by the balloon driver through the memory notifier chain.
53 */
54 notifier_ret = memory_isolate_notify(MEM_ISOLATE_COUNT, &arg);
55 notifier_ret = notifier_to_errno(notifier_ret);
56 if (notifier_ret)
57 goto out;
58 /*
59 * FIXME: Now, memory hotplug doesn't call shrink_slab() by itself.
60 * We just check MOVABLE pages.
61 */
Qian Caif5777bc2019-03-28 20:44:21 -070062 if (!has_unmovable_pages(zone, page, arg.pages_found, migratetype,
63 isol_flags))
Minchan Kimee6f5092012-07-31 16:43:50 -070064 ret = 0;
65
66 /*
Yisheng Xieac34dcd2016-10-07 17:01:16 -070067 * immobile means "not-on-lru" pages. If immobile is larger than
Minchan Kimee6f5092012-07-31 16:43:50 -070068 * removable-by-driver pages reported by notifier, we'll fail.
69 */
70
71out:
72 if (!ret) {
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070073 unsigned long nr_pages;
Michal Hocko4da2ce22017-11-15 17:33:26 -080074 int mt = get_pageblock_migratetype(page);
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070075
Bartlomiej Zolnierkiewicza4584312013-01-04 15:35:08 -080076 set_pageblock_migratetype(page, MIGRATE_ISOLATE);
Joonsoo Kimad53f922014-11-13 15:19:11 -080077 zone->nr_isolate_pageblock++;
Vlastimil Babka02aa0cd2017-05-08 15:54:40 -070078 nr_pages = move_freepages_block(zone, page, MIGRATE_ISOLATE,
79 NULL);
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070080
Michal Hocko4da2ce22017-11-15 17:33:26 -080081 __mod_zone_freepage_state(zone, -nr_pages, mt);
Minchan Kimee6f5092012-07-31 16:43:50 -070082 }
83
84 spin_unlock_irqrestore(&zone->lock, flags);
85 if (!ret)
Vlastimil Babkaec25af82014-12-10 15:43:04 -080086 drain_all_pages(zone);
Minchan Kimee6f5092012-07-31 16:43:50 -070087 return ret;
88}
89
Naoya Horiguchic5b4e1b2015-09-08 15:02:09 -070090static void unset_migratetype_isolate(struct page *page, unsigned migratetype)
Minchan Kimee6f5092012-07-31 16:43:50 -070091{
92 struct zone *zone;
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070093 unsigned long flags, nr_pages;
Joonsoo Kime3a27132016-07-26 15:24:01 -070094 bool isolated_page = false;
Joonsoo Kim3c605092014-11-13 15:19:21 -080095 unsigned int order;
Vlastimil Babka76741e72017-02-22 15:41:48 -080096 unsigned long pfn, buddy_pfn;
Joonsoo Kim3c605092014-11-13 15:19:21 -080097 struct page *buddy;
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070098
Minchan Kimee6f5092012-07-31 16:43:50 -070099 zone = page_zone(page);
100 spin_lock_irqsave(&zone->lock, flags);
Xishi Qiubbf9ce92017-05-03 14:52:55 -0700101 if (!is_migrate_isolate_page(page))
Minchan Kimee6f5092012-07-31 16:43:50 -0700102 goto out;
Joonsoo Kim3c605092014-11-13 15:19:21 -0800103
104 /*
105 * Because freepage with more than pageblock_order on isolated
106 * pageblock is restricted to merge due to freepage counting problem,
107 * it is possible that there is free buddy page.
108 * move_freepages_block() doesn't care of merge so we need other
109 * approach in order to merge them. Isolation and free will make
110 * these pages to be merged.
111 */
112 if (PageBuddy(page)) {
113 order = page_order(page);
114 if (order >= pageblock_order) {
Vlastimil Babka76741e72017-02-22 15:41:48 -0800115 pfn = page_to_pfn(page);
116 buddy_pfn = __find_buddy_pfn(pfn, order);
117 buddy = page + (buddy_pfn - pfn);
Joonsoo Kim3c605092014-11-13 15:19:21 -0800118
Vlastimil Babka13ad59d2017-02-22 15:41:51 -0800119 if (pfn_valid_within(buddy_pfn) &&
Hui Zhu1ae70132015-05-14 15:17:04 -0700120 !is_migrate_isolate_page(buddy)) {
Joonsoo Kim3c605092014-11-13 15:19:21 -0800121 __isolate_free_page(page, order);
Joonsoo Kime3a27132016-07-26 15:24:01 -0700122 isolated_page = true;
Joonsoo Kim3c605092014-11-13 15:19:21 -0800123 }
124 }
125 }
126
127 /*
128 * If we isolate freepage with more than pageblock_order, there
129 * should be no freepage in the range, so we could avoid costly
130 * pageblock scanning for freepage moving.
131 */
132 if (!isolated_page) {
Vlastimil Babka02aa0cd2017-05-08 15:54:40 -0700133 nr_pages = move_freepages_block(zone, page, migratetype, NULL);
Joonsoo Kim3c605092014-11-13 15:19:21 -0800134 __mod_zone_freepage_state(zone, nr_pages, migratetype);
135 }
Bartlomiej Zolnierkiewicza4584312013-01-04 15:35:08 -0800136 set_pageblock_migratetype(page, migratetype);
Joonsoo Kimad53f922014-11-13 15:19:11 -0800137 zone->nr_isolate_pageblock--;
Minchan Kimee6f5092012-07-31 16:43:50 -0700138out:
139 spin_unlock_irqrestore(&zone->lock, flags);
Joonsoo Kim83358ec2016-07-26 15:23:43 -0700140 if (isolated_page) {
Joonsoo Kim46f24fd2016-07-26 15:23:58 -0700141 post_alloc_hook(page, order, __GFP_MOVABLE);
Joonsoo Kime3a27132016-07-26 15:24:01 -0700142 __free_pages(page, order);
Joonsoo Kim83358ec2016-07-26 15:23:43 -0700143 }
Minchan Kimee6f5092012-07-31 16:43:50 -0700144}
145
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700146static inline struct page *
147__first_valid_page(unsigned long pfn, unsigned long nr_pages)
148{
149 int i;
Michal Hocko2ce13642017-07-06 15:38:04 -0700150
151 for (i = 0; i < nr_pages; i++) {
152 struct page *page;
153
Michal Hocko2ce13642017-07-06 15:38:04 -0700154 page = pfn_to_online_page(pfn + i);
155 if (!page)
156 continue;
157 return page;
158 }
159 return NULL;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700160}
161
Qian Cai9b7ea462019-03-28 20:43:34 -0700162/**
163 * start_isolate_page_range() - make page-allocation-type of range of pages to
164 * be MIGRATE_ISOLATE.
165 * @start_pfn: The lower PFN of the range to be isolated.
166 * @end_pfn: The upper PFN of the range to be isolated.
167 * start_pfn/end_pfn must be aligned to pageblock_order.
168 * @migratetype: Migrate type to set in error recovery.
169 * @flags: The following flags are allowed (they can be combined in
170 * a bit mask)
171 * SKIP_HWPOISON - ignore hwpoison pages
172 * REPORT_FAILURE - report details about the failure to
173 * isolate the range
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700174 *
175 * Making page-allocation-type to be MIGRATE_ISOLATE means free pages in
176 * the range will never be allocated. Any free pages and pages freed in the
Qian Cai9b7ea462019-03-28 20:43:34 -0700177 * future will not be allocated again. If specified range includes migrate types
178 * other than MOVABLE or CMA, this will fail with -EBUSY. For isolating all
179 * pages in the range finally, the caller have to free all pages in the range.
180 * test_page_isolated() can be used for test it.
Mike Kravetz2c7452a2018-04-05 16:25:26 -0700181 *
182 * There is no high level synchronization mechanism that prevents two threads
Qian Cai9b7ea462019-03-28 20:43:34 -0700183 * from trying to isolate overlapping ranges. If this happens, one thread
Mike Kravetz2c7452a2018-04-05 16:25:26 -0700184 * will notice pageblocks in the overlapping range already set to isolate.
185 * This happens in set_migratetype_isolate, and set_migratetype_isolate
Qian Cai9b7ea462019-03-28 20:43:34 -0700186 * returns an error. We then clean up by restoring the migration type on
187 * pageblocks we may have modified and return -EBUSY to caller. This
Mike Kravetz2c7452a2018-04-05 16:25:26 -0700188 * prevents two threads from simultaneously working on overlapping ranges.
Qian Cai9b7ea462019-03-28 20:43:34 -0700189 *
190 * Return: the number of isolated pageblocks on success and -EBUSY if any part
191 * of range cannot be isolated.
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700192 */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200193int start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
Michal Hockod381c542018-12-28 00:33:56 -0800194 unsigned migratetype, int flags)
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700195{
196 unsigned long pfn;
197 unsigned long undo_pfn;
198 struct page *page;
Qian Cai9b7ea462019-03-28 20:43:34 -0700199 int nr_isolate_pageblock = 0;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700200
Naoya Horiguchifec174d2016-01-14 15:22:13 -0800201 BUG_ON(!IS_ALIGNED(start_pfn, pageblock_nr_pages));
202 BUG_ON(!IS_ALIGNED(end_pfn, pageblock_nr_pages));
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700203
204 for (pfn = start_pfn;
205 pfn < end_pfn;
206 pfn += pageblock_nr_pages) {
207 page = __first_valid_page(pfn, pageblock_nr_pages);
Qian Cai9b7ea462019-03-28 20:43:34 -0700208 if (page) {
209 if (set_migratetype_isolate(page, migratetype, flags)) {
210 undo_pfn = pfn;
211 goto undo;
212 }
213 nr_isolate_pageblock++;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700214 }
215 }
Qian Cai9b7ea462019-03-28 20:43:34 -0700216 return nr_isolate_pageblock;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700217undo:
218 for (pfn = start_pfn;
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800219 pfn < undo_pfn;
Michal Hocko2ce13642017-07-06 15:38:04 -0700220 pfn += pageblock_nr_pages) {
221 struct page *page = pfn_to_online_page(pfn);
222 if (!page)
223 continue;
224 unset_migratetype_isolate(page, migratetype);
225 }
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700226
227 return -EBUSY;
228}
229
230/*
231 * Make isolated pages available again.
232 */
Pingfan Liu1fcf0a52019-07-11 20:54:49 -0700233void undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200234 unsigned migratetype)
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700235{
236 unsigned long pfn;
237 struct page *page;
Wang Xiaoqiang6f8d2b82016-01-15 16:57:13 -0800238
239 BUG_ON(!IS_ALIGNED(start_pfn, pageblock_nr_pages));
240 BUG_ON(!IS_ALIGNED(end_pfn, pageblock_nr_pages));
241
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700242 for (pfn = start_pfn;
243 pfn < end_pfn;
244 pfn += pageblock_nr_pages) {
245 page = __first_valid_page(pfn, pageblock_nr_pages);
Xishi Qiubbf9ce92017-05-03 14:52:55 -0700246 if (!page || !is_migrate_isolate_page(page))
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700247 continue;
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200248 unset_migratetype_isolate(page, migratetype);
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700249 }
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700250}
251/*
252 * Test all pages in the range is free(means isolated) or not.
253 * all pages in [start_pfn...end_pfn) must be in the same zone.
254 * zone->lock must be held before call this.
255 *
Neil Zhangec3b6882016-04-01 14:31:37 -0700256 * Returns the last tested pfn.
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700257 */
Joonsoo Kimfea85cf2016-01-14 15:18:39 -0800258static unsigned long
Wen Congyangb023f462012-12-11 16:00:45 -0800259__test_page_isolated_in_pageblock(unsigned long pfn, unsigned long end_pfn,
260 bool skip_hwpoisoned_pages)
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700261{
262 struct page *page;
263
264 while (pfn < end_pfn) {
265 if (!pfn_valid_within(pfn)) {
266 pfn++;
267 continue;
268 }
269 page = pfn_to_page(pfn);
Vlastimil Babkaaa016d12015-09-08 15:01:22 -0700270 if (PageBuddy(page))
Minchan Kim435b4052012-10-08 16:32:16 -0700271 /*
Vlastimil Babkaaa016d12015-09-08 15:01:22 -0700272 * If the page is on a free list, it has to be on
273 * the correct MIGRATE_ISOLATE freelist. There is no
274 * simple way to verify that as VM_BUG_ON(), though.
Minchan Kim435b4052012-10-08 16:32:16 -0700275 */
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700276 pfn += 1 << page_order(page);
Vlastimil Babkaaa016d12015-09-08 15:01:22 -0700277 else if (skip_hwpoisoned_pages && PageHWPoison(page))
278 /* A HWPoisoned page cannot be also PageBuddy */
Wen Congyangb023f462012-12-11 16:00:45 -0800279 pfn++;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700280 else
281 break;
282 }
Joonsoo Kimfea85cf2016-01-14 15:18:39 -0800283
284 return pfn;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700285}
286
Joonsoo Kimb9eb6312016-05-19 17:12:06 -0700287/* Caller should ensure that requested range is in a single zone */
Wen Congyangb023f462012-12-11 16:00:45 -0800288int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
289 bool skip_hwpoisoned_pages)
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700290{
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700291 unsigned long pfn, flags;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700292 struct page *page;
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700293 struct zone *zone;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700294
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700295 /*
Tang Chen85dbe702013-06-20 18:10:19 +0800296 * Note: pageblock_nr_pages != MAX_ORDER. Then, chunks of free pages
297 * are not aligned to pageblock_nr_pages.
298 * Then we just check migratetype first.
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700299 */
300 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
301 page = __first_valid_page(pfn, pageblock_nr_pages);
Xishi Qiubbf9ce92017-05-03 14:52:55 -0700302 if (page && !is_migrate_isolate_page(page))
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700303 break;
304 }
Gerald Schaefera70dcb92008-11-06 12:53:36 -0800305 page = __first_valid_page(start_pfn, end_pfn - start_pfn);
306 if ((pfn < end_pfn) || !page)
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700307 return -EBUSY;
Tang Chen85dbe702013-06-20 18:10:19 +0800308 /* Check all pages are free or marked as ISOLATED */
Gerald Schaefera70dcb92008-11-06 12:53:36 -0800309 zone = page_zone(page);
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700310 spin_lock_irqsave(&zone->lock, flags);
Joonsoo Kimfea85cf2016-01-14 15:18:39 -0800311 pfn = __test_page_isolated_in_pageblock(start_pfn, end_pfn,
Wen Congyangb023f462012-12-11 16:00:45 -0800312 skip_hwpoisoned_pages);
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700313 spin_unlock_irqrestore(&zone->lock, flags);
Joonsoo Kimfea85cf2016-01-14 15:18:39 -0800314
Joonsoo Kim0f0848e2016-01-14 15:18:42 -0800315 trace_test_pages_isolated(start_pfn, end_pfn, pfn);
316
Joonsoo Kimfea85cf2016-01-14 15:18:39 -0800317 return pfn < end_pfn ? -EBUSY : 0;
KAMEZAWA Hiroyukia5d76b542007-10-16 01:26:11 -0700318}
Minchan Kim723a0642012-10-08 16:32:52 -0700319
Michal Hocko666feb22018-04-10 16:30:03 -0700320struct page *alloc_migrate_target(struct page *page, unsigned long private)
Minchan Kim723a0642012-10-08 16:32:52 -0700321{
Michal Hocko8b913232017-07-10 15:48:47 -0700322 return new_page_nodemask(page, numa_node_id(), &node_states[N_MEMORY]);
Minchan Kim723a0642012-10-08 16:32:52 -0700323}