Linux Audio

Check our new training course

Loading...
v4.17
 
 1/*
 2 * internal.h - printk internal definitions
 3 *
 4 * This program is free software; you can redistribute it and/or
 5 * modify it under the terms of the GNU General Public License
 6 * as published by the Free Software Foundation; either version 2
 7 * of the License, or (at your option) any later version.
 8 *
 9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
16 */
17#include <linux/percpu.h>
18
19#ifdef CONFIG_PRINTK
20
21#define PRINTK_SAFE_CONTEXT_MASK	 0x3fffffff
22#define PRINTK_NMI_DEFERRED_CONTEXT_MASK 0x40000000
23#define PRINTK_NMI_CONTEXT_MASK		 0x80000000
24
25extern raw_spinlock_t logbuf_lock;
 
 
 
 
 
26
27__printf(1, 0) int vprintk_default(const char *fmt, va_list args);
28__printf(1, 0) int vprintk_deferred(const char *fmt, va_list args);
29__printf(1, 0) int vprintk_func(const char *fmt, va_list args);
30void __printk_safe_enter(void);
31void __printk_safe_exit(void);
32
 
 
 
33#define printk_safe_enter_irqsave(flags)	\
34	do {					\
35		local_irq_save(flags);		\
36		__printk_safe_enter();		\
37	} while (0)
38
39#define printk_safe_exit_irqrestore(flags)	\
40	do {					\
41		__printk_safe_exit();		\
42		local_irq_restore(flags);	\
43	} while (0)
44
45#define printk_safe_enter_irq()		\
46	do {					\
47		local_irq_disable();		\
48		__printk_safe_enter();		\
49	} while (0)
50
51#define printk_safe_exit_irq()			\
52	do {					\
53		__printk_safe_exit();		\
54		local_irq_enable();		\
55	} while (0)
56
57#else
58
59__printf(1, 0) int vprintk_func(const char *fmt, va_list args) { return 0; }
60
61/*
62 * In !PRINTK builds we still export logbuf_lock spin_lock, console_sem
63 * semaphore and some of console functions (console_unlock()/etc.), so
64 * printk-safe must preserve the existing local IRQ guarantees.
65 */
66#define printk_safe_enter_irqsave(flags) local_irq_save(flags)
67#define printk_safe_exit_irqrestore(flags) local_irq_restore(flags)
68
69#define printk_safe_enter_irq() local_irq_disable()
70#define printk_safe_exit_irq() local_irq_enable()
71
 
 
72#endif /* CONFIG_PRINTK */
v5.14.15
 1/* SPDX-License-Identifier: GPL-2.0-or-later */
 2/*
 3 * internal.h - printk internal definitions
 
 
 
 
 
 
 
 
 
 
 
 
 
 4 */
 5#include <linux/percpu.h>
 6
 7#ifdef CONFIG_PRINTK
 8
 9#define PRINTK_SAFE_CONTEXT_MASK	0x007ffffff
10#define PRINTK_NMI_DIRECT_CONTEXT_MASK	0x008000000
11#define PRINTK_NMI_CONTEXT_MASK		0xff0000000
12
13#define PRINTK_NMI_CONTEXT_OFFSET	0x010000000
14
15__printf(4, 0)
16int vprintk_store(int facility, int level,
17		  const struct dev_printk_info *dev_info,
18		  const char *fmt, va_list args);
19
20__printf(1, 0) int vprintk_default(const char *fmt, va_list args);
21__printf(1, 0) int vprintk_deferred(const char *fmt, va_list args);
 
22void __printk_safe_enter(void);
23void __printk_safe_exit(void);
24
25void printk_safe_init(void);
26bool printk_percpu_data_ready(void);
27
28#define printk_safe_enter_irqsave(flags)	\
29	do {					\
30		local_irq_save(flags);		\
31		__printk_safe_enter();		\
32	} while (0)
33
34#define printk_safe_exit_irqrestore(flags)	\
35	do {					\
36		__printk_safe_exit();		\
37		local_irq_restore(flags);	\
38	} while (0)
39
40#define printk_safe_enter_irq()		\
41	do {					\
42		local_irq_disable();		\
43		__printk_safe_enter();		\
44	} while (0)
45
46#define printk_safe_exit_irq()			\
47	do {					\
48		__printk_safe_exit();		\
49		local_irq_enable();		\
50	} while (0)
51
52void defer_console_output(void);
53
54#else
55
56/*
57 * In !PRINTK builds we still export console_sem
58 * semaphore and some of console functions (console_unlock()/etc.), so
59 * printk-safe must preserve the existing local IRQ guarantees.
60 */
61#define printk_safe_enter_irqsave(flags) local_irq_save(flags)
62#define printk_safe_exit_irqrestore(flags) local_irq_restore(flags)
63
64#define printk_safe_enter_irq() local_irq_disable()
65#define printk_safe_exit_irq() local_irq_enable()
66
67static inline void printk_safe_init(void) { }
68static inline bool printk_percpu_data_ready(void) { return false; }
69#endif /* CONFIG_PRINTK */