aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/page_alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 88eb59dd7ac6..6965be064a31 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -1611,8 +1611,9 @@ nofail_alloc:
1611 * Don't let big-order allocations loop unless the caller explicitly 1611 * Don't let big-order allocations loop unless the caller explicitly
1612 * requests that. Wait for some write requests to complete then retry. 1612 * requests that. Wait for some write requests to complete then retry.
1613 * 1613 *
1614 * In this implementation, __GFP_REPEAT means __GFP_NOFAIL for order 1614 * In this implementation, either order <= PAGE_ALLOC_COSTLY_ORDER or
1615 * <= 3, but that may not be true in other implementations. 1615 * __GFP_REPEAT mean __GFP_NOFAIL, but that may not be true in other
1616 * implementations.
1616 */ 1617 */
1617 do_retry = 0; 1618 do_retry = 0;
1618 if (!(gfp_mask & __GFP_NORETRY)) { 1619 if (!(gfp_mask & __GFP_NORETRY)) {