blob: 1fa4a4d72ecc4790c2dfebd66154c7bf876acf7e [file] [log] [blame]
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -07001/*
2 * linux/mm/page_isolation.c
3 */
4
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -07005#include <linux/mm.h>
6#include <linux/page-isolation.h>
7#include <linux/pageblock-flags.h>
Minchan Kimee6f5092012-07-31 16:43:50 -07008#include <linux/memory.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07009#include <linux/hugetlb.h>
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070010#include "internal.h"
11
Wen Congyangb023f462012-12-11 16:00:45 -080012int set_migratetype_isolate(struct page *page, bool skip_hwpoisoned_pages)
Minchan Kimee6f5092012-07-31 16:43:50 -070013{
14 struct zone *zone;
15 unsigned long flags, pfn;
16 struct memory_isolate_notify arg;
17 int notifier_ret;
18 int ret = -EBUSY;
19
20 zone = page_zone(page);
21
22 spin_lock_irqsave(&zone->lock, flags);
23
24 pfn = page_to_pfn(page);
25 arg.start_pfn = pfn;
26 arg.nr_pages = pageblock_nr_pages;
27 arg.pages_found = 0;
28
29 /*
30 * It may be possible to isolate a pageblock even if the
31 * migratetype is not MIGRATE_MOVABLE. The memory isolation
32 * notifier chain is used by balloon drivers to return the
33 * number of pages in a range that are held by the balloon
34 * driver to shrink memory. If all the pages are accounted for
35 * by balloons, are free, or on the LRU, isolation can continue.
36 * Later, for example, when memory hotplug notifier runs, these
37 * pages reported as "can be isolated" should be isolated(freed)
38 * by the balloon driver through the memory notifier chain.
39 */
40 notifier_ret = memory_isolate_notify(MEM_ISOLATE_COUNT, &arg);
41 notifier_ret = notifier_to_errno(notifier_ret);
42 if (notifier_ret)
43 goto out;
44 /*
45 * FIXME: Now, memory hotplug doesn't call shrink_slab() by itself.
46 * We just check MOVABLE pages.
47 */
Wen Congyangb023f462012-12-11 16:00:45 -080048 if (!has_unmovable_pages(zone, page, arg.pages_found,
49 skip_hwpoisoned_pages))
Minchan Kimee6f5092012-07-31 16:43:50 -070050 ret = 0;
51
52 /*
53 * immobile means "not-on-lru" paes. If immobile is larger than
54 * removable-by-driver pages reported by notifier, we'll fail.
55 */
56
57out:
58 if (!ret) {
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070059 unsigned long nr_pages;
Bartlomiej Zolnierkiewiczd1ce7492012-10-08 16:32:02 -070060 int migratetype = get_pageblock_migratetype(page);
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070061
Bartlomiej Zolnierkiewicza4584312013-01-04 15:35:08 -080062 set_pageblock_migratetype(page, MIGRATE_ISOLATE);
Joonsoo Kimad53f922014-11-13 15:19:11 -080063 zone->nr_isolate_pageblock++;
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070064 nr_pages = move_freepages_block(zone, page, MIGRATE_ISOLATE);
65
Bartlomiej Zolnierkiewiczd1ce7492012-10-08 16:32:02 -070066 __mod_zone_freepage_state(zone, -nr_pages, migratetype);
Minchan Kimee6f5092012-07-31 16:43:50 -070067 }
68
69 spin_unlock_irqrestore(&zone->lock, flags);
70 if (!ret)
71 drain_all_pages();
72 return ret;
73}
74
75void unset_migratetype_isolate(struct page *page, unsigned migratetype)
76{
77 struct zone *zone;
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070078 unsigned long flags, nr_pages;
79
Minchan Kimee6f5092012-07-31 16:43:50 -070080 zone = page_zone(page);
81 spin_lock_irqsave(&zone->lock, flags);
82 if (get_pageblock_migratetype(page) != MIGRATE_ISOLATE)
83 goto out;
Bartlomiej Zolnierkiewicz2139cbe2012-10-08 16:32:00 -070084 nr_pages = move_freepages_block(zone, page, migratetype);
Bartlomiej Zolnierkiewiczd1ce7492012-10-08 16:32:02 -070085 __mod_zone_freepage_state(zone, nr_pages, migratetype);
Bartlomiej Zolnierkiewicza4584312013-01-04 15:35:08 -080086 set_pageblock_migratetype(page, migratetype);
Joonsoo Kimad53f922014-11-13 15:19:11 -080087 zone->nr_isolate_pageblock--;
Minchan Kimee6f5092012-07-31 16:43:50 -070088out:
89 spin_unlock_irqrestore(&zone->lock, flags);
90}
91
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070092static inline struct page *
93__first_valid_page(unsigned long pfn, unsigned long nr_pages)
94{
95 int i;
96 for (i = 0; i < nr_pages; i++)
97 if (pfn_valid_within(pfn + i))
98 break;
99 if (unlikely(i == nr_pages))
100 return NULL;
101 return pfn_to_page(pfn + i);
102}
103
104/*
105 * start_isolate_page_range() -- make page-allocation-type of range of pages
106 * to be MIGRATE_ISOLATE.
107 * @start_pfn: The lower PFN of the range to be isolated.
108 * @end_pfn: The upper PFN of the range to be isolated.
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200109 * @migratetype: migrate type to set in error recovery.
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700110 *
111 * Making page-allocation-type to be MIGRATE_ISOLATE means free pages in
112 * the range will never be allocated. Any free pages and pages freed in the
113 * future will not be allocated again.
114 *
115 * start_pfn/end_pfn must be aligned to pageblock_order.
116 * Returns 0 on success and -EBUSY if any part of range cannot be isolated.
117 */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200118int start_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangb023f462012-12-11 16:00:45 -0800119 unsigned migratetype, bool skip_hwpoisoned_pages)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700120{
121 unsigned long pfn;
122 unsigned long undo_pfn;
123 struct page *page;
124
125 BUG_ON((start_pfn) & (pageblock_nr_pages - 1));
126 BUG_ON((end_pfn) & (pageblock_nr_pages - 1));
127
128 for (pfn = start_pfn;
129 pfn < end_pfn;
130 pfn += pageblock_nr_pages) {
131 page = __first_valid_page(pfn, pageblock_nr_pages);
Wen Congyangb023f462012-12-11 16:00:45 -0800132 if (page &&
133 set_migratetype_isolate(page, skip_hwpoisoned_pages)) {
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700134 undo_pfn = pfn;
135 goto undo;
136 }
137 }
138 return 0;
139undo:
140 for (pfn = start_pfn;
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800141 pfn < undo_pfn;
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700142 pfn += pageblock_nr_pages)
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200143 unset_migratetype_isolate(pfn_to_page(pfn), migratetype);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700144
145 return -EBUSY;
146}
147
148/*
149 * Make isolated pages available again.
150 */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200151int undo_isolate_page_range(unsigned long start_pfn, unsigned long end_pfn,
152 unsigned migratetype)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700153{
154 unsigned long pfn;
155 struct page *page;
156 BUG_ON((start_pfn) & (pageblock_nr_pages - 1));
157 BUG_ON((end_pfn) & (pageblock_nr_pages - 1));
158 for (pfn = start_pfn;
159 pfn < end_pfn;
160 pfn += pageblock_nr_pages) {
161 page = __first_valid_page(pfn, pageblock_nr_pages);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800162 if (!page || get_pageblock_migratetype(page) != MIGRATE_ISOLATE)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700163 continue;
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200164 unset_migratetype_isolate(page, migratetype);
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700165 }
166 return 0;
167}
168/*
169 * Test all pages in the range is free(means isolated) or not.
170 * all pages in [start_pfn...end_pfn) must be in the same zone.
171 * zone->lock must be held before call this.
172 *
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200173 * Returns 1 if all pages in the range are isolated.
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700174 */
175static int
Wen Congyangb023f462012-12-11 16:00:45 -0800176__test_page_isolated_in_pageblock(unsigned long pfn, unsigned long end_pfn,
177 bool skip_hwpoisoned_pages)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700178{
179 struct page *page;
180
181 while (pfn < end_pfn) {
182 if (!pfn_valid_within(pfn)) {
183 pfn++;
184 continue;
185 }
186 page = pfn_to_page(pfn);
Minchan Kim41d575a2012-10-08 16:32:14 -0700187 if (PageBuddy(page)) {
Minchan Kim435b4052012-10-08 16:32:16 -0700188 /*
189 * If race between isolatation and allocation happens,
190 * some free pages could be in MIGRATE_MOVABLE list
191 * although pageblock's migratation type of the page
192 * is MIGRATE_ISOLATE. Catch it and move the page into
193 * MIGRATE_ISOLATE list.
194 */
195 if (get_freepage_migratetype(page) != MIGRATE_ISOLATE) {
196 struct page *end_page;
197
198 end_page = page + (1 << page_order(page)) - 1;
199 move_freepages(page_zone(page), page, end_page,
200 MIGRATE_ISOLATE);
201 }
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700202 pfn += 1 << page_order(page);
Minchan Kim41d575a2012-10-08 16:32:14 -0700203 }
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700204 else if (page_count(page) == 0 &&
Minchan Kimb12c4ad2012-10-08 16:32:08 -0700205 get_freepage_migratetype(page) == MIGRATE_ISOLATE)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700206 pfn += 1;
Wen Congyangb023f462012-12-11 16:00:45 -0800207 else if (skip_hwpoisoned_pages && PageHWPoison(page)) {
208 /*
209 * The HWPoisoned page may be not in buddy
210 * system, and page_count() is not 0.
211 */
212 pfn++;
213 continue;
214 }
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700215 else
216 break;
217 }
218 if (pfn < end_pfn)
219 return 0;
220 return 1;
221}
222
Wen Congyangb023f462012-12-11 16:00:45 -0800223int test_pages_isolated(unsigned long start_pfn, unsigned long end_pfn,
224 bool skip_hwpoisoned_pages)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700225{
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700226 unsigned long pfn, flags;
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700227 struct page *page;
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700228 struct zone *zone;
229 int ret;
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700230
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700231 /*
Tang Chen85dbe702013-06-20 18:10:19 +0800232 * Note: pageblock_nr_pages != MAX_ORDER. Then, chunks of free pages
233 * are not aligned to pageblock_nr_pages.
234 * Then we just check migratetype first.
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700235 */
236 for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) {
237 page = __first_valid_page(pfn, pageblock_nr_pages);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800238 if (page && get_pageblock_migratetype(page) != MIGRATE_ISOLATE)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700239 break;
240 }
Gerald Schaefera70dcb92008-11-06 12:53:36 -0800241 page = __first_valid_page(start_pfn, end_pfn - start_pfn);
242 if ((pfn < end_pfn) || !page)
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700243 return -EBUSY;
Tang Chen85dbe702013-06-20 18:10:19 +0800244 /* Check all pages are free or marked as ISOLATED */
Gerald Schaefera70dcb92008-11-06 12:53:36 -0800245 zone = page_zone(page);
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700246 spin_lock_irqsave(&zone->lock, flags);
Wen Congyangb023f462012-12-11 16:00:45 -0800247 ret = __test_page_isolated_in_pageblock(start_pfn, end_pfn,
248 skip_hwpoisoned_pages);
Gerald Schaefer6c1b7f62008-10-02 14:50:16 -0700249 spin_unlock_irqrestore(&zone->lock, flags);
250 return ret ? 0 : -EBUSY;
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -0700251}
Minchan Kim723a0642012-10-08 16:32:52 -0700252
253struct page *alloc_migrate_target(struct page *page, unsigned long private,
254 int **resultp)
255{
256 gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
257
Naoya Horiguchic8721bb2013-09-11 14:22:09 -0700258 /*
259 * TODO: allocate a destination hugepage from a nearest neighbor node,
260 * accordance with memory policy of the user process if possible. For
261 * now as a simple work-around, we use the next node for destination.
262 */
263 if (PageHuge(page)) {
264 nodemask_t src = nodemask_of_node(page_to_nid(page));
265 nodemask_t dst;
266 nodes_complement(dst, src);
267 return alloc_huge_page_node(page_hstate(compound_head(page)),
268 next_node(page_to_nid(page), dst));
269 }
270
Minchan Kim723a0642012-10-08 16:32:52 -0700271 if (PageHighMem(page))
272 gfp_mask |= __GFP_HIGHMEM;
273
274 return alloc_page(gfp_mask);
275}