The quilt patch titled Subject: kasan: hw_tags: Use str_on_off() helper in kasan_init_hw_tags() has been removed from the -mm tree. Its filename was kasan-hw_tags-use-str_on_off-helper-in-kasan_init_hw_tags.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Thorsten Blum <thorsten.blum@xxxxxxxxx> Subject: kasan: hw_tags: Use str_on_off() helper in kasan_init_hw_tags() Date: Tue, 14 Jan 2025 16:09:35 +0100 Remove hard-coded strings by using the str_on_off() helper function. Link: https://lkml.kernel.org/r/20250114150935.780869-2-thorsten.blum@xxxxxxxxx Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx> Suggested-by: Anshuman Khandual <anshuman.khandual@xxxxxxx> Reviewed-by: Andrey Konovalov <andreyknvl@xxxxxxxxx> Cc: Alexander Potapenko <glider@xxxxxxxxxx> Cc: Andrey Ryabinin <ryabinin.a.a@xxxxxxxxx> Cc: Dmitriy Vyukov <dvyukov@xxxxxxxxxx> Cc: Vincenzo Frascino <vincenzo.frascino@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kasan/hw_tags.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/mm/kasan/hw_tags.c~kasan-hw_tags-use-str_on_off-helper-in-kasan_init_hw_tags +++ a/mm/kasan/hw_tags.c @@ -16,6 +16,7 @@ #include <linux/mm.h> #include <linux/static_key.h> #include <linux/string.h> +#include <linux/string_choices.h> #include <linux/types.h> #include <linux/vmalloc.h> @@ -263,8 +264,8 @@ void __init kasan_init_hw_tags(void) pr_info("KernelAddressSanitizer initialized (hw-tags, mode=%s, vmalloc=%s, stacktrace=%s)\n", kasan_mode_info(), - kasan_vmalloc_enabled() ? "on" : "off", - kasan_stack_collection_enabled() ? "on" : "off"); + str_on_off(kasan_vmalloc_enabled()), + str_on_off(kasan_stack_collection_enabled())); } #ifdef CONFIG_KASAN_VMALLOC _ Patches currently in -mm which might be from thorsten.blum@xxxxxxxxx are ocfs2-use-str_yes_no-and-str_no_yes-helper-functions.patch