Message ID | 20220210141733.1908-8-linmiaohe@huawei.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | mm/memory-failure.c: A few cleanup patches for memory failure | expand |
diff --git a/mm/memory-failure.c b/mm/memory-failure.c index 78aba0b3e983..3d0803a13703 100644 --- a/mm/memory-failure.c +++ b/mm/memory-failure.c @@ -2161,10 +2161,6 @@ static int __soft_offline_page(struct page *page) ret = invalidate_inode_page(page); unlock_page(page); - /* - * RED-PEN would be better to keep it isolated here, but we - * would need to fix isolation locking first. - */ if (ret) { pr_info("soft_offline: %#lx: invalidated\n", pfn); page_handle_poison(page, false, true);
Since commit add05cecef80 ("mm: soft-offline: don't free target page in successful page migration"), set_migratetype_isolate logic is removed. Remove this obsolete comment. Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> --- mm/memory-failure.c | 4 ---- 1 file changed, 4 deletions(-)