The patch titled Subject: lib: add missing newline character in the warning message has been added to the -mm mm-unstable branch. Its filename is lib-add-missing-newline-character-in-the-warning-message.patch This patch will shortly appear at https://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new.git/tree/patches/lib-add-missing-newline-character-in-the-warning-message.patch This patch will later appear in the mm-unstable branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next via the mm-everything branch at git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm and is updated there every 2-3 working days ------------------------------------------------------ From: Suren Baghdasaryan <surenb@xxxxxxxxxx> Subject: lib: add missing newline character in the warning message Date: Thu, 11 Jul 2024 15:04:55 -0700 Link: https://lkml.kernel.org/r/20240711220457.1751071-1-surenb@xxxxxxxxxx Fixes: 22d407b164ff ("lib: add allocation tagging support for memory allocation profiling") Signed-off-by: Suren Baghdasaryan <surenb@xxxxxxxxxx> Cc: Kees Cook <keescook@xxxxxxxxxxxx> Cc: Kent Overstreet <kent.overstreet@xxxxxxxxx> Cc: Pasha Tatashin <pasha.tatashin@xxxxxxxxxx> Cc: Sourav Panda <souravpanda@xxxxxxxxxx> Cc: Vlastimil Babka <vbabka@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/alloc_tag.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/alloc_tag.h~lib-add-missing-newline-character-in-the-warning-message +++ a/include/linux/alloc_tag.h @@ -122,7 +122,7 @@ static inline void alloc_tag_add_check(u "alloc_tag was not cleared (got tag for %s:%u)\n", ref->ct->filename, ref->ct->lineno); - WARN_ONCE(!tag, "current->alloc_tag not set"); + WARN_ONCE(!tag, "current->alloc_tag not set\n"); } static inline void alloc_tag_sub_check(union codetag_ref *ref) _ Patches currently in -mm which might be from surenb@xxxxxxxxxx are alloc_tag-export-memory-allocation-profiling-symbols-used-by-modules.patch mm-add-comments-for-allocation-helpers-explaining-why-they-are-macros.patch lib-add-missing-newline-character-in-the-warning-message.patch lib-reuse-page_ext_data-to-obtain-codetag_ref.patch alloc_tag-fix-page_ext_get-page_ext_put-sequence-during-page-splitting.patch