aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorAndrea Arcangeli <aarcange@redhat.com>2011-05-24 20:11:38 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2011-05-25 11:39:10 -0400
commitc6a140bf164829769499b5e50d380893da39b29e (patch)
tree0cfcbd5356cd3cebabba2334dcfdaec6ea47d816 /mm/page_alloc.c
parenta6cccdc36c966e51fd969560d870cfd37afbfa9c (diff)
mm/compaction: reverse the change that forbade sync migraton with __GFP_NO_KSWAPD
It's uncertain this has been beneficial, so it's safer to undo it. All other compaction users would still go in synchronous mode if a first attempt at async compaction failed. Hopefully we don't need to force special behavior for THP (which is the only __GFP_NO_KSWAPD user so far and it's the easier to exercise and to be noticeable). This also make __GFP_NO_KSWAPD return to its original strict semantics specific to bypass kswapd, as THP allocations have khugepaged for the async THP allocations/compactions. Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Cc: Alex Villacis Lasso <avillaci@fiec.espol.edu.ec> Cc: Mel Gorman <mel@csn.ul.ie> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 77773329aa72..83eaa2eb72f8 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2107,7 +2107,7 @@ rebalance:
2107 sync_migration); 2107 sync_migration);
2108 if (page) 2108 if (page)
2109 goto got_pg; 2109 goto got_pg;
2110 sync_migration = !(gfp_mask & __GFP_NO_KSWAPD); 2110 sync_migration = true;
2111 2111
2112 /* Try direct reclaim and then allocating */ 2112 /* Try direct reclaim and then allocating */
2113 page = __alloc_pages_direct_reclaim(gfp_mask, order, 2113 page = __alloc_pages_direct_reclaim(gfp_mask, order,