The patch titled Subject: mm: migrate: add isolate_movable_page() stub implementation has been added to the -mm tree. Its filename is hwpoison-soft-offlining-for-non-lru-movable-page-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/hwpoison-soft-offlining-for-non-lru-movable-page-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/hwpoison-soft-offlining-for-non-lru-movable-page-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/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: mm: migrate: add isolate_movable_page() stub implementation Without CONFIG_MIGRATION, we get a build failure when trying to call isolate_movable_page(): mm/memory-failure.c: In function '__soft_offline_page': mm/memory-failure.c:1656:10: error: implicit declaration of function 'isolate_movable_page';did you mean 'isolate_huge_page'? [-Werror=implicit-function-declaration] This adds one more static inline helper function in the header declaring it. This returns false to indicate that the page was not isolated. Fixes: mmotm ("HWPOISON: soft offlining for non-lru movable pages") Fixes: bda807d44454 ("mm: migrate: support non-lru movable page migration") Link: http://lkml.kernel.org/r/20170125222752.1314498-1-arnd@xxxxxxxx Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Yisheng Xie <xieyisheng1@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/migrate.h | 3 +++ 1 file changed, 3 insertions(+) diff -puN include/linux/migrate.h~hwpoison-soft-offlining-for-non-lru-movable-page-fix include/linux/migrate.h --- a/include/linux/migrate.h~hwpoison-soft-offlining-for-non-lru-movable-page-fix +++ a/include/linux/migrate.h @@ -57,6 +57,9 @@ static inline int migrate_pages(struct l int reason) { return -ENOSYS; } +static inline bool isolate_movable_page(struct page *page, isolate_mode_t mode) + { return false; } + static inline int migrate_prep(void) { return -ENOSYS; } static inline int migrate_prep_local(void) { return -ENOSYS; } _ Patches currently in -mm which might be from arnd@xxxxxxxx are mm-track-active-portions-of-a-section-at-boot-fix-fix.patch mm-support-section-unaligned-zone_device-memory-ranges-fix.patch mm-fs-reduce-fault-page_mkwrite-and-pfn_mkwrite-to-take-only-vmf-fix.patch hwpoison-soft-offlining-for-non-lru-movable-page-fix.patch lib-add-config_test_sort-to-enable-self-test-of-sort-fix.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