The patch titled Subject: mm/page_alloc.c: fix never set ALLOC_NOFRAGMENT flag has been added to the -mm tree. Its filename is mm-page_alloc-fix-never-set-alloc_nofragment-flag.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-page_alloc-fix-never-set-alloc_nofragment-flag.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-page_alloc-fix-never-set-alloc_nofragment-flag.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Andrey Ryabinin <aryabinin@xxxxxxxxxxxxx> Subject: mm/page_alloc.c: fix never set ALLOC_NOFRAGMENT flag 0a79cdad5eb2 ("mm: use alloc_flags to record if kswapd can wake") removed setting of the ALLOC_NOFRAGMENT flag. Bring it back. Link: http://lkml.kernel.org/r/20190423120806.3503-2-aryabinin@xxxxxxxxxxxxx Fixes: 0a79cdad5eb2 ("mm: use alloc_flags to record if kswapd can wake") Signed-off-by: Andrey Ryabinin <aryabinin@xxxxxxxxxxxxx> Acked-by: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/mm/page_alloc.c~mm-page_alloc-fix-never-set-alloc_nofragment-flag +++ a/mm/page_alloc.c @@ -3436,7 +3436,7 @@ alloc_flags_nofragment(struct zone *zone return alloc_flags; if (zone_idx(zone) != ZONE_NORMAL) - goto out; + return alloc_flags; /* * If ZONE_DMA32 exists, assume it is the one after ZONE_NORMAL and @@ -3445,9 +3445,9 @@ alloc_flags_nofragment(struct zone *zone */ BUILD_BUG_ON(ZONE_NORMAL - ZONE_DMA32 != 1); if (nr_online_nodes > 1 && !populated_zone(--zone)) - goto out; + return alloc_flags; -out: + alloc_flags |= ALLOC_NOFRAGMENT; #endif /* CONFIG_ZONE_DMA32 */ return alloc_flags; } _ Patches currently in -mm which might be from aryabinin@xxxxxxxxxxxxx are mm-page_alloc-avoid-potential-null-pointer-dereference.patch mm-page_alloc-fix-never-set-alloc_nofragment-flag.patch mm-vmscan-remove-unused-lru_pages-argument.patch