The patch titled Subject: set_page_huge_active() can be static has been removed from the -mm tree. Its filename was mm-hugetlb-introduce-pagehugeactive-flag-fix-fix.patch This patch was dropped because it was folded into mm-hugetlb-introduce-pagehugeactive-flag.patch ------------------------------------------------------ From: kbuild test robot <fengguang.wu@xxxxxxxxx> Subject: set_page_huge_active() can be static Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx> Cc: Naoya Horiguchi <n-horiguchi@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/hugetlb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN mm/hugetlb.c~mm-hugetlb-introduce-pagehugeactive-flag-fix-fix mm/hugetlb.c --- a/mm/hugetlb.c~mm-hugetlb-introduce-pagehugeactive-flag-fix-fix +++ a/mm/hugetlb.c @@ -937,13 +937,13 @@ bool page_huge_active(struct page *page) } /* never called for tail page */ -void set_page_huge_active(struct page *page) +static void set_page_huge_active(struct page *page) { VM_BUG_ON_PAGE(!PageHeadHuge(page), page); SetPagePrivate(&page[1]); } -void clear_page_huge_active(struct page *page) +static void clear_page_huge_active(struct page *page) { VM_BUG_ON_PAGE(!PageHeadHuge(page), page); ClearPagePrivate(&page[1]); _ Patches currently in -mm which might be from fengguang.wu@xxxxxxxxx are origin.patch mm-hugetlb-introduce-pagehugeactive-flag.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