Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/mm/compaction.c |
| 3 | * |
| 4 | * Memory compaction for the reduction of external fragmentation. Note that |
| 5 | * this heavily depends upon page migration to do all the real heavy |
| 6 | * lifting |
| 7 | * |
| 8 | * Copyright IBM Corp. 2007-2010 Mel Gorman <mel@csn.ul.ie> |
| 9 | */ |
| 10 | #include <linux/swap.h> |
| 11 | #include <linux/migrate.h> |
| 12 | #include <linux/compaction.h> |
| 13 | #include <linux/mm_inline.h> |
| 14 | #include <linux/backing-dev.h> |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 15 | #include <linux/sysctl.h> |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 16 | #include <linux/sysfs.h> |
Rafael Aquini | bf6bddf | 2012-12-11 16:02:42 -0800 | [diff] [blame] | 17 | #include <linux/balloon_compaction.h> |
Minchan Kim | 194159f | 2013-02-22 16:33:58 -0800 | [diff] [blame] | 18 | #include <linux/page-isolation.h> |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 19 | #include "internal.h" |
| 20 | |
Minchan Kim | 010fc29 | 2012-12-20 15:05:06 -0800 | [diff] [blame] | 21 | #ifdef CONFIG_COMPACTION |
| 22 | static inline void count_compact_event(enum vm_event_item item) |
| 23 | { |
| 24 | count_vm_event(item); |
| 25 | } |
| 26 | |
| 27 | static inline void count_compact_events(enum vm_event_item item, long delta) |
| 28 | { |
| 29 | count_vm_events(item, delta); |
| 30 | } |
| 31 | #else |
| 32 | #define count_compact_event(item) do { } while (0) |
| 33 | #define count_compact_events(item, delta) do { } while (0) |
| 34 | #endif |
| 35 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 36 | #if defined CONFIG_COMPACTION || defined CONFIG_CMA |
| 37 | |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 38 | #define CREATE_TRACE_POINTS |
| 39 | #include <trace/events/compaction.h> |
| 40 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 41 | static unsigned long release_freepages(struct list_head *freelist) |
| 42 | { |
| 43 | struct page *page, *next; |
| 44 | unsigned long count = 0; |
| 45 | |
| 46 | list_for_each_entry_safe(page, next, freelist, lru) { |
| 47 | list_del(&page->lru); |
| 48 | __free_page(page); |
| 49 | count++; |
| 50 | } |
| 51 | |
| 52 | return count; |
| 53 | } |
| 54 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 55 | static void map_pages(struct list_head *list) |
| 56 | { |
| 57 | struct page *page; |
| 58 | |
| 59 | list_for_each_entry(page, list, lru) { |
| 60 | arch_alloc_page(page, 0); |
| 61 | kernel_map_pages(page, 1, 1); |
| 62 | } |
| 63 | } |
| 64 | |
Michal Nazarewicz | 47118af | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 65 | static inline bool migrate_async_suitable(int migratetype) |
| 66 | { |
| 67 | return is_migrate_cma(migratetype) || migratetype == MIGRATE_MOVABLE; |
| 68 | } |
| 69 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 70 | /* |
| 71 | * Check that the whole (or subset of) a pageblock given by the interval of |
| 72 | * [start_pfn, end_pfn) is valid and within the same zone, before scanning it |
| 73 | * with the migration of free compaction scanner. The scanners then need to |
| 74 | * use only pfn_valid_within() check for arches that allow holes within |
| 75 | * pageblocks. |
| 76 | * |
| 77 | * Return struct page pointer of start_pfn, or NULL if checks were not passed. |
| 78 | * |
| 79 | * It's possible on some configurations to have a setup like node0 node1 node0 |
| 80 | * i.e. it's possible that all pages within a zones range of pages do not |
| 81 | * belong to a single zone. We assume that a border between node0 and node1 |
| 82 | * can occur within a single pageblock, but not a node0 node1 node0 |
| 83 | * interleaving within a single pageblock. It is therefore sufficient to check |
| 84 | * the first and last page of a pageblock and avoid checking each individual |
| 85 | * page in a pageblock. |
| 86 | */ |
| 87 | static struct page *pageblock_pfn_to_page(unsigned long start_pfn, |
| 88 | unsigned long end_pfn, struct zone *zone) |
| 89 | { |
| 90 | struct page *start_page; |
| 91 | struct page *end_page; |
| 92 | |
| 93 | /* end_pfn is one past the range we are checking */ |
| 94 | end_pfn--; |
| 95 | |
| 96 | if (!pfn_valid(start_pfn) || !pfn_valid(end_pfn)) |
| 97 | return NULL; |
| 98 | |
| 99 | start_page = pfn_to_page(start_pfn); |
| 100 | |
| 101 | if (page_zone(start_page) != zone) |
| 102 | return NULL; |
| 103 | |
| 104 | end_page = pfn_to_page(end_pfn); |
| 105 | |
| 106 | /* This gives a shorter code than deriving page_zone(end_page) */ |
| 107 | if (page_zone_id(start_page) != page_zone_id(end_page)) |
| 108 | return NULL; |
| 109 | |
| 110 | return start_page; |
| 111 | } |
| 112 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 113 | #ifdef CONFIG_COMPACTION |
| 114 | /* Returns true if the pageblock should be scanned for pages to isolate. */ |
| 115 | static inline bool isolation_suitable(struct compact_control *cc, |
| 116 | struct page *page) |
| 117 | { |
| 118 | if (cc->ignore_skip_hint) |
| 119 | return true; |
| 120 | |
| 121 | return !get_pageblock_skip(page); |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * This function is called to clear all cached information on pageblocks that |
| 126 | * should be skipped for page isolation when the migrate and free page scanner |
| 127 | * meet. |
| 128 | */ |
Mel Gorman | 6299702 | 2012-10-08 16:32:47 -0700 | [diff] [blame] | 129 | static void __reset_isolation_suitable(struct zone *zone) |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 130 | { |
| 131 | unsigned long start_pfn = zone->zone_start_pfn; |
Cody P Schafer | 108bcc9 | 2013-02-22 16:35:23 -0800 | [diff] [blame] | 132 | unsigned long end_pfn = zone_end_pfn(zone); |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 133 | unsigned long pfn; |
| 134 | |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 135 | zone->compact_cached_migrate_pfn[0] = start_pfn; |
| 136 | zone->compact_cached_migrate_pfn[1] = start_pfn; |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 137 | zone->compact_cached_free_pfn = end_pfn; |
Mel Gorman | 6299702 | 2012-10-08 16:32:47 -0700 | [diff] [blame] | 138 | zone->compact_blockskip_flush = false; |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 139 | |
| 140 | /* Walk the zone and mark every pageblock as suitable for isolation */ |
| 141 | for (pfn = start_pfn; pfn < end_pfn; pfn += pageblock_nr_pages) { |
| 142 | struct page *page; |
| 143 | |
| 144 | cond_resched(); |
| 145 | |
| 146 | if (!pfn_valid(pfn)) |
| 147 | continue; |
| 148 | |
| 149 | page = pfn_to_page(pfn); |
| 150 | if (zone != page_zone(page)) |
| 151 | continue; |
| 152 | |
| 153 | clear_pageblock_skip(page); |
| 154 | } |
| 155 | } |
| 156 | |
Mel Gorman | 6299702 | 2012-10-08 16:32:47 -0700 | [diff] [blame] | 157 | void reset_isolation_suitable(pg_data_t *pgdat) |
| 158 | { |
| 159 | int zoneid; |
| 160 | |
| 161 | for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { |
| 162 | struct zone *zone = &pgdat->node_zones[zoneid]; |
| 163 | if (!populated_zone(zone)) |
| 164 | continue; |
| 165 | |
| 166 | /* Only flush if a full compaction finished recently */ |
| 167 | if (zone->compact_blockskip_flush) |
| 168 | __reset_isolation_suitable(zone); |
| 169 | } |
| 170 | } |
| 171 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 172 | /* |
| 173 | * If no pages were isolated then mark this pageblock to be skipped in the |
Mel Gorman | 6299702 | 2012-10-08 16:32:47 -0700 | [diff] [blame] | 174 | * future. The information is later cleared by __reset_isolation_suitable(). |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 175 | */ |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 176 | static void update_pageblock_skip(struct compact_control *cc, |
| 177 | struct page *page, unsigned long nr_isolated, |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 178 | bool migrate_scanner) |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 179 | { |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 180 | struct zone *zone = cc->zone; |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 181 | unsigned long pfn; |
Joonsoo Kim | 6815bf3 | 2013-12-18 17:08:52 -0800 | [diff] [blame] | 182 | |
| 183 | if (cc->ignore_skip_hint) |
| 184 | return; |
| 185 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 186 | if (!page) |
| 187 | return; |
| 188 | |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 189 | if (nr_isolated) |
| 190 | return; |
| 191 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 192 | set_pageblock_skip(page); |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 193 | |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 194 | pfn = page_to_pfn(page); |
| 195 | |
| 196 | /* Update where async and sync compaction should restart */ |
| 197 | if (migrate_scanner) { |
| 198 | if (cc->finished_update_migrate) |
| 199 | return; |
| 200 | if (pfn > zone->compact_cached_migrate_pfn[0]) |
| 201 | zone->compact_cached_migrate_pfn[0] = pfn; |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 202 | if (cc->mode != MIGRATE_ASYNC && |
| 203 | pfn > zone->compact_cached_migrate_pfn[1]) |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 204 | zone->compact_cached_migrate_pfn[1] = pfn; |
| 205 | } else { |
| 206 | if (cc->finished_update_free) |
| 207 | return; |
| 208 | if (pfn < zone->compact_cached_free_pfn) |
| 209 | zone->compact_cached_free_pfn = pfn; |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 210 | } |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 211 | } |
| 212 | #else |
| 213 | static inline bool isolation_suitable(struct compact_control *cc, |
| 214 | struct page *page) |
| 215 | { |
| 216 | return true; |
| 217 | } |
| 218 | |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 219 | static void update_pageblock_skip(struct compact_control *cc, |
| 220 | struct page *page, unsigned long nr_isolated, |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 221 | bool migrate_scanner) |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 222 | { |
| 223 | } |
| 224 | #endif /* CONFIG_COMPACTION */ |
| 225 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 226 | /* |
| 227 | * Compaction requires the taking of some coarse locks that are potentially |
| 228 | * very heavily contended. For async compaction, back out if the lock cannot |
| 229 | * be taken immediately. For sync compaction, spin on the lock if needed. |
| 230 | * |
| 231 | * Returns true if the lock is held |
| 232 | * Returns false if the lock is not held and compaction should abort |
| 233 | */ |
| 234 | static bool compact_trylock_irqsave(spinlock_t *lock, unsigned long *flags, |
| 235 | struct compact_control *cc) |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 236 | { |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 237 | if (cc->mode == MIGRATE_ASYNC) { |
| 238 | if (!spin_trylock_irqsave(lock, *flags)) { |
| 239 | cc->contended = COMPACT_CONTENDED_LOCK; |
| 240 | return false; |
| 241 | } |
| 242 | } else { |
| 243 | spin_lock_irqsave(lock, *flags); |
| 244 | } |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 245 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 246 | return true; |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 249 | /* |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 250 | * Compaction requires the taking of some coarse locks that are potentially |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 251 | * very heavily contended. The lock should be periodically unlocked to avoid |
| 252 | * having disabled IRQs for a long time, even when there is nobody waiting on |
| 253 | * the lock. It might also be that allowing the IRQs will result in |
| 254 | * need_resched() becoming true. If scheduling is needed, async compaction |
| 255 | * aborts. Sync compaction schedules. |
| 256 | * Either compaction type will also abort if a fatal signal is pending. |
| 257 | * In either case if the lock was locked, it is dropped and not regained. |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 258 | * |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 259 | * Returns true if compaction should abort due to fatal signal pending, or |
| 260 | * async compaction due to need_resched() |
| 261 | * Returns false when compaction can continue (sync compaction might have |
| 262 | * scheduled) |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 263 | */ |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 264 | static bool compact_unlock_should_abort(spinlock_t *lock, |
| 265 | unsigned long flags, bool *locked, struct compact_control *cc) |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 266 | { |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 267 | if (*locked) { |
| 268 | spin_unlock_irqrestore(lock, flags); |
| 269 | *locked = false; |
| 270 | } |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 271 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 272 | if (fatal_signal_pending(current)) { |
| 273 | cc->contended = COMPACT_CONTENDED_SCHED; |
| 274 | return true; |
| 275 | } |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 276 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 277 | if (need_resched()) { |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 278 | if (cc->mode == MIGRATE_ASYNC) { |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 279 | cc->contended = COMPACT_CONTENDED_SCHED; |
| 280 | return true; |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 281 | } |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 282 | cond_resched(); |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 285 | return false; |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 286 | } |
| 287 | |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 288 | /* |
| 289 | * Aside from avoiding lock contention, compaction also periodically checks |
| 290 | * need_resched() and either schedules in sync compaction or aborts async |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 291 | * compaction. This is similar to what compact_unlock_should_abort() does, but |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 292 | * is used where no lock is concerned. |
| 293 | * |
| 294 | * Returns false when no scheduling was needed, or sync compaction scheduled. |
| 295 | * Returns true when async compaction should abort. |
| 296 | */ |
| 297 | static inline bool compact_should_abort(struct compact_control *cc) |
| 298 | { |
| 299 | /* async compaction aborts if contended */ |
| 300 | if (need_resched()) { |
| 301 | if (cc->mode == MIGRATE_ASYNC) { |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 302 | cc->contended = COMPACT_CONTENDED_SCHED; |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 303 | return true; |
| 304 | } |
| 305 | |
| 306 | cond_resched(); |
| 307 | } |
| 308 | |
| 309 | return false; |
| 310 | } |
| 311 | |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 312 | /* Returns true if the page is within a block suitable for migration to */ |
| 313 | static bool suitable_migration_target(struct page *page) |
| 314 | { |
Joonsoo Kim | 7d348b9 | 2014-04-07 15:37:03 -0700 | [diff] [blame] | 315 | /* If the page is a large free page, then disallow migration */ |
Vlastimil Babka | 99c0fd5 | 2014-10-09 15:27:23 -0700 | [diff] [blame] | 316 | if (PageBuddy(page)) { |
| 317 | /* |
| 318 | * We are checking page_order without zone->lock taken. But |
| 319 | * the only small danger is that we skip a potentially suitable |
| 320 | * pageblock, so it's not worth to check order for valid range. |
| 321 | */ |
| 322 | if (page_order_unsafe(page) >= pageblock_order) |
| 323 | return false; |
| 324 | } |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 325 | |
| 326 | /* If the block is MIGRATE_MOVABLE or MIGRATE_CMA, allow migration */ |
Joonsoo Kim | 7d348b9 | 2014-04-07 15:37:03 -0700 | [diff] [blame] | 327 | if (migrate_async_suitable(get_pageblock_migratetype(page))) |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 328 | return true; |
| 329 | |
| 330 | /* Otherwise skip the block */ |
| 331 | return false; |
| 332 | } |
| 333 | |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 334 | /* |
Jerome Marchand | 9e4be47 | 2013-11-12 15:07:12 -0800 | [diff] [blame] | 335 | * Isolate free pages onto a private freelist. If @strict is true, will abort |
| 336 | * returning 0 on any invalid PFNs or non-free pages inside of the pageblock |
| 337 | * (even though it may still end up isolating some pages). |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 338 | */ |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 339 | static unsigned long isolate_freepages_block(struct compact_control *cc, |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 340 | unsigned long *start_pfn, |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 341 | unsigned long end_pfn, |
| 342 | struct list_head *freelist, |
| 343 | bool strict) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 344 | { |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 345 | int nr_scanned = 0, total_isolated = 0; |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 346 | struct page *cursor, *valid_page = NULL; |
Xiubo Li | b8b2d82 | 2014-10-09 15:28:21 -0700 | [diff] [blame] | 347 | unsigned long flags = 0; |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 348 | bool locked = false; |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 349 | unsigned long blockpfn = *start_pfn; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 350 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 351 | cursor = pfn_to_page(blockpfn); |
| 352 | |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 353 | /* Isolate free pages. */ |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 354 | for (; blockpfn < end_pfn; blockpfn++, cursor++) { |
| 355 | int isolated, i; |
| 356 | struct page *page = cursor; |
| 357 | |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 358 | /* |
| 359 | * Periodically drop the lock (if held) regardless of its |
| 360 | * contention, to give chance to IRQs. Abort if fatal signal |
| 361 | * pending or async compaction detects need_resched() |
| 362 | */ |
| 363 | if (!(blockpfn % SWAP_CLUSTER_MAX) |
| 364 | && compact_unlock_should_abort(&cc->zone->lock, flags, |
| 365 | &locked, cc)) |
| 366 | break; |
| 367 | |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 368 | nr_scanned++; |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 369 | if (!pfn_valid_within(blockpfn)) |
Laura Abbott | 2af120b | 2014-03-10 15:49:44 -0700 | [diff] [blame] | 370 | goto isolate_fail; |
| 371 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 372 | if (!valid_page) |
| 373 | valid_page = page; |
Vlastimil Babka | f1f702e | 2015-09-08 15:02:49 -0700 | [diff] [blame] | 374 | |
| 375 | /* |
| 376 | * For compound pages such as THP and hugetlbfs, we can save |
| 377 | * potentially a lot of iterations if we skip them at once. |
| 378 | * The check is racy, but we can consider only valid values |
| 379 | * and the only danger is skipping too much. |
| 380 | */ |
| 381 | if (PageCompound(page)) { |
| 382 | unsigned int comp_order = compound_order(page); |
| 383 | |
| 384 | if (likely(comp_order < MAX_ORDER)) { |
| 385 | blockpfn += (1UL << comp_order) - 1; |
| 386 | cursor += (1UL << comp_order) - 1; |
| 387 | } |
| 388 | |
| 389 | goto isolate_fail; |
| 390 | } |
| 391 | |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 392 | if (!PageBuddy(page)) |
Laura Abbott | 2af120b | 2014-03-10 15:49:44 -0700 | [diff] [blame] | 393 | goto isolate_fail; |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 394 | |
| 395 | /* |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 396 | * If we already hold the lock, we can skip some rechecking. |
| 397 | * Note that if we hold the lock now, checked_pageblock was |
| 398 | * already set in some previous iteration (or strict is true), |
| 399 | * so it is correct to skip the suitable migration target |
| 400 | * recheck as well. |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 401 | */ |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 402 | if (!locked) { |
| 403 | /* |
| 404 | * The zone lock must be held to isolate freepages. |
| 405 | * Unfortunately this is a very coarse lock and can be |
| 406 | * heavily contended if there are parallel allocations |
| 407 | * or parallel compactions. For async compaction do not |
| 408 | * spin on the lock and we acquire the lock as late as |
| 409 | * possible. |
| 410 | */ |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 411 | locked = compact_trylock_irqsave(&cc->zone->lock, |
| 412 | &flags, cc); |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 413 | if (!locked) |
| 414 | break; |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 415 | |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 416 | /* Recheck this is a buddy page under lock */ |
| 417 | if (!PageBuddy(page)) |
| 418 | goto isolate_fail; |
| 419 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 420 | |
| 421 | /* Found a free page, break it into order-0 pages */ |
| 422 | isolated = split_free_page(page); |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 423 | if (!isolated) |
| 424 | break; |
| 425 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 426 | total_isolated += isolated; |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 427 | cc->nr_freepages += isolated; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 428 | for (i = 0; i < isolated; i++) { |
| 429 | list_add(&page->lru, freelist); |
| 430 | page++; |
| 431 | } |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 432 | if (!strict && cc->nr_migratepages <= cc->nr_freepages) { |
| 433 | blockpfn += isolated; |
| 434 | break; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 435 | } |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 436 | /* Advance to the end of split page */ |
| 437 | blockpfn += isolated - 1; |
| 438 | cursor += isolated - 1; |
| 439 | continue; |
Laura Abbott | 2af120b | 2014-03-10 15:49:44 -0700 | [diff] [blame] | 440 | |
| 441 | isolate_fail: |
| 442 | if (strict) |
| 443 | break; |
| 444 | else |
| 445 | continue; |
| 446 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 447 | } |
| 448 | |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 449 | if (locked) |
| 450 | spin_unlock_irqrestore(&cc->zone->lock, flags); |
| 451 | |
Vlastimil Babka | f1f702e | 2015-09-08 15:02:49 -0700 | [diff] [blame] | 452 | /* |
| 453 | * There is a tiny chance that we have read bogus compound_order(), |
| 454 | * so be careful to not go outside of the pageblock. |
| 455 | */ |
| 456 | if (unlikely(blockpfn > end_pfn)) |
| 457 | blockpfn = end_pfn; |
| 458 | |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 459 | /* Record how far we have got within the block */ |
| 460 | *start_pfn = blockpfn; |
| 461 | |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 462 | trace_mm_compaction_isolate_freepages(nr_scanned, total_isolated); |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 463 | |
| 464 | /* |
| 465 | * If strict isolation is requested by CMA then check that all the |
| 466 | * pages requested were isolated. If there were any failures, 0 is |
| 467 | * returned and CMA will fail. |
| 468 | */ |
Laura Abbott | 2af120b | 2014-03-10 15:49:44 -0700 | [diff] [blame] | 469 | if (strict && blockpfn < end_pfn) |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 470 | total_isolated = 0; |
| 471 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 472 | /* Update the pageblock-skip if the whole pageblock was scanned */ |
| 473 | if (blockpfn == end_pfn) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 474 | update_pageblock_skip(cc, valid_page, total_isolated, false); |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 475 | |
Minchan Kim | 010fc29 | 2012-12-20 15:05:06 -0800 | [diff] [blame] | 476 | count_compact_events(COMPACTFREE_SCANNED, nr_scanned); |
Mel Gorman | 397487d | 2012-10-19 12:00:10 +0100 | [diff] [blame] | 477 | if (total_isolated) |
Minchan Kim | 010fc29 | 2012-12-20 15:05:06 -0800 | [diff] [blame] | 478 | count_compact_events(COMPACTISOLATED, total_isolated); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 479 | return total_isolated; |
| 480 | } |
| 481 | |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 482 | /** |
| 483 | * isolate_freepages_range() - isolate free pages. |
| 484 | * @start_pfn: The first PFN to start isolating. |
| 485 | * @end_pfn: The one-past-last PFN. |
| 486 | * |
| 487 | * Non-free pages, invalid PFNs, or zone boundaries within the |
| 488 | * [start_pfn, end_pfn) range are considered errors, cause function to |
| 489 | * undo its actions and return zero. |
| 490 | * |
| 491 | * Otherwise, function returns one-past-the-last PFN of isolated page |
| 492 | * (which may be greater then end_pfn if end fell in a middle of |
| 493 | * a free page). |
| 494 | */ |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 495 | unsigned long |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 496 | isolate_freepages_range(struct compact_control *cc, |
| 497 | unsigned long start_pfn, unsigned long end_pfn) |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 498 | { |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 499 | unsigned long isolated, pfn, block_end_pfn; |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 500 | LIST_HEAD(freelist); |
| 501 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 502 | pfn = start_pfn; |
| 503 | block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages); |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 504 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 505 | for (; pfn < end_pfn; pfn += isolated, |
| 506 | block_end_pfn += pageblock_nr_pages) { |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 507 | /* Protect pfn from changing by isolate_freepages_block */ |
| 508 | unsigned long isolate_start_pfn = pfn; |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 509 | |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 510 | block_end_pfn = min(block_end_pfn, end_pfn); |
| 511 | |
Joonsoo Kim | 5842001 | 2014-11-13 15:19:07 -0800 | [diff] [blame] | 512 | /* |
| 513 | * pfn could pass the block_end_pfn if isolated freepage |
| 514 | * is more than pageblock order. In this case, we adjust |
| 515 | * scanning range to right one. |
| 516 | */ |
| 517 | if (pfn >= block_end_pfn) { |
| 518 | block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages); |
| 519 | block_end_pfn = min(block_end_pfn, end_pfn); |
| 520 | } |
| 521 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 522 | if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone)) |
| 523 | break; |
| 524 | |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 525 | isolated = isolate_freepages_block(cc, &isolate_start_pfn, |
| 526 | block_end_pfn, &freelist, true); |
Michal Nazarewicz | 85aa125 | 2012-01-30 13:24:03 +0100 | [diff] [blame] | 527 | |
| 528 | /* |
| 529 | * In strict mode, isolate_freepages_block() returns 0 if |
| 530 | * there are any holes in the block (ie. invalid PFNs or |
| 531 | * non-free pages). |
| 532 | */ |
| 533 | if (!isolated) |
| 534 | break; |
| 535 | |
| 536 | /* |
| 537 | * If we managed to isolate pages, it is always (1 << n) * |
| 538 | * pageblock_nr_pages for some non-negative n. (Max order |
| 539 | * page may span two pageblocks). |
| 540 | */ |
| 541 | } |
| 542 | |
| 543 | /* split_free_page does not map the pages */ |
| 544 | map_pages(&freelist); |
| 545 | |
| 546 | if (pfn < end_pfn) { |
| 547 | /* Loop terminated early, cleanup. */ |
| 548 | release_freepages(&freelist); |
| 549 | return 0; |
| 550 | } |
| 551 | |
| 552 | /* We don't use freelists for anything. */ |
| 553 | return pfn; |
| 554 | } |
| 555 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 556 | /* Update the number of anon and file isolated pages in the zone */ |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 557 | static void acct_isolated(struct zone *zone, struct compact_control *cc) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 558 | { |
| 559 | struct page *page; |
Minchan Kim | b9e84ac | 2011-10-31 17:06:44 -0700 | [diff] [blame] | 560 | unsigned int count[2] = { 0, }; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 561 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 562 | if (list_empty(&cc->migratepages)) |
| 563 | return; |
| 564 | |
Minchan Kim | b9e84ac | 2011-10-31 17:06:44 -0700 | [diff] [blame] | 565 | list_for_each_entry(page, &cc->migratepages, lru) |
| 566 | count[!!page_is_file_cache(page)]++; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 567 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 568 | mod_zone_page_state(zone, NR_ISOLATED_ANON, count[0]); |
| 569 | mod_zone_page_state(zone, NR_ISOLATED_FILE, count[1]); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | /* Similar to reclaim, but different enough that they don't share logic */ |
| 573 | static bool too_many_isolated(struct zone *zone) |
| 574 | { |
Minchan Kim | bc69304 | 2010-09-09 16:38:00 -0700 | [diff] [blame] | 575 | unsigned long active, inactive, isolated; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 576 | |
| 577 | inactive = zone_page_state(zone, NR_INACTIVE_FILE) + |
| 578 | zone_page_state(zone, NR_INACTIVE_ANON); |
Minchan Kim | bc69304 | 2010-09-09 16:38:00 -0700 | [diff] [blame] | 579 | active = zone_page_state(zone, NR_ACTIVE_FILE) + |
| 580 | zone_page_state(zone, NR_ACTIVE_ANON); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 581 | isolated = zone_page_state(zone, NR_ISOLATED_FILE) + |
| 582 | zone_page_state(zone, NR_ISOLATED_ANON); |
| 583 | |
Minchan Kim | bc69304 | 2010-09-09 16:38:00 -0700 | [diff] [blame] | 584 | return isolated > (inactive + active) / 2; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 585 | } |
| 586 | |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 587 | /** |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 588 | * isolate_migratepages_block() - isolate all migrate-able pages within |
| 589 | * a single pageblock |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 590 | * @cc: Compaction control structure. |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 591 | * @low_pfn: The first PFN to isolate |
| 592 | * @end_pfn: The one-past-the-last PFN to isolate, within same pageblock |
| 593 | * @isolate_mode: Isolation mode to be used. |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 594 | * |
| 595 | * Isolate all pages that can be migrated from the range specified by |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 596 | * [low_pfn, end_pfn). The range is expected to be within same pageblock. |
| 597 | * Returns zero if there is a fatal signal pending, otherwise PFN of the |
| 598 | * first page that was not scanned (which may be both less, equal to or more |
| 599 | * than end_pfn). |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 600 | * |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 601 | * The pages are isolated on cc->migratepages list (not required to be empty), |
| 602 | * and cc->nr_migratepages is updated accordingly. The cc->migrate_pfn field |
| 603 | * is neither read nor updated. |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 604 | */ |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 605 | static unsigned long |
| 606 | isolate_migratepages_block(struct compact_control *cc, unsigned long low_pfn, |
| 607 | unsigned long end_pfn, isolate_mode_t isolate_mode) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 608 | { |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 609 | struct zone *zone = cc->zone; |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 610 | unsigned long nr_scanned = 0, nr_isolated = 0; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 611 | struct list_head *migratelist = &cc->migratepages; |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 612 | struct lruvec *lruvec; |
Xiubo Li | b8b2d82 | 2014-10-09 15:28:21 -0700 | [diff] [blame] | 613 | unsigned long flags = 0; |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 614 | bool locked = false; |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 615 | struct page *page = NULL, *valid_page = NULL; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 616 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 617 | /* |
| 618 | * Ensure that there are not too many pages isolated from the LRU |
| 619 | * list by either parallel reclaimers or compaction. If there are, |
| 620 | * delay for some time until fewer pages are isolated |
| 621 | */ |
| 622 | while (unlikely(too_many_isolated(zone))) { |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 623 | /* async migration should just abort */ |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 624 | if (cc->mode == MIGRATE_ASYNC) |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 625 | return 0; |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 626 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 627 | congestion_wait(BLK_RW_ASYNC, HZ/10); |
| 628 | |
| 629 | if (fatal_signal_pending(current)) |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 630 | return 0; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 631 | } |
| 632 | |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 633 | if (compact_should_abort(cc)) |
| 634 | return 0; |
David Rientjes | aeef4b8 | 2014-06-04 16:08:31 -0700 | [diff] [blame] | 635 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 636 | /* Time to isolate some pages for migration */ |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 637 | for (; low_pfn < end_pfn; low_pfn++) { |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 638 | /* |
| 639 | * Periodically drop the lock (if held) regardless of its |
| 640 | * contention, to give chance to IRQs. Abort async compaction |
| 641 | * if contended. |
| 642 | */ |
| 643 | if (!(low_pfn % SWAP_CLUSTER_MAX) |
| 644 | && compact_unlock_should_abort(&zone->lru_lock, flags, |
| 645 | &locked, cc)) |
| 646 | break; |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 647 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 648 | if (!pfn_valid_within(low_pfn)) |
| 649 | continue; |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 650 | nr_scanned++; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 651 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 652 | page = pfn_to_page(low_pfn); |
Mel Gorman | dc90860 | 2012-02-08 17:13:38 -0800 | [diff] [blame] | 653 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 654 | if (!valid_page) |
| 655 | valid_page = page; |
| 656 | |
Mel Gorman | 6c14466 | 2014-01-23 15:53:38 -0800 | [diff] [blame] | 657 | /* |
Vlastimil Babka | 99c0fd5 | 2014-10-09 15:27:23 -0700 | [diff] [blame] | 658 | * Skip if free. We read page order here without zone lock |
| 659 | * which is generally unsafe, but the race window is small and |
| 660 | * the worst thing that can happen is that we skip some |
| 661 | * potential isolation targets. |
Mel Gorman | 6c14466 | 2014-01-23 15:53:38 -0800 | [diff] [blame] | 662 | */ |
Vlastimil Babka | 99c0fd5 | 2014-10-09 15:27:23 -0700 | [diff] [blame] | 663 | if (PageBuddy(page)) { |
| 664 | unsigned long freepage_order = page_order_unsafe(page); |
| 665 | |
| 666 | /* |
| 667 | * Without lock, we cannot be sure that what we got is |
| 668 | * a valid page order. Consider only values in the |
| 669 | * valid order range to prevent low_pfn overflow. |
| 670 | */ |
| 671 | if (freepage_order > 0 && freepage_order < MAX_ORDER) |
| 672 | low_pfn += (1UL << freepage_order) - 1; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 673 | continue; |
Vlastimil Babka | 99c0fd5 | 2014-10-09 15:27:23 -0700 | [diff] [blame] | 674 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 675 | |
Mel Gorman | 9927af74 | 2011-01-13 15:45:59 -0800 | [diff] [blame] | 676 | /* |
Rafael Aquini | bf6bddf | 2012-12-11 16:02:42 -0800 | [diff] [blame] | 677 | * Check may be lockless but that's ok as we recheck later. |
| 678 | * It's possible to migrate LRU pages and balloon pages |
| 679 | * Skip any other type of page |
| 680 | */ |
| 681 | if (!PageLRU(page)) { |
| 682 | if (unlikely(balloon_page_movable(page))) { |
Konstantin Khlebnikov | d6d86c0 | 2014-10-09 15:29:27 -0700 | [diff] [blame] | 683 | if (balloon_page_isolate(page)) { |
Rafael Aquini | bf6bddf | 2012-12-11 16:02:42 -0800 | [diff] [blame] | 684 | /* Successfully isolated */ |
Joonsoo Kim | b6c7501 | 2014-04-07 15:37:07 -0700 | [diff] [blame] | 685 | goto isolate_success; |
Rafael Aquini | bf6bddf | 2012-12-11 16:02:42 -0800 | [diff] [blame] | 686 | } |
| 687 | } |
Andrea Arcangeli | bc83501 | 2011-01-13 15:47:08 -0800 | [diff] [blame] | 688 | continue; |
Rafael Aquini | bf6bddf | 2012-12-11 16:02:42 -0800 | [diff] [blame] | 689 | } |
Andrea Arcangeli | bc83501 | 2011-01-13 15:47:08 -0800 | [diff] [blame] | 690 | |
| 691 | /* |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 692 | * PageLRU is set. lru_lock normally excludes isolation |
| 693 | * splitting and collapsing (collapsing has already happened |
| 694 | * if PageLRU is set) but the lock is not necessarily taken |
| 695 | * here and it is wasteful to take it just to check transhuge. |
| 696 | * Check TransHuge without lock and skip the whole pageblock if |
| 697 | * it's either a transhuge or hugetlbfs page, as calling |
| 698 | * compound_order() without preventing THP from splitting the |
| 699 | * page underneath us may return surprising results. |
Andrea Arcangeli | bc83501 | 2011-01-13 15:47:08 -0800 | [diff] [blame] | 700 | */ |
| 701 | if (PageTransHuge(page)) { |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 702 | if (!locked) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 703 | low_pfn = ALIGN(low_pfn + 1, |
| 704 | pageblock_nr_pages) - 1; |
| 705 | else |
| 706 | low_pfn += (1 << compound_order(page)) - 1; |
| 707 | |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 708 | continue; |
| 709 | } |
| 710 | |
David Rientjes | 119d6d5 | 2014-04-03 14:48:00 -0700 | [diff] [blame] | 711 | /* |
| 712 | * Migration will fail if an anonymous page is pinned in memory, |
| 713 | * so avoid taking lru_lock and isolating it unnecessarily in an |
| 714 | * admittedly racy check. |
| 715 | */ |
| 716 | if (!page_mapping(page) && |
| 717 | page_count(page) > page_mapcount(page)) |
| 718 | continue; |
| 719 | |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 720 | /* If we already hold the lock, we can skip some rechecking */ |
| 721 | if (!locked) { |
Vlastimil Babka | 8b44d27 | 2014-10-09 15:27:16 -0700 | [diff] [blame] | 722 | locked = compact_trylock_irqsave(&zone->lru_lock, |
| 723 | &flags, cc); |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 724 | if (!locked) |
| 725 | break; |
Mel Gorman | 2a1402a | 2012-10-08 16:32:33 -0700 | [diff] [blame] | 726 | |
Vlastimil Babka | 69b7189 | 2014-10-09 15:27:18 -0700 | [diff] [blame] | 727 | /* Recheck PageLRU and PageTransHuge under lock */ |
| 728 | if (!PageLRU(page)) |
| 729 | continue; |
| 730 | if (PageTransHuge(page)) { |
| 731 | low_pfn += (1 << compound_order(page)) - 1; |
| 732 | continue; |
| 733 | } |
Andrea Arcangeli | bc83501 | 2011-01-13 15:47:08 -0800 | [diff] [blame] | 734 | } |
| 735 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 736 | lruvec = mem_cgroup_page_lruvec(page, zone); |
| 737 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 738 | /* Try isolate the page */ |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 739 | if (__isolate_lru_page(page, isolate_mode) != 0) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 740 | continue; |
| 741 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 742 | VM_BUG_ON_PAGE(PageTransCompound(page), page); |
Andrea Arcangeli | bc83501 | 2011-01-13 15:47:08 -0800 | [diff] [blame] | 743 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 744 | /* Successfully isolated */ |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 745 | del_page_from_lru_list(page, lruvec, page_lru(page)); |
Joonsoo Kim | b6c7501 | 2014-04-07 15:37:07 -0700 | [diff] [blame] | 746 | |
| 747 | isolate_success: |
| 748 | cc->finished_update_migrate = true; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 749 | list_add(&page->lru, migratelist); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 750 | cc->nr_migratepages++; |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 751 | nr_isolated++; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 752 | |
| 753 | /* Avoid isolating too much */ |
Hillf Danton | 31b8384 | 2012-01-10 15:07:59 -0800 | [diff] [blame] | 754 | if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) { |
| 755 | ++low_pfn; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 756 | break; |
Hillf Danton | 31b8384 | 2012-01-10 15:07:59 -0800 | [diff] [blame] | 757 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 758 | } |
| 759 | |
Vlastimil Babka | 99c0fd5 | 2014-10-09 15:27:23 -0700 | [diff] [blame] | 760 | /* |
| 761 | * The PageBuddy() check could have potentially brought us outside |
| 762 | * the range to be scanned. |
| 763 | */ |
| 764 | if (unlikely(low_pfn > end_pfn)) |
| 765 | low_pfn = end_pfn; |
| 766 | |
Mel Gorman | c67fe37 | 2012-08-21 16:16:17 -0700 | [diff] [blame] | 767 | if (locked) |
| 768 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 769 | |
Vlastimil Babka | 50b5b09 | 2014-01-21 15:51:10 -0800 | [diff] [blame] | 770 | /* |
| 771 | * Update the pageblock-skip information and cached scanner pfn, |
| 772 | * if the whole pageblock was scanned without isolating any page. |
Vlastimil Babka | 50b5b09 | 2014-01-21 15:51:10 -0800 | [diff] [blame] | 773 | */ |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 774 | if (low_pfn == end_pfn) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 775 | update_pageblock_skip(cc, valid_page, nr_isolated, true); |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 776 | |
Mel Gorman | b7aba69 | 2011-01-13 15:45:54 -0800 | [diff] [blame] | 777 | trace_mm_compaction_isolate_migratepages(nr_scanned, nr_isolated); |
| 778 | |
Minchan Kim | 010fc29 | 2012-12-20 15:05:06 -0800 | [diff] [blame] | 779 | count_compact_events(COMPACTMIGRATE_SCANNED, nr_scanned); |
Mel Gorman | 397487d | 2012-10-19 12:00:10 +0100 | [diff] [blame] | 780 | if (nr_isolated) |
Minchan Kim | 010fc29 | 2012-12-20 15:05:06 -0800 | [diff] [blame] | 781 | count_compact_events(COMPACTISOLATED, nr_isolated); |
Mel Gorman | 397487d | 2012-10-19 12:00:10 +0100 | [diff] [blame] | 782 | |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 783 | return low_pfn; |
| 784 | } |
| 785 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 786 | /** |
| 787 | * isolate_migratepages_range() - isolate migrate-able pages in a PFN range |
| 788 | * @cc: Compaction control structure. |
| 789 | * @start_pfn: The first PFN to start isolating. |
| 790 | * @end_pfn: The one-past-last PFN. |
| 791 | * |
| 792 | * Returns zero if isolation fails fatally due to e.g. pending signal. |
| 793 | * Otherwise, function returns one-past-the-last PFN of isolated page |
| 794 | * (which may be greater than end_pfn if end fell in a middle of a THP page). |
| 795 | */ |
| 796 | unsigned long |
| 797 | isolate_migratepages_range(struct compact_control *cc, unsigned long start_pfn, |
| 798 | unsigned long end_pfn) |
| 799 | { |
| 800 | unsigned long pfn, block_end_pfn; |
| 801 | |
| 802 | /* Scan block by block. First and last block may be incomplete */ |
| 803 | pfn = start_pfn; |
| 804 | block_end_pfn = ALIGN(pfn + 1, pageblock_nr_pages); |
| 805 | |
| 806 | for (; pfn < end_pfn; pfn = block_end_pfn, |
| 807 | block_end_pfn += pageblock_nr_pages) { |
| 808 | |
| 809 | block_end_pfn = min(block_end_pfn, end_pfn); |
| 810 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 811 | if (!pageblock_pfn_to_page(pfn, block_end_pfn, cc->zone)) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 812 | continue; |
| 813 | |
| 814 | pfn = isolate_migratepages_block(cc, pfn, block_end_pfn, |
| 815 | ISOLATE_UNEVICTABLE); |
| 816 | |
Hugh Dickins | d692618 | 2016-05-05 16:22:15 -0700 | [diff] [blame] | 817 | if (!pfn) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 818 | break; |
Joonsoo Kim | 6ea41c0 | 2014-10-29 14:50:20 -0700 | [diff] [blame] | 819 | |
| 820 | if (cc->nr_migratepages == COMPACT_CLUSTER_MAX) |
| 821 | break; |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 822 | } |
| 823 | acct_isolated(cc->zone, cc); |
| 824 | |
| 825 | return pfn; |
| 826 | } |
| 827 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 828 | #endif /* CONFIG_COMPACTION || CONFIG_CMA */ |
| 829 | #ifdef CONFIG_COMPACTION |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 830 | /* |
| 831 | * Based on information in the current compact_control, find blocks |
| 832 | * suitable for isolating free pages from and then isolate them. |
| 833 | */ |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 834 | static void isolate_freepages(struct compact_control *cc) |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 835 | { |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 836 | struct zone *zone = cc->zone; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 837 | struct page *page; |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 838 | unsigned long block_start_pfn; /* start of current pageblock */ |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 839 | unsigned long isolate_start_pfn; /* exact pfn we start at */ |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 840 | unsigned long block_end_pfn; /* end of current pageblock */ |
| 841 | unsigned long low_pfn; /* lowest pfn scanner is able to scan */ |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 842 | int nr_freepages = cc->nr_freepages; |
| 843 | struct list_head *freelist = &cc->freepages; |
| 844 | |
| 845 | /* |
| 846 | * Initialise the free scanner. The starting point is where we last |
Vlastimil Babka | 49e068f | 2014-05-06 12:50:03 -0700 | [diff] [blame] | 847 | * successfully isolated from, zone-cached value, or the end of the |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 848 | * zone when isolating for the first time. For looping we also need |
| 849 | * this pfn aligned down to the pageblock boundary, because we do |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 850 | * block_start_pfn -= pageblock_nr_pages in the for loop. |
| 851 | * For ending point, take care when isolating in last pageblock of a |
| 852 | * a zone which ends in the middle of a pageblock. |
Vlastimil Babka | 49e068f | 2014-05-06 12:50:03 -0700 | [diff] [blame] | 853 | * The low boundary is the end of the pageblock the migration scanner |
| 854 | * is using. |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 855 | */ |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 856 | isolate_start_pfn = cc->free_pfn; |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 857 | block_start_pfn = cc->free_pfn & ~(pageblock_nr_pages-1); |
| 858 | block_end_pfn = min(block_start_pfn + pageblock_nr_pages, |
| 859 | zone_end_pfn(zone)); |
Vlastimil Babka | 7ed695e0 | 2014-01-21 15:51:09 -0800 | [diff] [blame] | 860 | low_pfn = ALIGN(cc->migrate_pfn + 1, pageblock_nr_pages); |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 861 | |
| 862 | /* |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 863 | * Isolate free pages until enough are available to migrate the |
| 864 | * pages on cc->migratepages. We stop searching if the migrate |
| 865 | * and free page scanners meet or enough free pages are isolated. |
| 866 | */ |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 867 | for (; block_start_pfn >= low_pfn && cc->nr_migratepages > nr_freepages; |
| 868 | block_end_pfn = block_start_pfn, |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 869 | block_start_pfn -= pageblock_nr_pages, |
| 870 | isolate_start_pfn = block_start_pfn) { |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 871 | unsigned long isolated; |
| 872 | |
David Rientjes | f6ea3ad | 2013-09-30 13:45:03 -0700 | [diff] [blame] | 873 | /* |
| 874 | * This can iterate a massively long zone without finding any |
| 875 | * suitable migration targets, so periodically check if we need |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 876 | * to schedule, or even abort async compaction. |
David Rientjes | f6ea3ad | 2013-09-30 13:45:03 -0700 | [diff] [blame] | 877 | */ |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 878 | if (!(block_start_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages)) |
| 879 | && compact_should_abort(cc)) |
| 880 | break; |
David Rientjes | f6ea3ad | 2013-09-30 13:45:03 -0700 | [diff] [blame] | 881 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 882 | page = pageblock_pfn_to_page(block_start_pfn, block_end_pfn, |
| 883 | zone); |
| 884 | if (!page) |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 885 | continue; |
| 886 | |
| 887 | /* Check the block is suitable for migration */ |
Linus Torvalds | 68e3e92 | 2012-06-03 20:05:57 -0700 | [diff] [blame] | 888 | if (!suitable_migration_target(page)) |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 889 | continue; |
Linus Torvalds | 68e3e92 | 2012-06-03 20:05:57 -0700 | [diff] [blame] | 890 | |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 891 | /* If isolation recently failed, do not retry */ |
| 892 | if (!isolation_suitable(cc, page)) |
| 893 | continue; |
| 894 | |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 895 | /* Found a block suitable for isolating free pages from. */ |
| 896 | isolated = isolate_freepages_block(cc, &isolate_start_pfn, |
David Rientjes | 3c76752 | 2016-06-24 14:50:10 -0700 | [diff] [blame^] | 897 | block_end_pfn, freelist, false); |
| 898 | /* If isolation failed early, do not continue needlessly */ |
| 899 | if (!isolated && isolate_start_pfn < block_end_pfn && |
| 900 | cc->nr_migratepages > cc->nr_freepages) |
| 901 | break; |
| 902 | |
Mel Gorman | f40d1e4 | 2012-10-08 16:32:36 -0700 | [diff] [blame] | 903 | nr_freepages += isolated; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 904 | |
| 905 | /* |
Vlastimil Babka | e14c720 | 2014-10-09 15:27:20 -0700 | [diff] [blame] | 906 | * Remember where the free scanner should restart next time, |
| 907 | * which is where isolate_freepages_block() left off. |
| 908 | * But if it scanned the whole pageblock, isolate_start_pfn |
| 909 | * now points at block_end_pfn, which is the start of the next |
| 910 | * pageblock. |
| 911 | * In that case we will however want to restart at the start |
| 912 | * of the previous pageblock. |
| 913 | */ |
| 914 | cc->free_pfn = (isolate_start_pfn < block_end_pfn) ? |
| 915 | isolate_start_pfn : |
| 916 | block_start_pfn - pageblock_nr_pages; |
| 917 | |
| 918 | /* |
Vlastimil Babka | e9ade56 | 2014-06-04 16:08:34 -0700 | [diff] [blame] | 919 | * Set a flag that we successfully isolated in this pageblock. |
| 920 | * In the next loop iteration, zone->compact_cached_free_pfn |
| 921 | * will not be updated and thus it will effectively contain the |
| 922 | * highest pageblock we isolated pages from. |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 923 | */ |
Vlastimil Babka | e9ade56 | 2014-06-04 16:08:34 -0700 | [diff] [blame] | 924 | if (isolated) |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 925 | cc->finished_update_free = true; |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 926 | |
| 927 | /* |
| 928 | * isolate_freepages_block() might have aborted due to async |
| 929 | * compaction being contended |
| 930 | */ |
| 931 | if (cc->contended) |
| 932 | break; |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 933 | } |
| 934 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 935 | /* split_free_page does not map the pages */ |
| 936 | map_pages(freelist); |
Michal Nazarewicz | 2fe86e0 | 2012-01-30 13:16:26 +0100 | [diff] [blame] | 937 | |
Vlastimil Babka | 7ed695e0 | 2014-01-21 15:51:09 -0800 | [diff] [blame] | 938 | /* |
| 939 | * If we crossed the migrate scanner, we want to keep it that way |
| 940 | * so that compact_finished() may detect this |
| 941 | */ |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 942 | if (block_start_pfn < low_pfn) |
Vlastimil Babka | e9ade56 | 2014-06-04 16:08:34 -0700 | [diff] [blame] | 943 | cc->free_pfn = cc->migrate_pfn; |
Vlastimil Babka | c96b9e5 | 2014-06-04 16:07:26 -0700 | [diff] [blame] | 944 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 945 | cc->nr_freepages = nr_freepages; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | /* |
| 949 | * This is a migrate-callback that "allocates" freepages by taking pages |
| 950 | * from the isolated freelists in the block we are migrating to. |
| 951 | */ |
| 952 | static struct page *compaction_alloc(struct page *migratepage, |
| 953 | unsigned long data, |
| 954 | int **result) |
| 955 | { |
| 956 | struct compact_control *cc = (struct compact_control *)data; |
| 957 | struct page *freepage; |
| 958 | |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 959 | /* |
| 960 | * Isolate free pages if necessary, and if we are not aborting due to |
| 961 | * contention. |
| 962 | */ |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 963 | if (list_empty(&cc->freepages)) { |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 964 | if (!cc->contended) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 965 | isolate_freepages(cc); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 966 | |
| 967 | if (list_empty(&cc->freepages)) |
| 968 | return NULL; |
| 969 | } |
| 970 | |
| 971 | freepage = list_entry(cc->freepages.next, struct page, lru); |
| 972 | list_del(&freepage->lru); |
| 973 | cc->nr_freepages--; |
| 974 | |
| 975 | return freepage; |
| 976 | } |
| 977 | |
| 978 | /* |
David Rientjes | d53aea3 | 2014-06-04 16:08:26 -0700 | [diff] [blame] | 979 | * This is a migrate-callback that "frees" freepages back to the isolated |
| 980 | * freelist. All pages on the freelist are from the same zone, so there is no |
| 981 | * special handling needed for NUMA. |
| 982 | */ |
| 983 | static void compaction_free(struct page *page, unsigned long data) |
| 984 | { |
| 985 | struct compact_control *cc = (struct compact_control *)data; |
| 986 | |
| 987 | list_add(&page->lru, &cc->freepages); |
| 988 | cc->nr_freepages++; |
| 989 | } |
| 990 | |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 991 | /* possible outcome of isolate_migratepages */ |
| 992 | typedef enum { |
| 993 | ISOLATE_ABORT, /* Abort compaction now */ |
| 994 | ISOLATE_NONE, /* No pages isolated, continue scanning */ |
| 995 | ISOLATE_SUCCESS, /* Pages isolated, migrate */ |
| 996 | } isolate_migrate_t; |
| 997 | |
| 998 | /* |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 999 | * Isolate all pages that can be migrated from the first suitable block, |
| 1000 | * starting at the block pointed to by the migrate scanner pfn within |
| 1001 | * compact_control. |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1002 | */ |
| 1003 | static isolate_migrate_t isolate_migratepages(struct zone *zone, |
| 1004 | struct compact_control *cc) |
| 1005 | { |
| 1006 | unsigned long low_pfn, end_pfn; |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1007 | struct page *page; |
| 1008 | const isolate_mode_t isolate_mode = |
| 1009 | (cc->mode == MIGRATE_ASYNC ? ISOLATE_ASYNC_MIGRATE : 0); |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1010 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1011 | /* |
| 1012 | * Start at where we last stopped, or beginning of the zone as |
| 1013 | * initialized by compact_zone() |
| 1014 | */ |
| 1015 | low_pfn = cc->migrate_pfn; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1016 | |
| 1017 | /* Only scan within a pageblock boundary */ |
Mel Gorman | a9aacbc | 2013-02-22 16:32:25 -0800 | [diff] [blame] | 1018 | end_pfn = ALIGN(low_pfn + 1, pageblock_nr_pages); |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1019 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1020 | /* |
| 1021 | * Iterate over whole pageblocks until we find the first suitable. |
| 1022 | * Do not cross the free scanner. |
| 1023 | */ |
| 1024 | for (; end_pfn <= cc->free_pfn; |
| 1025 | low_pfn = end_pfn, end_pfn += pageblock_nr_pages) { |
| 1026 | |
| 1027 | /* |
| 1028 | * This can potentially iterate a massively long zone with |
| 1029 | * many pageblocks unsuitable, so periodically check if we |
| 1030 | * need to schedule, or even abort async compaction. |
| 1031 | */ |
| 1032 | if (!(low_pfn % (SWAP_CLUSTER_MAX * pageblock_nr_pages)) |
| 1033 | && compact_should_abort(cc)) |
| 1034 | break; |
| 1035 | |
Vlastimil Babka | 7d49d88 | 2014-10-09 15:27:11 -0700 | [diff] [blame] | 1036 | page = pageblock_pfn_to_page(low_pfn, end_pfn, zone); |
| 1037 | if (!page) |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1038 | continue; |
| 1039 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1040 | /* If isolation recently failed, do not retry */ |
| 1041 | if (!isolation_suitable(cc, page)) |
| 1042 | continue; |
| 1043 | |
| 1044 | /* |
| 1045 | * For async compaction, also only scan in MOVABLE blocks. |
| 1046 | * Async compaction is optimistic to see if the minimum amount |
| 1047 | * of work satisfies the allocation. |
| 1048 | */ |
| 1049 | if (cc->mode == MIGRATE_ASYNC && |
| 1050 | !migrate_async_suitable(get_pageblock_migratetype(page))) |
| 1051 | continue; |
| 1052 | |
| 1053 | /* Perform the isolation */ |
| 1054 | low_pfn = isolate_migratepages_block(cc, low_pfn, end_pfn, |
| 1055 | isolate_mode); |
| 1056 | |
Hugh Dickins | b7c386c | 2015-02-12 15:00:28 -0800 | [diff] [blame] | 1057 | if (!low_pfn || cc->contended) { |
| 1058 | acct_isolated(zone, cc); |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1059 | return ISOLATE_ABORT; |
Hugh Dickins | b7c386c | 2015-02-12 15:00:28 -0800 | [diff] [blame] | 1060 | } |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1061 | |
| 1062 | /* |
| 1063 | * Either we isolated something and proceed with migration. Or |
| 1064 | * we failed and compact_zone should decide if we should |
| 1065 | * continue or not. |
| 1066 | */ |
| 1067 | break; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1068 | } |
| 1069 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1070 | acct_isolated(zone, cc); |
Vlastimil Babka | 1d5bfe1 | 2014-11-13 15:19:30 -0800 | [diff] [blame] | 1071 | /* |
| 1072 | * Record where migration scanner will be restarted. If we end up in |
| 1073 | * the same pageblock as the free scanner, make the scanners fully |
| 1074 | * meet so that compact_finished() terminates compaction. |
| 1075 | */ |
| 1076 | cc->migrate_pfn = (end_pfn <= cc->free_pfn) ? low_pfn : cc->free_pfn; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1077 | |
Vlastimil Babka | edc2ca6 | 2014-10-09 15:27:09 -0700 | [diff] [blame] | 1078 | return cc->nr_migratepages ? ISOLATE_SUCCESS : ISOLATE_NONE; |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1079 | } |
| 1080 | |
David Rientjes | 6d7ce55 | 2014-10-09 15:27:27 -0700 | [diff] [blame] | 1081 | static int compact_finished(struct zone *zone, struct compact_control *cc, |
| 1082 | const int migratetype) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1083 | { |
Mel Gorman | 8fb74b9 | 2013-01-11 14:32:16 -0800 | [diff] [blame] | 1084 | unsigned int order; |
Andrea Arcangeli | 5a03b05 | 2011-01-13 15:47:11 -0800 | [diff] [blame] | 1085 | unsigned long watermark; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1086 | |
Vlastimil Babka | be97657 | 2014-06-04 16:10:41 -0700 | [diff] [blame] | 1087 | if (cc->contended || fatal_signal_pending(current)) |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1088 | return COMPACT_PARTIAL; |
| 1089 | |
Mel Gorman | 753341a | 2012-10-08 16:32:40 -0700 | [diff] [blame] | 1090 | /* Compaction run completes if the migrate and free scanner meet */ |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 1091 | if (cc->free_pfn <= cc->migrate_pfn) { |
Vlastimil Babka | 55b7c4c | 2014-01-21 15:51:11 -0800 | [diff] [blame] | 1092 | /* Let the next compaction start anew. */ |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 1093 | zone->compact_cached_migrate_pfn[0] = zone->zone_start_pfn; |
| 1094 | zone->compact_cached_migrate_pfn[1] = zone->zone_start_pfn; |
Vlastimil Babka | 55b7c4c | 2014-01-21 15:51:11 -0800 | [diff] [blame] | 1095 | zone->compact_cached_free_pfn = zone_end_pfn(zone); |
| 1096 | |
Mel Gorman | 6299702 | 2012-10-08 16:32:47 -0700 | [diff] [blame] | 1097 | /* |
| 1098 | * Mark that the PG_migrate_skip information should be cleared |
| 1099 | * by kswapd when it goes to sleep. kswapd does not set the |
| 1100 | * flag itself as the decision to be clear should be directly |
| 1101 | * based on an allocation request. |
| 1102 | */ |
| 1103 | if (!current_is_kswapd()) |
| 1104 | zone->compact_blockskip_flush = true; |
| 1105 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1106 | return COMPACT_COMPLETE; |
Mel Gorman | bb13ffe | 2012-10-08 16:32:41 -0700 | [diff] [blame] | 1107 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1108 | |
Johannes Weiner | 82478fb | 2011-01-20 14:44:21 -0800 | [diff] [blame] | 1109 | /* |
| 1110 | * order == -1 is expected when compacting via |
| 1111 | * /proc/sys/vm/compact_memory |
| 1112 | */ |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1113 | if (cc->order == -1) |
| 1114 | return COMPACT_CONTINUE; |
| 1115 | |
Michal Hocko | 3957c77 | 2011-06-15 15:08:25 -0700 | [diff] [blame] | 1116 | /* Compaction run is not finished if the watermark is not met */ |
| 1117 | watermark = low_wmark_pages(zone); |
| 1118 | watermark += (1 << cc->order); |
| 1119 | |
| 1120 | if (!zone_watermark_ok(zone, cc->order, watermark, 0, 0)) |
| 1121 | return COMPACT_CONTINUE; |
| 1122 | |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1123 | /* Direct compactor: Is a suitable page free? */ |
Mel Gorman | 8fb74b9 | 2013-01-11 14:32:16 -0800 | [diff] [blame] | 1124 | for (order = cc->order; order < MAX_ORDER; order++) { |
| 1125 | struct free_area *area = &zone->free_area[order]; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1126 | |
Mel Gorman | 8fb74b9 | 2013-01-11 14:32:16 -0800 | [diff] [blame] | 1127 | /* Job done if page is free of the right migratetype */ |
David Rientjes | 6d7ce55 | 2014-10-09 15:27:27 -0700 | [diff] [blame] | 1128 | if (!list_empty(&area->free_list[migratetype])) |
Mel Gorman | 8fb74b9 | 2013-01-11 14:32:16 -0800 | [diff] [blame] | 1129 | return COMPACT_PARTIAL; |
| 1130 | |
| 1131 | /* Job done if allocation would set block type */ |
Joonsoo Kim | 42af81d | 2015-02-12 14:59:50 -0800 | [diff] [blame] | 1132 | if (order >= pageblock_order && area->nr_free) |
Mel Gorman | 8fb74b9 | 2013-01-11 14:32:16 -0800 | [diff] [blame] | 1133 | return COMPACT_PARTIAL; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1134 | } |
| 1135 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1136 | return COMPACT_CONTINUE; |
| 1137 | } |
| 1138 | |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1139 | /* |
| 1140 | * compaction_suitable: Is this suitable to run compaction on this zone now? |
| 1141 | * Returns |
| 1142 | * COMPACT_SKIPPED - If there are too few free pages for compaction |
| 1143 | * COMPACT_PARTIAL - If the allocation would succeed without compaction |
| 1144 | * COMPACT_CONTINUE - If compaction should run now |
| 1145 | */ |
| 1146 | unsigned long compaction_suitable(struct zone *zone, int order) |
| 1147 | { |
| 1148 | int fragindex; |
| 1149 | unsigned long watermark; |
| 1150 | |
| 1151 | /* |
Michal Hocko | 3957c77 | 2011-06-15 15:08:25 -0700 | [diff] [blame] | 1152 | * order == -1 is expected when compacting via |
| 1153 | * /proc/sys/vm/compact_memory |
| 1154 | */ |
| 1155 | if (order == -1) |
| 1156 | return COMPACT_CONTINUE; |
| 1157 | |
| 1158 | /* |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1159 | * Watermarks for order-0 must be met for compaction. Note the 2UL. |
| 1160 | * This is because during migration, copies of pages need to be |
| 1161 | * allocated and for a short time, the footprint is higher |
| 1162 | */ |
| 1163 | watermark = low_wmark_pages(zone) + (2UL << order); |
| 1164 | if (!zone_watermark_ok(zone, 0, watermark, 0, 0)) |
| 1165 | return COMPACT_SKIPPED; |
| 1166 | |
| 1167 | /* |
| 1168 | * fragmentation index determines if allocation failures are due to |
| 1169 | * low memory or external fragmentation |
| 1170 | * |
Shaohua Li | a582a73 | 2011-06-15 15:08:49 -0700 | [diff] [blame] | 1171 | * index of -1000 implies allocations might succeed depending on |
| 1172 | * watermarks |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1173 | * index towards 0 implies failure is due to lack of memory |
| 1174 | * index towards 1000 implies failure is due to fragmentation |
| 1175 | * |
| 1176 | * Only compact if a failure would be due to fragmentation. |
| 1177 | */ |
| 1178 | fragindex = fragmentation_index(zone, order); |
| 1179 | if (fragindex >= 0 && fragindex <= sysctl_extfrag_threshold) |
| 1180 | return COMPACT_SKIPPED; |
| 1181 | |
Shaohua Li | a582a73 | 2011-06-15 15:08:49 -0700 | [diff] [blame] | 1182 | if (fragindex == -1000 && zone_watermark_ok(zone, order, watermark, |
| 1183 | 0, 0)) |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1184 | return COMPACT_PARTIAL; |
| 1185 | |
| 1186 | return COMPACT_CONTINUE; |
| 1187 | } |
| 1188 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1189 | static int compact_zone(struct zone *zone, struct compact_control *cc) |
| 1190 | { |
| 1191 | int ret; |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 1192 | unsigned long start_pfn = zone->zone_start_pfn; |
Cody P Schafer | 108bcc9 | 2013-02-22 16:35:23 -0800 | [diff] [blame] | 1193 | unsigned long end_pfn = zone_end_pfn(zone); |
David Rientjes | 6d7ce55 | 2014-10-09 15:27:27 -0700 | [diff] [blame] | 1194 | const int migratetype = gfpflags_to_migratetype(cc->gfp_mask); |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1195 | const bool sync = cc->mode != MIGRATE_ASYNC; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1196 | |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1197 | ret = compaction_suitable(zone, cc->order); |
| 1198 | switch (ret) { |
| 1199 | case COMPACT_PARTIAL: |
| 1200 | case COMPACT_SKIPPED: |
| 1201 | /* Compaction is likely to fail */ |
| 1202 | return ret; |
| 1203 | case COMPACT_CONTINUE: |
| 1204 | /* Fall through to compaction */ |
| 1205 | ; |
| 1206 | } |
| 1207 | |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 1208 | /* |
Vlastimil Babka | d3132e4 | 2014-01-21 15:51:08 -0800 | [diff] [blame] | 1209 | * Clear pageblock skip if there were failures recently and compaction |
| 1210 | * is about to be retried after being deferred. kswapd does not do |
| 1211 | * this reset as it'll reset the cached information when going to sleep. |
| 1212 | */ |
| 1213 | if (compaction_restarting(zone, cc->order) && !current_is_kswapd()) |
| 1214 | __reset_isolation_suitable(zone); |
| 1215 | |
| 1216 | /* |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 1217 | * Setup to move all movable pages to the end of the zone. Used cached |
| 1218 | * information on where the scanners should start but check that it |
| 1219 | * is initialised by ensuring the values are within zone boundaries. |
| 1220 | */ |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1221 | cc->migrate_pfn = zone->compact_cached_migrate_pfn[sync]; |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 1222 | cc->free_pfn = zone->compact_cached_free_pfn; |
| 1223 | if (cc->free_pfn < start_pfn || cc->free_pfn > end_pfn) { |
| 1224 | cc->free_pfn = end_pfn & ~(pageblock_nr_pages-1); |
| 1225 | zone->compact_cached_free_pfn = cc->free_pfn; |
| 1226 | } |
| 1227 | if (cc->migrate_pfn < start_pfn || cc->migrate_pfn > end_pfn) { |
| 1228 | cc->migrate_pfn = start_pfn; |
David Rientjes | 35979ef | 2014-06-04 16:08:27 -0700 | [diff] [blame] | 1229 | zone->compact_cached_migrate_pfn[0] = cc->migrate_pfn; |
| 1230 | zone->compact_cached_migrate_pfn[1] = cc->migrate_pfn; |
Mel Gorman | c89511a | 2012-10-08 16:32:45 -0700 | [diff] [blame] | 1231 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1232 | |
Mel Gorman | 0eb927c | 2014-01-21 15:51:05 -0800 | [diff] [blame] | 1233 | trace_mm_compaction_begin(start_pfn, cc->migrate_pfn, cc->free_pfn, end_pfn); |
| 1234 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1235 | migrate_prep_local(); |
| 1236 | |
David Rientjes | 6d7ce55 | 2014-10-09 15:27:27 -0700 | [diff] [blame] | 1237 | while ((ret = compact_finished(zone, cc, migratetype)) == |
| 1238 | COMPACT_CONTINUE) { |
Minchan Kim | 9d502c1 | 2011-03-22 16:30:39 -0700 | [diff] [blame] | 1239 | int err; |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1240 | |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 1241 | switch (isolate_migratepages(zone, cc)) { |
| 1242 | case ISOLATE_ABORT: |
| 1243 | ret = COMPACT_PARTIAL; |
Rafael Aquini | 5733c7d | 2012-12-11 16:02:47 -0800 | [diff] [blame] | 1244 | putback_movable_pages(&cc->migratepages); |
Shaohua Li | e64c523 | 2012-10-08 16:32:27 -0700 | [diff] [blame] | 1245 | cc->nr_migratepages = 0; |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 1246 | goto out; |
| 1247 | case ISOLATE_NONE: |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1248 | continue; |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 1249 | case ISOLATE_SUCCESS: |
| 1250 | ; |
| 1251 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1252 | |
David Rientjes | d53aea3 | 2014-06-04 16:08:26 -0700 | [diff] [blame] | 1253 | err = migrate_pages(&cc->migratepages, compaction_alloc, |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1254 | compaction_free, (unsigned long)cc, cc->mode, |
Mel Gorman | 7b2a2d4 | 2012-10-19 14:07:31 +0100 | [diff] [blame] | 1255 | MR_COMPACTION); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1256 | |
Vlastimil Babka | f8c9301 | 2014-06-04 16:08:32 -0700 | [diff] [blame] | 1257 | trace_mm_compaction_migratepages(cc->nr_migratepages, err, |
| 1258 | &cc->migratepages); |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1259 | |
Vlastimil Babka | f8c9301 | 2014-06-04 16:08:32 -0700 | [diff] [blame] | 1260 | /* All pages were either migrated or will be released */ |
| 1261 | cc->nr_migratepages = 0; |
Minchan Kim | 9d502c1 | 2011-03-22 16:30:39 -0700 | [diff] [blame] | 1262 | if (err) { |
Rafael Aquini | 5733c7d | 2012-12-11 16:02:47 -0800 | [diff] [blame] | 1263 | putback_movable_pages(&cc->migratepages); |
Vlastimil Babka | 7ed695e0 | 2014-01-21 15:51:09 -0800 | [diff] [blame] | 1264 | /* |
| 1265 | * migrate_pages() may return -ENOMEM when scanners meet |
| 1266 | * and we want compact_finished() to detect it |
| 1267 | */ |
| 1268 | if (err == -ENOMEM && cc->free_pfn > cc->migrate_pfn) { |
David Rientjes | 4bf2bba | 2012-07-11 14:02:13 -0700 | [diff] [blame] | 1269 | ret = COMPACT_PARTIAL; |
| 1270 | goto out; |
| 1271 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1272 | } |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1273 | } |
| 1274 | |
Mel Gorman | f9e35b3 | 2011-06-15 15:08:52 -0700 | [diff] [blame] | 1275 | out: |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1276 | /* Release free pages and check accounting */ |
| 1277 | cc->nr_freepages -= release_freepages(&cc->freepages); |
| 1278 | VM_BUG_ON(cc->nr_freepages != 0); |
| 1279 | |
Mel Gorman | 0eb927c | 2014-01-21 15:51:05 -0800 | [diff] [blame] | 1280 | trace_mm_compaction_end(ret); |
| 1281 | |
Mel Gorman | 748446b | 2010-05-24 14:32:27 -0700 | [diff] [blame] | 1282 | return ret; |
| 1283 | } |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1284 | |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1285 | static unsigned long compact_zone_order(struct zone *zone, int order, |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1286 | gfp_t gfp_mask, enum migrate_mode mode, int *contended) |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1287 | { |
Shaohua Li | e64c523 | 2012-10-08 16:32:27 -0700 | [diff] [blame] | 1288 | unsigned long ret; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1289 | struct compact_control cc = { |
| 1290 | .nr_freepages = 0, |
| 1291 | .nr_migratepages = 0, |
| 1292 | .order = order, |
David Rientjes | 6d7ce55 | 2014-10-09 15:27:27 -0700 | [diff] [blame] | 1293 | .gfp_mask = gfp_mask, |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1294 | .zone = zone, |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1295 | .mode = mode, |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1296 | }; |
| 1297 | INIT_LIST_HEAD(&cc.freepages); |
| 1298 | INIT_LIST_HEAD(&cc.migratepages); |
| 1299 | |
Shaohua Li | e64c523 | 2012-10-08 16:32:27 -0700 | [diff] [blame] | 1300 | ret = compact_zone(zone, &cc); |
| 1301 | |
| 1302 | VM_BUG_ON(!list_empty(&cc.freepages)); |
| 1303 | VM_BUG_ON(!list_empty(&cc.migratepages)); |
| 1304 | |
| 1305 | *contended = cc.contended; |
| 1306 | return ret; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1307 | } |
| 1308 | |
Mel Gorman | 5e77190 | 2010-05-24 14:32:31 -0700 | [diff] [blame] | 1309 | int sysctl_extfrag_threshold = 500; |
| 1310 | |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1311 | /** |
| 1312 | * try_to_compact_pages - Direct compact to satisfy a high-order allocation |
| 1313 | * @zonelist: The zonelist used for the current allocation |
| 1314 | * @order: The order of the current allocation |
| 1315 | * @gfp_mask: The GFP mask of the current allocation |
| 1316 | * @nodemask: The allowed nodes to allocate from |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1317 | * @mode: The migration mode for async, sync light, or sync migration |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1318 | * @contended: Return value that determines if compaction was aborted due to |
| 1319 | * need_resched() or lock contention |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1320 | * @candidate_zone: Return the zone where we think allocation should succeed |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1321 | * |
| 1322 | * This is the main entry point for direct page compaction. |
| 1323 | */ |
| 1324 | unsigned long try_to_compact_pages(struct zonelist *zonelist, |
Mel Gorman | 77f1fe6 | 2011-01-13 15:45:57 -0800 | [diff] [blame] | 1325 | int order, gfp_t gfp_mask, nodemask_t *nodemask, |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1326 | enum migrate_mode mode, int *contended, |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1327 | struct zone **candidate_zone) |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1328 | { |
| 1329 | enum zone_type high_zoneidx = gfp_zone(gfp_mask); |
| 1330 | int may_enter_fs = gfp_mask & __GFP_FS; |
| 1331 | int may_perform_io = gfp_mask & __GFP_IO; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1332 | struct zoneref *z; |
| 1333 | struct zone *zone; |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1334 | int rc = COMPACT_DEFERRED; |
Bartlomiej Zolnierkiewicz | d95ea5d | 2012-10-08 16:32:05 -0700 | [diff] [blame] | 1335 | int alloc_flags = 0; |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1336 | int all_zones_contended = COMPACT_CONTENDED_LOCK; /* init for &= op */ |
| 1337 | |
| 1338 | *contended = COMPACT_CONTENDED_NONE; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1339 | |
Mel Gorman | 4ffb633 | 2012-10-08 16:29:09 -0700 | [diff] [blame] | 1340 | /* Check if the GFP flags allow compaction */ |
Andrea Arcangeli | c5a73c3 | 2011-01-13 15:47:11 -0800 | [diff] [blame] | 1341 | if (!order || !may_enter_fs || !may_perform_io) |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1342 | return COMPACT_SKIPPED; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1343 | |
Bartlomiej Zolnierkiewicz | d95ea5d | 2012-10-08 16:32:05 -0700 | [diff] [blame] | 1344 | #ifdef CONFIG_CMA |
David Rientjes | 43e7a34 | 2014-10-09 15:27:25 -0700 | [diff] [blame] | 1345 | if (gfpflags_to_migratetype(gfp_mask) == MIGRATE_MOVABLE) |
Bartlomiej Zolnierkiewicz | d95ea5d | 2012-10-08 16:32:05 -0700 | [diff] [blame] | 1346 | alloc_flags |= ALLOC_CMA; |
| 1347 | #endif |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1348 | /* Compact each zone in the list */ |
| 1349 | for_each_zone_zonelist_nodemask(zone, z, zonelist, high_zoneidx, |
| 1350 | nodemask) { |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1351 | int status; |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1352 | int zone_contended; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1353 | |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1354 | if (compaction_deferred(zone, order)) |
| 1355 | continue; |
| 1356 | |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1357 | status = compact_zone_order(zone, order, gfp_mask, mode, |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1358 | &zone_contended); |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1359 | rc = max(status, rc); |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1360 | /* |
| 1361 | * It takes at least one zone that wasn't lock contended |
| 1362 | * to clear all_zones_contended. |
| 1363 | */ |
| 1364 | all_zones_contended &= zone_contended; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1365 | |
Mel Gorman | 3e7d344 | 2011-01-13 15:45:56 -0800 | [diff] [blame] | 1366 | /* If a normal allocation would succeed, stop compacting */ |
Bartlomiej Zolnierkiewicz | d95ea5d | 2012-10-08 16:32:05 -0700 | [diff] [blame] | 1367 | if (zone_watermark_ok(zone, order, low_wmark_pages(zone), 0, |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1368 | alloc_flags)) { |
| 1369 | *candidate_zone = zone; |
| 1370 | /* |
| 1371 | * We think the allocation will succeed in this zone, |
| 1372 | * but it is not certain, hence the false. The caller |
| 1373 | * will repeat this with true if allocation indeed |
| 1374 | * succeeds in this zone. |
| 1375 | */ |
| 1376 | compaction_defer_reset(zone, order, false); |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1377 | /* |
| 1378 | * It is possible that async compaction aborted due to |
| 1379 | * need_resched() and the watermarks were ok thanks to |
| 1380 | * somebody else freeing memory. The allocation can |
| 1381 | * however still fail so we better signal the |
| 1382 | * need_resched() contention anyway (this will not |
| 1383 | * prevent the allocation attempt). |
| 1384 | */ |
| 1385 | if (zone_contended == COMPACT_CONTENDED_SCHED) |
| 1386 | *contended = COMPACT_CONTENDED_SCHED; |
| 1387 | |
| 1388 | goto break_loop; |
| 1389 | } |
| 1390 | |
| 1391 | if (mode != MIGRATE_ASYNC) { |
Vlastimil Babka | 53853e2 | 2014-10-09 15:27:02 -0700 | [diff] [blame] | 1392 | /* |
| 1393 | * We think that allocation won't succeed in this zone |
| 1394 | * so we defer compaction there. If it ends up |
| 1395 | * succeeding after all, it will be reset. |
| 1396 | */ |
| 1397 | defer_compaction(zone, order); |
| 1398 | } |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1399 | |
| 1400 | /* |
| 1401 | * We might have stopped compacting due to need_resched() in |
| 1402 | * async compaction, or due to a fatal signal detected. In that |
| 1403 | * case do not try further zones and signal need_resched() |
| 1404 | * contention. |
| 1405 | */ |
| 1406 | if ((zone_contended == COMPACT_CONTENDED_SCHED) |
| 1407 | || fatal_signal_pending(current)) { |
| 1408 | *contended = COMPACT_CONTENDED_SCHED; |
| 1409 | goto break_loop; |
| 1410 | } |
| 1411 | |
| 1412 | continue; |
| 1413 | break_loop: |
| 1414 | /* |
| 1415 | * We might not have tried all the zones, so be conservative |
| 1416 | * and assume they are not all lock contended. |
| 1417 | */ |
| 1418 | all_zones_contended = 0; |
| 1419 | break; |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1420 | } |
| 1421 | |
Vlastimil Babka | 1f9efde | 2014-10-09 15:27:14 -0700 | [diff] [blame] | 1422 | /* |
| 1423 | * If at least one zone wasn't deferred or skipped, we report if all |
| 1424 | * zones that were tried were lock contended. |
| 1425 | */ |
| 1426 | if (rc > COMPACT_SKIPPED && all_zones_contended) |
| 1427 | *contended = COMPACT_CONTENDED_LOCK; |
| 1428 | |
Mel Gorman | 56de726 | 2010-05-24 14:32:30 -0700 | [diff] [blame] | 1429 | return rc; |
| 1430 | } |
| 1431 | |
| 1432 | |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1433 | /* Compact all zones within a node */ |
Andrew Morton | 7103f16 | 2013-02-22 16:32:33 -0800 | [diff] [blame] | 1434 | static void __compact_pgdat(pg_data_t *pgdat, struct compact_control *cc) |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1435 | { |
| 1436 | int zoneid; |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1437 | struct zone *zone; |
| 1438 | |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1439 | for (zoneid = 0; zoneid < MAX_NR_ZONES; zoneid++) { |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1440 | |
| 1441 | zone = &pgdat->node_zones[zoneid]; |
| 1442 | if (!populated_zone(zone)) |
| 1443 | continue; |
| 1444 | |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1445 | cc->nr_freepages = 0; |
| 1446 | cc->nr_migratepages = 0; |
| 1447 | cc->zone = zone; |
| 1448 | INIT_LIST_HEAD(&cc->freepages); |
| 1449 | INIT_LIST_HEAD(&cc->migratepages); |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1450 | |
Dan Carpenter | aad6ec3 | 2012-03-21 16:33:54 -0700 | [diff] [blame] | 1451 | if (cc->order == -1 || !compaction_deferred(zone, cc->order)) |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1452 | compact_zone(zone, cc); |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1453 | |
Rik van Riel | aff6224 | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1454 | if (cc->order > 0) { |
Vlastimil Babka | de6c60a | 2014-01-21 15:51:07 -0800 | [diff] [blame] | 1455 | if (zone_watermark_ok(zone, cc->order, |
| 1456 | low_wmark_pages(zone), 0, 0)) |
| 1457 | compaction_defer_reset(zone, cc->order, false); |
Rik van Riel | aff6224 | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1458 | } |
| 1459 | |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1460 | VM_BUG_ON(!list_empty(&cc->freepages)); |
| 1461 | VM_BUG_ON(!list_empty(&cc->migratepages)); |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1462 | } |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
Andrew Morton | 7103f16 | 2013-02-22 16:32:33 -0800 | [diff] [blame] | 1465 | void compact_pgdat(pg_data_t *pgdat, int order) |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1466 | { |
| 1467 | struct compact_control cc = { |
| 1468 | .order = order, |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1469 | .mode = MIGRATE_ASYNC, |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1470 | }; |
| 1471 | |
Mel Gorman | 3a7200a | 2013-09-11 14:22:19 -0700 | [diff] [blame] | 1472 | if (!order) |
| 1473 | return; |
| 1474 | |
Andrew Morton | 7103f16 | 2013-02-22 16:32:33 -0800 | [diff] [blame] | 1475 | __compact_pgdat(pgdat, &cc); |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1476 | } |
| 1477 | |
Andrew Morton | 7103f16 | 2013-02-22 16:32:33 -0800 | [diff] [blame] | 1478 | static void compact_node(int nid) |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1479 | { |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1480 | struct compact_control cc = { |
| 1481 | .order = -1, |
David Rientjes | e0b9dae | 2014-06-04 16:08:28 -0700 | [diff] [blame] | 1482 | .mode = MIGRATE_SYNC, |
David Rientjes | 91ca918 | 2014-04-03 14:47:23 -0700 | [diff] [blame] | 1483 | .ignore_skip_hint = true, |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1484 | }; |
| 1485 | |
Andrew Morton | 7103f16 | 2013-02-22 16:32:33 -0800 | [diff] [blame] | 1486 | __compact_pgdat(NODE_DATA(nid), &cc); |
Rik van Riel | 7be62de | 2012-03-21 16:33:52 -0700 | [diff] [blame] | 1487 | } |
| 1488 | |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1489 | /* Compact all nodes in the system */ |
Jason Liu | 7964c06 | 2013-01-11 14:31:47 -0800 | [diff] [blame] | 1490 | static void compact_nodes(void) |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1491 | { |
| 1492 | int nid; |
| 1493 | |
Hugh Dickins | 8575ec2 | 2012-03-21 16:33:53 -0700 | [diff] [blame] | 1494 | /* Flush pending updates to the LRU lists */ |
| 1495 | lru_add_drain_all(); |
| 1496 | |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1497 | for_each_online_node(nid) |
| 1498 | compact_node(nid); |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | /* The written value is actually unused, all memory is compacted */ |
| 1502 | int sysctl_compact_memory; |
| 1503 | |
| 1504 | /* This is the entry point for compacting all nodes via /proc/sys/vm */ |
| 1505 | int sysctl_compaction_handler(struct ctl_table *table, int write, |
| 1506 | void __user *buffer, size_t *length, loff_t *ppos) |
| 1507 | { |
| 1508 | if (write) |
Jason Liu | 7964c06 | 2013-01-11 14:31:47 -0800 | [diff] [blame] | 1509 | compact_nodes(); |
Mel Gorman | 76ab0f5 | 2010-05-24 14:32:28 -0700 | [diff] [blame] | 1510 | |
| 1511 | return 0; |
| 1512 | } |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1513 | |
Mel Gorman | 5e77190 | 2010-05-24 14:32:31 -0700 | [diff] [blame] | 1514 | int sysctl_extfrag_handler(struct ctl_table *table, int write, |
| 1515 | void __user *buffer, size_t *length, loff_t *ppos) |
| 1516 | { |
| 1517 | proc_dointvec_minmax(table, write, buffer, length, ppos); |
| 1518 | |
| 1519 | return 0; |
| 1520 | } |
| 1521 | |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1522 | #if defined(CONFIG_SYSFS) && defined(CONFIG_NUMA) |
Rashika Kheria | 74e77fb | 2014-04-03 14:48:01 -0700 | [diff] [blame] | 1523 | static ssize_t sysfs_compact_node(struct device *dev, |
Kay Sievers | 10fbcf4 | 2011-12-21 14:48:43 -0800 | [diff] [blame] | 1524 | struct device_attribute *attr, |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1525 | const char *buf, size_t count) |
| 1526 | { |
Hugh Dickins | 8575ec2 | 2012-03-21 16:33:53 -0700 | [diff] [blame] | 1527 | int nid = dev->id; |
| 1528 | |
| 1529 | if (nid >= 0 && nid < nr_node_ids && node_online(nid)) { |
| 1530 | /* Flush pending updates to the LRU lists */ |
| 1531 | lru_add_drain_all(); |
| 1532 | |
| 1533 | compact_node(nid); |
| 1534 | } |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1535 | |
| 1536 | return count; |
| 1537 | } |
Kay Sievers | 10fbcf4 | 2011-12-21 14:48:43 -0800 | [diff] [blame] | 1538 | static DEVICE_ATTR(compact, S_IWUSR, NULL, sysfs_compact_node); |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1539 | |
| 1540 | int compaction_register_node(struct node *node) |
| 1541 | { |
Kay Sievers | 10fbcf4 | 2011-12-21 14:48:43 -0800 | [diff] [blame] | 1542 | return device_create_file(&node->dev, &dev_attr_compact); |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1543 | } |
| 1544 | |
| 1545 | void compaction_unregister_node(struct node *node) |
| 1546 | { |
Kay Sievers | 10fbcf4 | 2011-12-21 14:48:43 -0800 | [diff] [blame] | 1547 | return device_remove_file(&node->dev, &dev_attr_compact); |
Mel Gorman | ed4a6d7 | 2010-05-24 14:32:29 -0700 | [diff] [blame] | 1548 | } |
| 1549 | #endif /* CONFIG_SYSFS && CONFIG_NUMA */ |
Michal Nazarewicz | ff9543f | 2011-12-29 13:09:50 +0100 | [diff] [blame] | 1550 | |
| 1551 | #endif /* CONFIG_COMPACTION */ |