The patch titled Subject: mm: fix node_pages_scanned has been removed from the -mm tree. Its filename was mm-show-node_pages_scanned-per-node-not-zone-fix.patch This patch was dropped because it was folded into mm-show-node_pages_scanned-per-node-not-zone.patch ------------------------------------------------------ From: Minchan Kim <minchan@xxxxxxxxxx> Subject: mm: fix node_pages_scanned Use pgdat for node stat instead of zone->pgdat. Link: http://lkml.kernel.org/r/20160716101431.GA10305@bbox Signed-off-by: Minchan Kim <minchan@xxxxxxxxxx> 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-show-node_pages_scanned-per-node-not-zone-fix mm/page_alloc.c --- a/mm/page_alloc.c~mm-show-node_pages_scanned-per-node-not-zone-fix +++ a/mm/page_alloc.c @@ -4336,7 +4336,7 @@ void show_free_areas(unsigned int filter K(node_page_state(pgdat, NR_SHMEM)), K(node_page_state(pgdat, NR_WRITEBACK_TEMP)), K(node_page_state(pgdat, NR_UNSTABLE_NFS)), - node_page_state(zone->zone_pgdat, NR_PAGES_SCANNED), + node_page_state(pgdat, NR_PAGES_SCANNED), !pgdat_reclaimable(pgdat) ? "yes" : "no"); } _ Patches currently in -mm which might be from minchan@xxxxxxxxxx are mm-page_alloc-fix-dirtyable-highmem-calculation.patch mm-show-node_pages_scanned-per-node-not-zone.patch mm-add-per-zone-lru-list-stat.patch mm-bail-out-in-shrin_inactive_list.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