The patch titled Subject: mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim-fix has been removed from the -mm tree. Its filename was mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim-fix.patch This patch was dropped because it was folded into mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim.patch ------------------------------------------------------ From: Michal Hocko <mhocko@xxxxxxx> Subject: mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim-fix Dan Carpenter has reported that (alloc_flags & ALLOC_WMARK_MIN) test doesn't make much sense as the flag is 0 and it is in fact intended for wmark indexing rather than being used as a flag. Signed-off-by: Michal Hocko <mhocko@xxxxxxx> Cc: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Cc: Mel Gorman <mgorman@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page_alloc.c~mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim-fix mm/page_alloc.c --- a/mm/page_alloc.c~mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim-fix +++ a/mm/page_alloc.c @@ -1955,7 +1955,7 @@ zonelist_scan: * when the watermark is between the low and * min watermarks. */ - if ((alloc_flags & ALLOC_WMARK_MIN) || + if (((alloc_flags & ALLOC_WMARK_MASK) == ALLOC_WMARK_MIN) || ret == ZONE_RECLAIM_SOME) goto this_zone_full; _ Patches currently in -mm which might be from mhocko@xxxxxxx are origin.patch mm-show_mem-suppress-page-counts-in-non-blockable-contexts.patch rmap-recompute-pgoff-for-unmapping-huge-page.patch memcg-keep-prevs-css-alive-for-the-whole-mem_cgroup_iter.patch memcg-rework-mem_cgroup_iter-to-use-cgroup-iterators.patch memcg-relax-memcg-iter-caching.patch memcg-simplify-mem_cgroup_iter.patch memcg-further-simplify-mem_cgroup_iter.patch cgroup-remove-css_get_next.patch mm-hugetlb-add-more-arch-defined-huge_pte-functions.patch memcg-do-not-check-for-do_swap_account-in-mem_cgroup_readwritereset.patch mm-hugetlb-include-hugepages-in-meminfo.patch mm-page_alloc-avoid-marking-zones-full-prematurely-after-zone_reclaim.patch memcg-add-memorypressure_level-events.patch memcg-avoid-accessing-memcg-after-releasing-reference.patch mm-memcg-give-exiting-processes-access-to-memory-reserves.patch memcg-take-reference-before-releasing-rcu_read_lock.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html