blob: 7fd2838fa41748006cebf14ed7432739f3138301 [file] [log] [blame]
Petr Mladek42a0bb32016-05-20 17:00:33 -07001/*
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
Linus Torvaldsa0cba212016-08-09 10:48:18 -070019typedef __printf(1, 0) int (*printk_func_t)(const char *fmt, va_list args);
Petr Mladek42a0bb32016-05-20 17:00:33 -070020
Linus Torvaldsa0cba212016-08-09 10:48:18 -070021int __printf(1, 0) vprintk_default(const char *fmt, va_list args);
Petr Mladek42a0bb32016-05-20 17:00:33 -070022
23#ifdef CONFIG_PRINTK_NMI
24
Petr Mladekcf9b1102016-05-20 17:00:42 -070025extern raw_spinlock_t logbuf_lock;
26
Petr Mladek42a0bb32016-05-20 17:00:33 -070027/*
28 * printk() could not take logbuf_lock in NMI context. Instead,
29 * it temporary stores the strings into a per-CPU buffer.
30 * The alternative implementation is chosen transparently
31 * via per-CPU variable.
32 */
33DECLARE_PER_CPU(printk_func_t, printk_func);
Linus Torvaldsa0cba212016-08-09 10:48:18 -070034static inline __printf(1, 0) int vprintk_func(const char *fmt, va_list args)
Petr Mladek42a0bb32016-05-20 17:00:33 -070035{
Linus Torvaldsa0cba212016-08-09 10:48:18 -070036 return this_cpu_read(printk_func)(fmt, args);
Petr Mladek42a0bb32016-05-20 17:00:33 -070037}
38
Petr Mladekb522dea2016-05-20 17:00:36 -070039extern atomic_t nmi_message_lost;
40static inline int get_nmi_message_lost(void)
41{
42 return atomic_xchg(&nmi_message_lost, 0);
43}
44
Petr Mladek42a0bb32016-05-20 17:00:33 -070045#else /* CONFIG_PRINTK_NMI */
46
Linus Torvaldsa0cba212016-08-09 10:48:18 -070047static inline __printf(1, 0) int vprintk_func(const char *fmt, va_list args)
Petr Mladek42a0bb32016-05-20 17:00:33 -070048{
Linus Torvaldsa0cba212016-08-09 10:48:18 -070049 return vprintk_default(fmt, args);
Petr Mladek42a0bb32016-05-20 17:00:33 -070050}
51
Petr Mladekb522dea2016-05-20 17:00:36 -070052static inline int get_nmi_message_lost(void)
53{
54 return 0;
55}
56
Petr Mladek42a0bb32016-05-20 17:00:33 -070057#endif /* CONFIG_PRINTK_NMI */