The patch titled Subject: mm/z3fold.c: z3fold_page_isolate() can be static has been added to the -mm tree. Its filename is z3fold-support-page-migration-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/z3fold-support-page-migration-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/z3fold-support-page-migration-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: kbuild test robot <lkp@xxxxxxxxx> Subject: mm/z3fold.c: z3fold_page_isolate() can be static Link: http://lkml.kernel.org/r/20190419130924.GA161478@ivb42 Fixes: eaa5a15c91fe ("mm/z3fold.c: support page migration") Signed-off-by: kbuild test robot <lkp@xxxxxxxxx> Cc: Vitaly Wool <vitaly.vul@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/z3fold.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/mm/z3fold.c~z3fold-support-page-migration-fix +++ a/mm/z3fold.c @@ -1285,7 +1285,7 @@ static u64 z3fold_get_pool_size(struct z return atomic64_read(&pool->pages_nr); } -bool z3fold_page_isolate(struct page *page, isolate_mode_t mode) +static bool z3fold_page_isolate(struct page *page, isolate_mode_t mode) { struct z3fold_header *zhdr; struct z3fold_pool *pool; @@ -1320,8 +1320,8 @@ out: return false; } -int z3fold_page_migrate(struct address_space *mapping, struct page *newpage, - struct page *page, enum migrate_mode mode) +static int z3fold_page_migrate(struct address_space *mapping, struct page *newpage, + struct page *page, enum migrate_mode mode) { struct z3fold_header *zhdr, *new_zhdr; struct z3fold_pool *pool; @@ -1379,7 +1379,7 @@ int z3fold_page_migrate(struct address_s return 0; } -void z3fold_page_putback(struct page *page) +static void z3fold_page_putback(struct page *page) { struct z3fold_header *zhdr; struct z3fold_pool *pool; _ Patches currently in -mm which might be from lkp@xxxxxxxxx are z3fold-support-page-migration-fix.patch