summaryrefslogtreecommitdiff
path: root/include/linux/sprintf.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2025-08-04 20:54:36 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2025-08-04 20:54:36 +0300
commit35a813e010b99894bb4706c56c16a580bf7959c2 (patch)
tree80623b9e0dce3c763f0979da9e944898dc5bf836 /include/linux/sprintf.h
parent99b773d720aeea1ef2170dce5fcfa80649e26b78 (diff)
parent3db488c8ed9cb1275b9dac6b9ce77f9508bdfc77 (diff)
downloadlinux-35a813e010b99894bb4706c56c16a580bf7959c2.tar.xz
Merge tag 'printk-for-6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux
Pull printk updates from Petr Mladek: - Add new "hash_pointers=[auto|always|never]" boot parameter to force the hashing even with "slab_debug" enabled - Allow to stop CPU, after losing nbcon console ownership during panic(), even without proper NMI - Allow to use the printk kthread immediately even for the 1st registered nbcon - Compiler warning removal * tag 'printk-for-6.17' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux: printk: nbcon: Allow reacquire during panic printk: Allow to use the printk kthread immediately even for 1st nbcon slab: Decouple slab_debug and no_hash_pointers vsprintf: Use __diag macros to disable '-Wsuggest-attribute=format' compiler-gcc.h: Introduce __diag_GCC_all
Diffstat (limited to 'include/linux/sprintf.h')
-rw-r--r--include/linux/sprintf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sprintf.h b/include/linux/sprintf.h
index 876130091384..f06f7b785091 100644
--- a/include/linux/sprintf.h
+++ b/include/linux/sprintf.h
@@ -23,7 +23,7 @@ __scanf(2, 0) int vsscanf(const char *, const char *, va_list);
/* These are for specific cases, do not use without real need */
extern bool no_hash_pointers;
-int no_hash_pointers_enable(char *str);
+void hash_pointers_finalize(bool slub_debug);
/* Used for Rust formatting ('%pA') */
char *rust_fmt_argument(char *buf, char *end, const void *ptr);