2 * linux/mm/page_isolation.c
6 #include <linux/page-isolation.h>
7 #include <linux/pageblock-flags.h>
8 #include <linux/memory.h>
11 /* called while holding zone->lock */
12 static void set_pageblock_isolate(struct page
*page
)
14 if (get_pageblock_migratetype(page
) == MIGRATE_ISOLATE
)
17 set_pageblock_migratetype(page
, MIGRATE_ISOLATE
);
18 page_zone(page
)->nr_pageblock_isolate
++;
21 /* called while holding zone->lock */
22 static void restore_pageblock_isolate(struct page
*page
, int migratetype
)
24 struct zone
*zone
= page_zone(page
);
25 if (WARN_ON(get_pageblock_migratetype(page
) != MIGRATE_ISOLATE
))
28 BUG_ON(zone
->nr_pageblock_isolate
<= 0);
29 set_pageblock_migratetype(page
, migratetype
);
30 zone
->nr_pageblock_isolate
--;
33 int set_migratetype_isolate(struct page
*page
, bool skip_hwpoisoned_pages
)
36 unsigned long flags
, pfn
;
37 struct memory_isolate_notify arg
;
41 zone
= page_zone(page
);
43 spin_lock_irqsave(&zone
->lock
, flags
);
45 pfn
= page_to_pfn(page
);
47 arg
.nr_pages
= pageblock_nr_pages
;
51 * It may be possible to isolate a pageblock even if the
52 * migratetype is not MIGRATE_MOVABLE. The memory isolation
53 * notifier chain is used by balloon drivers to return the
54 * number of pages in a range that are held by the balloon
55 * driver to shrink memory. If all the pages are accounted for
56 * by balloons, are free, or on the LRU, isolation can continue.
57 * Later, for example, when memory hotplug notifier runs, these
58 * pages reported as "can be isolated" should be isolated(freed)
59 * by the balloon driver through the memory notifier chain.
61 notifier_ret
= memory_isolate_notify(MEM_ISOLATE_COUNT
, &arg
);
62 notifier_ret
= notifier_to_errno(notifier_ret
);
66 * FIXME: Now, memory hotplug doesn't call shrink_slab() by itself.
67 * We just check MOVABLE pages.
69 if (!has_unmovable_pages(zone
, page
, arg
.pages_found
,
70 skip_hwpoisoned_pages
))
74 * immobile means "not-on-lru" paes. If immobile is larger than
75 * removable-by-driver pages reported by notifier, we'll fail.
80 unsigned long nr_pages
;
81 int migratetype
= get_pageblock_migratetype(page
);
83 set_pageblock_isolate(page
);
84 nr_pages
= move_freepages_block(zone
, page
, MIGRATE_ISOLATE
);
86 __mod_zone_freepage_state(zone
, -nr_pages
, migratetype
);
89 spin_unlock_irqrestore(&zone
->lock
, flags
);
95 void unset_migratetype_isolate(struct page
*page
, unsigned migratetype
)
98 unsigned long flags
, nr_pages
;
100 zone
= page_zone(page
);
101 spin_lock_irqsave(&zone
->lock
, flags
);
102 if (get_pageblock_migratetype(page
) != MIGRATE_ISOLATE
)
104 nr_pages
= move_freepages_block(zone
, page
, migratetype
);
105 __mod_zone_freepage_state(zone
, nr_pages
, migratetype
);
106 restore_pageblock_isolate(page
, migratetype
);
108 spin_unlock_irqrestore(&zone
->lock
, flags
);
111 static inline struct page
*
112 __first_valid_page(unsigned long pfn
, unsigned long nr_pages
)
115 for (i
= 0; i
< nr_pages
; i
++)
116 if (pfn_valid_within(pfn
+ i
))
118 if (unlikely(i
== nr_pages
))
120 return pfn_to_page(pfn
+ i
);
124 * start_isolate_page_range() -- make page-allocation-type of range of pages
125 * to be MIGRATE_ISOLATE.
126 * @start_pfn: The lower PFN of the range to be isolated.
127 * @end_pfn: The upper PFN of the range to be isolated.
128 * @migratetype: migrate type to set in error recovery.
130 * Making page-allocation-type to be MIGRATE_ISOLATE means free pages in
131 * the range will never be allocated. Any free pages and pages freed in the
132 * future will not be allocated again.
134 * start_pfn/end_pfn must be aligned to pageblock_order.
135 * Returns 0 on success and -EBUSY if any part of range cannot be isolated.
137 int start_isolate_page_range(unsigned long start_pfn
, unsigned long end_pfn
,
138 unsigned migratetype
, bool skip_hwpoisoned_pages
)
141 unsigned long undo_pfn
;
144 BUG_ON((start_pfn
) & (pageblock_nr_pages
- 1));
145 BUG_ON((end_pfn
) & (pageblock_nr_pages
- 1));
147 for (pfn
= start_pfn
;
149 pfn
+= pageblock_nr_pages
) {
150 page
= __first_valid_page(pfn
, pageblock_nr_pages
);
152 set_migratetype_isolate(page
, skip_hwpoisoned_pages
)) {
159 for (pfn
= start_pfn
;
161 pfn
+= pageblock_nr_pages
)
162 unset_migratetype_isolate(pfn_to_page(pfn
), migratetype
);
168 * Make isolated pages available again.
170 int undo_isolate_page_range(unsigned long start_pfn
, unsigned long end_pfn
,
171 unsigned migratetype
)
175 BUG_ON((start_pfn
) & (pageblock_nr_pages
- 1));
176 BUG_ON((end_pfn
) & (pageblock_nr_pages
- 1));
177 for (pfn
= start_pfn
;
179 pfn
+= pageblock_nr_pages
) {
180 page
= __first_valid_page(pfn
, pageblock_nr_pages
);
181 if (!page
|| get_pageblock_migratetype(page
) != MIGRATE_ISOLATE
)
183 unset_migratetype_isolate(page
, migratetype
);
188 * Test all pages in the range is free(means isolated) or not.
189 * all pages in [start_pfn...end_pfn) must be in the same zone.
190 * zone->lock must be held before call this.
192 * Returns 1 if all pages in the range are isolated.
195 __test_page_isolated_in_pageblock(unsigned long pfn
, unsigned long end_pfn
,
196 bool skip_hwpoisoned_pages
)
200 while (pfn
< end_pfn
) {
201 if (!pfn_valid_within(pfn
)) {
205 page
= pfn_to_page(pfn
);
206 if (PageBuddy(page
)) {
208 * If race between isolatation and allocation happens,
209 * some free pages could be in MIGRATE_MOVABLE list
210 * although pageblock's migratation type of the page
211 * is MIGRATE_ISOLATE. Catch it and move the page into
212 * MIGRATE_ISOLATE list.
214 if (get_freepage_migratetype(page
) != MIGRATE_ISOLATE
) {
215 struct page
*end_page
;
217 end_page
= page
+ (1 << page_order(page
)) - 1;
218 move_freepages(page_zone(page
), page
, end_page
,
221 pfn
+= 1 << page_order(page
);
223 else if (page_count(page
) == 0 &&
224 get_freepage_migratetype(page
) == MIGRATE_ISOLATE
)
226 else if (skip_hwpoisoned_pages
&& PageHWPoison(page
)) {
228 * The HWPoisoned page may be not in buddy
229 * system, and page_count() is not 0.
242 int test_pages_isolated(unsigned long start_pfn
, unsigned long end_pfn
,
243 bool skip_hwpoisoned_pages
)
245 unsigned long pfn
, flags
;
251 * Note: pageblock_nr_page != MAX_ORDER. Then, chunks of free page
252 * is not aligned to pageblock_nr_pages.
253 * Then we just check pagetype fist.
255 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= pageblock_nr_pages
) {
256 page
= __first_valid_page(pfn
, pageblock_nr_pages
);
257 if (page
&& get_pageblock_migratetype(page
) != MIGRATE_ISOLATE
)
260 page
= __first_valid_page(start_pfn
, end_pfn
- start_pfn
);
261 if ((pfn
< end_pfn
) || !page
)
263 /* Check all pages are free or Marked as ISOLATED */
264 zone
= page_zone(page
);
265 spin_lock_irqsave(&zone
->lock
, flags
);
266 ret
= __test_page_isolated_in_pageblock(start_pfn
, end_pfn
,
267 skip_hwpoisoned_pages
);
268 spin_unlock_irqrestore(&zone
->lock
, flags
);
269 return ret
? 0 : -EBUSY
;
272 struct page
*alloc_migrate_target(struct page
*page
, unsigned long private,
275 gfp_t gfp_mask
= GFP_USER
| __GFP_MOVABLE
;
277 if (PageHighMem(page
))
278 gfp_mask
|= __GFP_HIGHMEM
;
280 return alloc_page(gfp_mask
);