diff options
| author | Suren Baghdasaryan <[email protected]> | 2024-07-11 15:04:55 -0700 |
|---|---|---|
| committer | Andrew Morton <[email protected]> | 2024-07-17 21:05:18 -0700 |
| commit | 4810a82c8a8ae06fe6496a23fcb89a4952603e60 (patch) | |
| tree | 93e4dc10ea4d48f7de048fef6d30a1592bda4aa8 /include/linux | |
| parent | 3f74e6bd3b84a8b6bb3cc51609c89e5b9d58eed7 (diff) | |
lib: add missing newline character in the warning message
Link: https://lkml.kernel.org/r/[email protected]
Fixes: 22d407b164ff ("lib: add allocation tagging support for memory allocation profiling")
Signed-off-by: Suren Baghdasaryan <[email protected]>
Cc: Kees Cook <[email protected]>
Cc: Kent Overstreet <[email protected]>
Cc: Pasha Tatashin <[email protected]>
Cc: Sourav Panda <[email protected]>
Cc: Vlastimil Babka <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/alloc_tag.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/alloc_tag.h b/include/linux/alloc_tag.h index abd24016a900..8c61ccd161ba 100644 --- a/include/linux/alloc_tag.h +++ b/include/linux/alloc_tag.h @@ -122,7 +122,7 @@ static inline void alloc_tag_add_check(union codetag_ref *ref, struct alloc_tag "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) |