The quilt patch titled Subject: mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail-fix has been removed from the -mm tree. Its filename was mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail-fix.patch This patch was dropped because it was folded into mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail-fix Date: Thu May 2 04:07:39 PM PDT 2024 update for folio conversions Cc: Jane Chu <jane.chu@xxxxxxxxxx> Cc: Miaohe Lin <linmiaohe@xxxxxxxxxx> Cc: Naoya Horiguchi <nao.horiguchi@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory-failure.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) --- a/mm/memory-failure.c~mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail-fix +++ a/mm/memory-failure.c @@ -2170,16 +2170,15 @@ out: * election for MCE early killed will be honored. */ static int kill_procs_now(struct page *p, unsigned long pfn, int flags, - struct page *hpage) + struct folio *folio) { - struct folio *folio = page_folio(hpage); LIST_HEAD(tokill); int res = -EHWPOISON; /* deal with user pages only */ if (PageReserved(p) || PageSlab(p) || PageTable(p) || PageOffline(p)) res = -EBUSY; - if (!(PageLRU(hpage) || PageHuge(p))) + if (!(folio_test_lru(folio) || PageHuge(p))) res = -EBUSY; if (res == -EHWPOISON) { @@ -2324,7 +2323,7 @@ try_again: if (try_to_split_thp_page(p) < 0) { if (flags & MF_ACTION_REQUIRED) { pr_err("%#lx: thp split failed\n", pfn); - res = kill_procs_now(p, pfn, flags, hpage); + res = kill_procs_now(p, pfn, flags, folio); goto unlock_mutex; } res = action_result(pfn, MF_MSG_UNSPLIT_THP, MF_IGNORED); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are mm-memory-failure-send-sigbus-in-the-event-of-thp-split-fail.patch __mod_memcg_lruvec_state-enhance-diagnostics.patch __mod_memcg_lruvec_state-enhance-diagnostics-fix.patch