The patch titled Subject: mm: move lru_to_page to mm_inline.h has been removed from the -mm tree. Its filename was mm-move-lru_to_page-to-mm_inlineh.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Geliang Tang <geliangtang@xxxxxxx> Subject: mm: move lru_to_page to mm_inline.h Move lru_to_page() from internal.h to mm_inline.h. Signed-off-by: Geliang Tang <geliangtang@xxxxxxx> Acked-by: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/mm_inline.h | 2 ++ mm/internal.h | 2 -- mm/readahead.c | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff -puN include/linux/mm_inline.h~mm-move-lru_to_page-to-mm_inlineh include/linux/mm_inline.h --- a/include/linux/mm_inline.h~mm-move-lru_to_page-to-mm_inlineh +++ a/include/linux/mm_inline.h @@ -100,4 +100,6 @@ static __always_inline enum lru_list pag return lru; } +#define lru_to_page(head) (list_entry((head)->prev, struct page, lru)) + #endif diff -puN mm/internal.h~mm-move-lru_to_page-to-mm_inlineh mm/internal.h --- a/mm/internal.h~mm-move-lru_to_page-to-mm_inlineh +++ a/mm/internal.h @@ -119,8 +119,6 @@ extern int isolate_lru_page(struct page extern void putback_lru_page(struct page *page); extern bool zone_reclaimable(struct zone *zone); -#define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru)) - /* * in mm/rmap.c: */ diff -puN mm/readahead.c~mm-move-lru_to_page-to-mm_inlineh mm/readahead.c --- a/mm/readahead.c~mm-move-lru_to_page-to-mm_inlineh +++ a/mm/readahead.c @@ -17,6 +17,7 @@ #include <linux/pagemap.h> #include <linux/syscalls.h> #include <linux/file.h> +#include <linux/mm_inline.h> #include "internal.h" _ Patches currently in -mm which might be from geliangtang@xxxxxxx are hfs-use-list_for_each_entry-in-hfs_cat_delete.patch kexec-use-list_for_each_entry_safe-in-kimage_free_page_list.patch rapidio-use-kobj_to_dev.patch dma-mapping-use-offset_in_page-macro.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