blob: f4da695fd615501952e584c502a69bdcb763438b [file] [log] [blame]
Linus Torvalds968ab182010-11-15 13:37:37 -08001#ifndef __KERNEL_PRINTK__
2#define __KERNEL_PRINTK__
3
Andrew Morton1b2c2892013-04-29 16:17:19 -07004#include <stdarg.h>
Mike Travis162a7e72011-05-24 17:13:20 -07005#include <linux/init.h>
Joe Perches314ba352012-07-30 14:40:11 -07006#include <linux/kern_levels.h>
Ralf Baechle154c2672013-05-21 10:51:10 +02007#include <linux/linkage.h>
Joe Perchesc28aa1f2014-01-23 15:54:16 -08008#include <linux/cache.h>
Mike Travis162a7e72011-05-24 17:13:20 -07009
Linus Torvalds968ab182010-11-15 13:37:37 -080010extern const char linux_banner[];
11extern const char linux_proc_banner[];
12
Joe Perchesacc8fa412012-07-30 14:40:09 -070013static inline int printk_get_level(const char *buffer)
14{
Joe Perches04d2c8c2012-07-30 14:40:17 -070015 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
Joe Perchesacc8fa412012-07-30 14:40:09 -070016 switch (buffer[1]) {
17 case '0' ... '7':
18 case 'd': /* KERN_DEFAULT */
Joe Perchesacc8fa412012-07-30 14:40:09 -070019 return buffer[1];
20 }
21 }
22 return 0;
23}
24
25static inline const char *printk_skip_level(const char *buffer)
26{
Petr Mladek01856982014-04-03 14:48:38 -070027 if (printk_get_level(buffer))
28 return buffer + 2;
29
Joe Perchesacc8fa412012-07-30 14:40:09 -070030 return buffer;
31}
32
Tejun Heod43ff432015-06-25 15:01:24 -070033#define CONSOLE_EXT_LOG_MAX 8192
34
Borislav Petkova8fe19e2014-06-04 16:11:46 -070035/* printk's without a loglevel use this.. */
Alex Elder42a9dc02014-08-06 16:09:01 -070036#define MESSAGE_LOGLEVEL_DEFAULT CONFIG_MESSAGE_LOGLEVEL_DEFAULT
Borislav Petkova8fe19e2014-06-04 16:11:46 -070037
38/* We show everything that is MORE important than this.. */
39#define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */
40#define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */
41#define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */
42#define CONSOLE_LOGLEVEL_DEFAULT 7 /* anything MORE serious than KERN_DEBUG */
43#define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */
44#define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */
45
Linus Torvalds968ab182010-11-15 13:37:37 -080046extern int console_printk[];
47
48#define console_loglevel (console_printk[0])
49#define default_message_loglevel (console_printk[1])
50#define minimum_console_loglevel (console_printk[2])
51#define default_console_loglevel (console_printk[3])
52
Joe Perchesa9747cc2011-01-12 16:59:43 -080053static inline void console_silent(void)
54{
Borislav Petkova8fe19e2014-06-04 16:11:46 -070055 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
Joe Perchesa9747cc2011-01-12 16:59:43 -080056}
57
58static inline void console_verbose(void)
59{
60 if (console_loglevel)
Borislav Petkova8fe19e2014-06-04 16:11:46 -070061 console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
Joe Perchesa9747cc2011-01-12 16:59:43 -080062}
63
Linus Torvalds968ab182010-11-15 13:37:37 -080064struct va_format {
65 const char *fmt;
66 va_list *va;
67};
68
69/*
70 * FW_BUG
71 * Add this to a message where you are sure the firmware is buggy or behaves
72 * really stupid or out of spec. Be aware that the responsible BIOS developer
73 * should be able to fix this issue or at least get a concrete idea of the
74 * problem by reading your message without the need of looking at the kernel
75 * code.
76 *
77 * Use it for definite and high priority BIOS bugs.
78 *
79 * FW_WARN
80 * Use it for not that clear (e.g. could the kernel messed up things already?)
81 * and medium priority BIOS bugs.
82 *
83 * FW_INFO
84 * Use this one if you want to tell the user or vendor about something
85 * suspicious, but generally harmless related to the firmware.
86 *
87 * Use it for information or very low priority BIOS bugs.
88 */
89#define FW_BUG "[Firmware Bug]: "
90#define FW_WARN "[Firmware Warn]: "
91#define FW_INFO "[Firmware Info]: "
92
93/*
94 * HW_ERR
95 * Add this to a message for hardware errors, so that user can report
96 * it to hardware vendor instead of LKML or software vendor.
97 */
98#define HW_ERR "[Hardware Error]: "
99
Joe Perches5264f2f2011-01-12 16:59:45 -0800100/*
Neil Horman0a9a8bf2013-12-23 08:29:42 -0500101 * DEPRECATED
102 * Add this to a message whenever you want to warn user space about the use
103 * of a deprecated aspect of an API so they can stop using it
104 */
105#define DEPRECATED "[Deprecated]: "
106
107/*
Joe Perches5264f2f2011-01-12 16:59:45 -0800108 * Dummy printk for disabled debugging statements to use whilst maintaining
Aaron Conolefe22cd92016-01-15 16:59:12 -0800109 * gcc's format checking.
Joe Perches5264f2f2011-01-12 16:59:45 -0800110 */
Aaron Conolefe22cd92016-01-15 16:59:12 -0800111#define no_printk(fmt, ...) \
112do { \
113 if (0) \
114 printk(fmt, ##__VA_ARGS__); \
115} while (0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800116
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700117#ifdef CONFIG_EARLY_PRINTK
Joe Perchesb9075fa2011-10-31 17:11:33 -0700118extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800119void early_printk(const char *fmt, ...);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700120#else
121static inline __printf(1, 2) __cold
122void early_printk(const char *s, ...) { }
123#endif
Joe Perches5264f2f2011-01-12 16:59:45 -0800124
Petr Mladek42a0bb32016-05-20 17:00:33 -0700125#ifdef CONFIG_PRINTK_NMI
126extern void printk_nmi_init(void);
127extern void printk_nmi_enter(void);
128extern void printk_nmi_exit(void);
129extern void printk_nmi_flush(void);
Petr Mladekcf9b1102016-05-20 17:00:42 -0700130extern void printk_nmi_flush_on_panic(void);
Petr Mladek42a0bb32016-05-20 17:00:33 -0700131#else
132static inline void printk_nmi_init(void) { }
133static inline void printk_nmi_enter(void) { }
134static inline void printk_nmi_exit(void) { }
135static inline void printk_nmi_flush(void) { }
Petr Mladekcf9b1102016-05-20 17:00:42 -0700136static inline void printk_nmi_flush_on_panic(void) { }
Petr Mladek42a0bb32016-05-20 17:00:33 -0700137#endif /* PRINTK_NMI */
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -0500138
Linus Torvalds968ab182010-11-15 13:37:37 -0800139#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200140asmlinkage __printf(5, 0)
141int vprintk_emit(int facility, int level,
142 const char *dict, size_t dictlen,
143 const char *fmt, va_list args);
144
Joe Perchesb9075fa2011-10-31 17:11:33 -0700145asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800146int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200147
148asmlinkage __printf(5, 6) __cold
Simon Kågströmd487d572014-04-03 14:48:44 -0700149int printk_emit(int facility, int level,
150 const char *dict, size_t dictlen,
151 const char *fmt, ...);
Kay Sievers7ff95542012-05-03 02:29:13 +0200152
Joe Perchesb9075fa2011-10-31 17:11:33 -0700153asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800154int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800155
156/*
John Stultzaac74dc2014-06-04 16:11:40 -0700157 * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100158 */
John Stultzaac74dc2014-06-04 16:11:40 -0700159__printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100160
161/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800162 * Please don't use printk_ratelimit(), because it shares ratelimiting state
163 * with all other unrelated printk_ratelimit() callsites. Instead use
164 * printk_ratelimited() or plain old __ratelimit().
165 */
166extern int __printk_ratelimit(const char *func);
167#define printk_ratelimit() __printk_ratelimit(__func__)
168extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
169 unsigned int interval_msec);
170
171extern int printk_delay_msec;
172extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800173extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800174
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700175extern void wake_up_klogd(void);
176
Pranith Kumar07261ed2015-01-26 12:58:43 -0800177char *log_buf_addr_get(void);
178u32 log_buf_len_get(void);
Linus Torvalds968ab182010-11-15 13:37:37 -0800179void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700180void __init setup_log_buf(int early);
Nicolas Iooss8db14862015-07-17 16:23:42 -0700181__printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...);
Tejun Heo196779b2013-04-30 15:27:12 -0700182void dump_stack_print_info(const char *log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -0700183void show_regs_print_info(const char *log_lvl);
Linus Torvalds968ab182010-11-15 13:37:37 -0800184#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700185static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800186int vprintk(const char *s, va_list args)
187{
188 return 0;
189}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700190static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800191int printk(const char *s, ...)
192{
193 return 0;
194}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100195static inline __printf(1, 2) __cold
John Stultzaac74dc2014-06-04 16:11:40 -0700196int printk_deferred(const char *s, ...)
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100197{
198 return 0;
199}
Joe Perches5264f2f2011-01-12 16:59:45 -0800200static inline int printk_ratelimit(void)
201{
202 return 0;
203}
204static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
205 unsigned int interval_msec)
206{
207 return false;
208}
Linus Torvalds968ab182010-11-15 13:37:37 -0800209
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700210static inline void wake_up_klogd(void)
211{
212}
213
Pranith Kumar07261ed2015-01-26 12:58:43 -0800214static inline char *log_buf_addr_get(void)
215{
216 return NULL;
217}
218
219static inline u32 log_buf_len_get(void)
220{
221 return 0;
222}
223
Linus Torvalds968ab182010-11-15 13:37:37 -0800224static inline void log_buf_kexec_setup(void)
225{
226}
Mike Travis162a7e72011-05-24 17:13:20 -0700227
228static inline void setup_log_buf(int early)
229{
230}
Tejun Heo196779b2013-04-30 15:27:12 -0700231
Nicolas Iooss8db14862015-07-17 16:23:42 -0700232static inline __printf(1, 2) void dump_stack_set_arch_desc(const char *fmt, ...)
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700233{
234}
235
Tejun Heo196779b2013-04-30 15:27:12 -0700236static inline void dump_stack_print_info(const char *log_lvl)
237{
238}
Tejun Heoa43cb952013-04-30 15:27:17 -0700239
240static inline void show_regs_print_info(const char *log_lvl)
241{
242}
Linus Torvalds968ab182010-11-15 13:37:37 -0800243#endif
244
Andi Kleenb6c035d2013-08-05 15:02:48 -0700245extern asmlinkage void dump_stack(void) __cold;
Linus Torvalds968ab182010-11-15 13:37:37 -0800246
Linus Torvalds968ab182010-11-15 13:37:37 -0800247#ifndef pr_fmt
248#define pr_fmt(fmt) fmt
249#endif
250
Dan Streetman6e099f52014-06-04 16:11:44 -0700251/*
252 * These can be used to print at the various log levels.
253 * All of these will print unconditionally, although note that pr_debug()
254 * and other debug macros are compiled out unless either DEBUG is defined
255 * or CONFIG_DYNAMIC_DEBUG is set.
256 */
Linus Torvalds968ab182010-11-15 13:37:37 -0800257#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800258 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800259#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800260 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800261#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800262 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800263#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800264 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800265#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800266 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800267#define pr_warn pr_warning
268#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800269 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800270#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800271 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Steven Rostedt7b1460e2015-04-15 16:16:59 -0700272/*
273 * Like KERN_CONT, pr_cont() should only be used when continuing
274 * a line with no newline ('\n') enclosed. Otherwise it defaults
275 * back to KERN_DEFAULT.
276 */
Linus Torvalds968ab182010-11-15 13:37:37 -0800277#define pr_cont(fmt, ...) \
278 printk(KERN_CONT fmt, ##__VA_ARGS__)
279
280/* pr_devel() should produce zero code unless DEBUG is defined */
281#ifdef DEBUG
282#define pr_devel(fmt, ...) \
283 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
284#else
285#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800286 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800287#endif
288
Joe Perches29fc2bc2013-10-26 20:41:53 -0700289#include <linux/dynamic_debug.h>
290
Linus Torvalds968ab182010-11-15 13:37:37 -0800291/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500292#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800293/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
294#define pr_debug(fmt, ...) \
295 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500296#elif defined(DEBUG)
297#define pr_debug(fmt, ...) \
298 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800299#else
300#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800301 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800302#endif
303
304/*
Joe Perches16cb8392011-01-12 16:59:46 -0800305 * Print a one-time message (analogous to WARN_ONCE() et al):
306 */
307
308#ifdef CONFIG_PRINTK
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800309#define printk_once(fmt, ...) \
310({ \
311 static bool __print_once __read_mostly; \
312 \
313 if (!__print_once) { \
314 __print_once = true; \
315 printk(fmt, ##__VA_ARGS__); \
316 } \
Joe Perches16cb8392011-01-12 16:59:46 -0800317})
John Stultzc2248152014-06-04 16:11:41 -0700318#define printk_deferred_once(fmt, ...) \
319({ \
320 static bool __print_once __read_mostly; \
321 \
322 if (!__print_once) { \
323 __print_once = true; \
324 printk_deferred(fmt, ##__VA_ARGS__); \
325 } \
326})
Joe Perches16cb8392011-01-12 16:59:46 -0800327#else
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800328#define printk_once(fmt, ...) \
Joe Perches16cb8392011-01-12 16:59:46 -0800329 no_printk(fmt, ##__VA_ARGS__)
John Stultzc2248152014-06-04 16:11:41 -0700330#define printk_deferred_once(fmt, ...) \
331 no_printk(fmt, ##__VA_ARGS__)
Joe Perches16cb8392011-01-12 16:59:46 -0800332#endif
333
334#define pr_emerg_once(fmt, ...) \
335 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
336#define pr_alert_once(fmt, ...) \
337 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
338#define pr_crit_once(fmt, ...) \
339 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
340#define pr_err_once(fmt, ...) \
341 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
342#define pr_warn_once(fmt, ...) \
343 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
344#define pr_notice_once(fmt, ...) \
345 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
346#define pr_info_once(fmt, ...) \
347 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
348#define pr_cont_once(fmt, ...) \
349 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800350
351#if defined(DEBUG)
352#define pr_devel_once(fmt, ...) \
353 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
354#else
355#define pr_devel_once(fmt, ...) \
356 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
357#endif
358
Joe Perches16cb8392011-01-12 16:59:46 -0800359/* If you are writing a driver, please use dev_dbg instead */
360#if defined(DEBUG)
361#define pr_debug_once(fmt, ...) \
362 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
363#else
364#define pr_debug_once(fmt, ...) \
365 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
366#endif
367
368/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800369 * ratelimited messages with local ratelimit_state,
370 * no local ratelimit_state used in the !PRINTK case
371 */
372#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800373#define printk_ratelimited(fmt, ...) \
374({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800375 static DEFINE_RATELIMIT_STATE(_rs, \
376 DEFAULT_RATELIMIT_INTERVAL, \
377 DEFAULT_RATELIMIT_BURST); \
378 \
379 if (__ratelimit(&_rs)) \
380 printk(fmt, ##__VA_ARGS__); \
381})
382#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800383#define printk_ratelimited(fmt, ...) \
384 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800385#endif
386
Joe Perches6ec42a562011-01-12 16:59:47 -0800387#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800388 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800389#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800390 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800391#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800392 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800393#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800394 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800395#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800396 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800397#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800398 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800399#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800400 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
401/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800402
403#if defined(DEBUG)
404#define pr_devel_ratelimited(fmt, ...) \
405 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
406#else
407#define pr_devel_ratelimited(fmt, ...) \
408 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
409#endif
410
Linus Torvalds968ab182010-11-15 13:37:37 -0800411/* If you are writing a driver, please use dev_dbg instead */
Joe Perches29fc2bc2013-10-26 20:41:53 -0700412#if defined(CONFIG_DYNAMIC_DEBUG)
413/* descriptor check is first to prevent flooding with "callbacks suppressed" */
414#define pr_debug_ratelimited(fmt, ...) \
415do { \
416 static DEFINE_RATELIMIT_STATE(_rs, \
417 DEFAULT_RATELIMIT_INTERVAL, \
418 DEFAULT_RATELIMIT_BURST); \
Jason A. Donenfeld515a9ad2015-09-09 15:36:12 -0700419 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, pr_fmt(fmt)); \
Joe Perches29fc2bc2013-10-26 20:41:53 -0700420 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
421 __ratelimit(&_rs)) \
Jason A. Donenfeld515a9ad2015-09-09 15:36:12 -0700422 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
Joe Perches29fc2bc2013-10-26 20:41:53 -0700423} while (0)
424#elif defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800425#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800426 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
427#else
428#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800429 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800430#endif
431
Kay Sieverse11fea92012-05-03 02:29:41 +0200432extern const struct file_operations kmsg_fops;
433
Joe Perchesac83ed62011-01-12 16:59:47 -0800434enum {
435 DUMP_PREFIX_NONE,
436 DUMP_PREFIX_ADDRESS,
437 DUMP_PREFIX_OFFSET
438};
Andy Shevchenko114fc1a2015-02-12 15:02:29 -0800439extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize,
440 int groupsize, char *linebuf, size_t linebuflen,
441 bool ascii);
Joe Perchesac83ed62011-01-12 16:59:47 -0800442#ifdef CONFIG_PRINTK
443extern void print_hex_dump(const char *level, const char *prefix_str,
444 int prefix_type, int rowsize, int groupsize,
445 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500446#if defined(CONFIG_DYNAMIC_DEBUG)
447#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
448 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
449#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800450extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
451 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500452#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800453#else
454static inline void print_hex_dump(const char *level, const char *prefix_str,
455 int prefix_type, int rowsize, int groupsize,
456 const void *buf, size_t len, bool ascii)
457{
458}
459static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
460 const void *buf, size_t len)
461{
462}
463
464#endif
465
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500466#if defined(CONFIG_DYNAMIC_DEBUG)
467#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
468 groupsize, buf, len, ascii) \
469 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
470 groupsize, buf, len, ascii)
Linus Walleijcdf17442015-09-09 15:37:11 -0700471#elif defined(DEBUG)
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500472#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
473 groupsize, buf, len, ascii) \
474 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
475 groupsize, buf, len, ascii)
Linus Walleijcdf17442015-09-09 15:37:11 -0700476#else
477static inline void print_hex_dump_debug(const char *prefix_str, int prefix_type,
478 int rowsize, int groupsize,
479 const void *buf, size_t len, bool ascii)
480{
481}
482#endif
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500483
Linus Torvalds968ab182010-11-15 13:37:37 -0800484#endif