1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * printk_safe.c - Safe printk for printk-deadlock-prone contexts
6 #include <linux/preempt.h>
9 #include <linux/cpumask.h>
10 #include <linux/printk.h>
11 #include <linux/kprobes.h>
15 static DEFINE_PER_CPU(int, printk_context);
17 /* Can be preempted by NMI. */
18 void __printk_safe_enter(void)
20 this_cpu_inc(printk_context);
23 /* Can be preempted by NMI. */
24 void __printk_safe_exit(void)
26 this_cpu_dec(printk_context);
29 asmlinkage int vprintk(const char *fmt, va_list args)
31 #ifdef CONFIG_KGDB_KDB
32 /* Allow to pass printk() to kdb but avoid a recursion. */
33 if (unlikely(kdb_trap_printk && kdb_printf_cpu < 0))
34 return vkdb_printf(KDB_MSGSRC_PRINTK, fmt, args);
38 * Use the main logbuf even in NMI. But avoid calling console
39 * drivers that might have their own locks.
41 if (this_cpu_read(printk_context) || in_nmi()) {
44 len = vprintk_store(0, LOGLEVEL_DEFAULT, NULL, fmt, args);
45 defer_console_output();
50 return vprintk_default(fmt, args);
52 EXPORT_SYMBOL(vprintk);