The patch titled Subject: mm: lru_deactivate_fn should clear PG_referenced has been removed from the -mm tree. Its filename was mm-move-lazy-free-pages-to-inactive-list-fix-fix-fix.patch This patch was dropped because it was folded into mm-move-lazy-free-pages-to-inactive-list.patch ------------------------------------------------------ From: Minchan Kim <minchan@xxxxxxxxxx> Subject: mm: lru_deactivate_fn should clear PG_referenced deactivate_page aims for accelerate for reclaiming through moving pages from active list to inactive list so we should clear PG_referenced for the goal. Signed-off-by: Minchan Kim <minchan@xxxxxxxxxx> Suggested-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/swap.c | 1 + 1 file changed, 1 insertion(+) diff -puN mm/swap.c~mm-move-lazy-free-pages-to-inactive-list-fix-fix-fix mm/swap.c --- a/mm/swap.c~mm-move-lazy-free-pages-to-inactive-list-fix-fix-fix +++ a/mm/swap.c @@ -565,6 +565,7 @@ static void lru_deactivate_fn(struct pag del_page_from_lru_list(page, lruvec, lru + LRU_ACTIVE); ClearPageActive(page); + ClearPageReferenced(page); add_page_to_lru_list(page, lruvec, lru); __count_vm_event(PGDEACTIVATE); _ Patches currently in -mm which might be from minchan@xxxxxxxxxx are x86-add-pmd_-for-thp.patch sparc-add-pmd_-for-thp.patch powerpc-add-pmd_-for-thp.patch arm-add-pmd_mkclean-for-thp.patch arm64-add-pmd_-for-thp.patch mm-support-madvisemadv_free.patch mm-mark-stable-page-dirty-in-ksm.patch mm-dont-split-thp-page-when-syscall-is-called.patch mm-free-swp_entry-in-madvise_free.patch mm-move-lazy-free-pages-to-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