The patch titled thp: add PageTransCompound has been removed from the -mm tree. Its filename was thp-add-pagetranscompound.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: thp: add PageTransCompound From: Andrea Arcangeli <aarcange@xxxxxxxxxx> Remove branches when CONFIG_TRANSPARENT_HUGEPAGE=n. Signed-off-by: Andrea Arcangeli <aarcange@xxxxxxxxxx> Acked-by: Mel Gorman <mel@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/page-flags.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff -puN include/linux/page-flags.h~thp-add-pagetranscompound include/linux/page-flags.h --- a/include/linux/page-flags.h~thp-add-pagetranscompound +++ a/include/linux/page-flags.h @@ -429,6 +429,11 @@ static inline int PageTransCompound(stru return PageCompound(page); } +static inline int PageTransCompound(struct page *page) +{ + return PageCompound(page); +} + #else static inline int PageTransHuge(struct page *page) @@ -440,6 +445,11 @@ static inline int PageTransCompound(stru { return 0; } + +static inline int PageTransCompound(struct page *page) +{ + return 0; +} #endif #ifdef CONFIG_MMU _ Patches currently in -mm which might be from aarcange@xxxxxxxxxx are origin.patch linux-next.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