The patch titled Subject: mm: migrate: add isolate_movable_page() stub implementation has been removed from the -mm tree. Its filename was hwpoison-soft-offlining-for-non-lru-movable-page-fix.patch This patch was dropped because it was folded into hwpoison-soft-offlining-for-non-lru-movable-page.patch ------------------------------------------------------ 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.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