The patch titled Subject: mm: vmpressure: fix scan window after SWAP_CLUSTER_MAX increase has been removed from the -mm tree. Its filename was mm-increase-swap_cluster_max-to-batch-tlb-flushes-fix.patch This patch was dropped because it was folded into mm-increase-swap_cluster_max-to-batch-tlb-flushes.patch ------------------------------------------------------ From: Johannes Weiner <hannes@xxxxxxxxxxx> Subject: mm: vmpressure: fix scan window after SWAP_CLUSTER_MAX increase mm-increase-swap_cluster_max-to-batch-tlb-flushes.patch changed SWAP_CLUSTER_MAX from 32 pages to 256 pages, inadvertantly switching the scan window for vmpressure detection from 2MB to 16MB. Fix. Signed-off-by: Johannes Weiner <hannes@xxxxxxxxxxx> Acked-by: Mel Gorman <mgorman@xxxxxxxxxxxxxxxxxxx> Cc: Rik van Riel <riel@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmpressure.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/vmpressure.c~mm-increase-swap_cluster_max-to-batch-tlb-flushes-fix mm/vmpressure.c --- a/mm/vmpressure.c~mm-increase-swap_cluster_max-to-batch-tlb-flushes-fix +++ a/mm/vmpressure.c @@ -38,7 +38,7 @@ * TODO: Make the window size depend on machine size, as we do for vmstat * thresholds. Currently we set it to 512 pages (2MB for 4KB pages). */ -static const unsigned long vmpressure_win = SWAP_CLUSTER_MAX * 16; +static const unsigned long vmpressure_win = SWAP_CLUSTER_MAX; /* * These thresholds are used when we account memory pressure through _ Patches currently in -mm which might be from hannes@xxxxxxxxxxx are maintainers-make-vladimir-co-maintainer-of-the-memory-controller.patch mm-page_alloc-generalize-the-dirty-balance-reserve.patch proc-meminfo-estimate-available-memory-more-conservatively.patch mm-increase-swap_cluster_max-to-batch-tlb-flushes.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