The quilt patch titled Subject: mm-memory-failure-convert-to-pr_fmt-v3 has been removed from the -mm tree. Its filename was mm-memory-failure-convert-to-pr_fmt-v3.patch This patch was dropped because it was folded into mm-memory-failure-convert-to-pr_fmt.patch ------------------------------------------------------ From: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Subject: mm-memory-failure-convert-to-pr_fmt-v3 Date: Fri, 29 Jul 2022 11:19:19 +0800 Use pr_fmt to prefix all pr_<level> output, but unpoison_memory() and soft_offline_page() are used by error injection, which have own prefixes like "Unpoison:" and "soft offline:", meanwhile, soft_offline_page() could be used by memory hotremove, so reset pr_fmt before unpoison_pr_info definition to keep the original output for them. Link: https://lkml.kernel.org/r/20220729031919.72331-1-wangkefeng.wang@xxxxxxxxxx Signed-off-by: Kefeng Wang <wangkefeng.wang@xxxxxxxxxx> Acked-by: Naoya Horiguchi <naoya.horiguchi@xxxxxxx> Reviewed-by: Miaohe Lin <linmiaohe@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memory-failure.c | 2 ++ 1 file changed, 2 insertions(+) --- a/mm/memory-failure.c~mm-memory-failure-convert-to-pr_fmt-v3 +++ a/mm/memory-failure.c @@ -2285,6 +2285,8 @@ static int __init memory_failure_init(vo } core_initcall(memory_failure_init); +#undef pr_fmt +#define pr_fmt(fmt) "" fmt #define unpoison_pr_info(fmt, pfn, rs) \ ({ \ if (__ratelimit(rs)) \ _ Patches currently in -mm which might be from wangkefeng.wang@xxxxxxxxxx are mm-cleanup-is_highmem.patch mm-use-is_zone_movable_page-helper.patch mm-memory-failure-convert-to-pr_fmt.patch