blob: c8f170324e643ccb895dacfd9b06a66a8afa7193 [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
Vasant Hegde14c40002014-08-09 11:15:30 +053013extern char *log_buf_addr_get(void);
14extern u32 log_buf_len_get(void);
15
Joe Perchesacc8fa412012-07-30 14:40:09 -070016static inline int printk_get_level(const char *buffer)
17{
Joe Perches04d2c8c2012-07-30 14:40:17 -070018 if (buffer[0] == KERN_SOH_ASCII && buffer[1]) {
Joe Perchesacc8fa412012-07-30 14:40:09 -070019 switch (buffer[1]) {
20 case '0' ... '7':
21 case 'd': /* KERN_DEFAULT */
Joe Perchesacc8fa412012-07-30 14:40:09 -070022 return buffer[1];
23 }
24 }
25 return 0;
26}
27
28static inline const char *printk_skip_level(const char *buffer)
29{
Petr Mladek01856982014-04-03 14:48:38 -070030 if (printk_get_level(buffer))
31 return buffer + 2;
32
Joe Perchesacc8fa412012-07-30 14:40:09 -070033 return buffer;
34}
35
Borislav Petkova8fe19e2014-06-04 16:11:46 -070036/* printk's without a loglevel use this.. */
Alex Elder42a9dc02014-08-06 16:09:01 -070037#define MESSAGE_LOGLEVEL_DEFAULT CONFIG_MESSAGE_LOGLEVEL_DEFAULT
Borislav Petkova8fe19e2014-06-04 16:11:46 -070038
39/* We show everything that is MORE important than this.. */
40#define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */
41#define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */
42#define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */
43#define CONSOLE_LOGLEVEL_DEFAULT 7 /* anything MORE serious than KERN_DEBUG */
44#define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */
45#define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */
46
Linus Torvalds968ab182010-11-15 13:37:37 -080047extern int console_printk[];
48
49#define console_loglevel (console_printk[0])
50#define default_message_loglevel (console_printk[1])
51#define minimum_console_loglevel (console_printk[2])
52#define default_console_loglevel (console_printk[3])
53
Joe Perchesa9747cc2011-01-12 16:59:43 -080054static inline void console_silent(void)
55{
Borislav Petkova8fe19e2014-06-04 16:11:46 -070056 console_loglevel = CONSOLE_LOGLEVEL_SILENT;
Joe Perchesa9747cc2011-01-12 16:59:43 -080057}
58
59static inline void console_verbose(void)
60{
61 if (console_loglevel)
Borislav Petkova8fe19e2014-06-04 16:11:46 -070062 console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
Joe Perchesa9747cc2011-01-12 16:59:43 -080063}
64
Linus Torvalds968ab182010-11-15 13:37:37 -080065struct va_format {
66 const char *fmt;
67 va_list *va;
68};
69
70/*
71 * FW_BUG
72 * Add this to a message where you are sure the firmware is buggy or behaves
73 * really stupid or out of spec. Be aware that the responsible BIOS developer
74 * should be able to fix this issue or at least get a concrete idea of the
75 * problem by reading your message without the need of looking at the kernel
76 * code.
77 *
78 * Use it for definite and high priority BIOS bugs.
79 *
80 * FW_WARN
81 * Use it for not that clear (e.g. could the kernel messed up things already?)
82 * and medium priority BIOS bugs.
83 *
84 * FW_INFO
85 * Use this one if you want to tell the user or vendor about something
86 * suspicious, but generally harmless related to the firmware.
87 *
88 * Use it for information or very low priority BIOS bugs.
89 */
90#define FW_BUG "[Firmware Bug]: "
91#define FW_WARN "[Firmware Warn]: "
92#define FW_INFO "[Firmware Info]: "
93
94/*
95 * HW_ERR
96 * Add this to a message for hardware errors, so that user can report
97 * it to hardware vendor instead of LKML or software vendor.
98 */
99#define HW_ERR "[Hardware Error]: "
100
Joe Perches5264f2f2011-01-12 16:59:45 -0800101/*
Neil Horman0a9a8bf2013-12-23 08:29:42 -0500102 * DEPRECATED
103 * Add this to a message whenever you want to warn user space about the use
104 * of a deprecated aspect of an API so they can stop using it
105 */
106#define DEPRECATED "[Deprecated]: "
107
108/*
Joe Perches5264f2f2011-01-12 16:59:45 -0800109 * Dummy printk for disabled debugging statements to use whilst maintaining
110 * gcc's format and side-effect checking.
111 */
Joe Perchesb9075fa2011-10-31 17:11:33 -0700112static inline __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800113int no_printk(const char *fmt, ...)
114{
115 return 0;
116}
117
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700118#ifdef CONFIG_EARLY_PRINTK
Joe Perchesb9075fa2011-10-31 17:11:33 -0700119extern asmlinkage __printf(1, 2)
Joe Perches5264f2f2011-01-12 16:59:45 -0800120void early_printk(const char *fmt, ...);
Thomas Gleixnerd0380e62013-04-29 16:17:18 -0700121#else
122static inline __printf(1, 2) __cold
123void early_printk(const char *s, ...) { }
124#endif
Joe Perches5264f2f2011-01-12 16:59:45 -0800125
Steven Rostedt (Red Hat)04b74b22014-11-21 09:16:58 -0500126typedef int(*printk_func_t)(const char *fmt, va_list args);
127
Linus Torvalds968ab182010-11-15 13:37:37 -0800128#ifdef CONFIG_PRINTK
Kay Sievers7ff95542012-05-03 02:29:13 +0200129asmlinkage __printf(5, 0)
130int vprintk_emit(int facility, int level,
131 const char *dict, size_t dictlen,
132 const char *fmt, va_list args);
133
Joe Perchesb9075fa2011-10-31 17:11:33 -0700134asmlinkage __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800135int vprintk(const char *fmt, va_list args);
Kay Sievers7ff95542012-05-03 02:29:13 +0200136
137asmlinkage __printf(5, 6) __cold
Simon Kågströmd487d572014-04-03 14:48:44 -0700138int printk_emit(int facility, int level,
139 const char *dict, size_t dictlen,
140 const char *fmt, ...);
Kay Sievers7ff95542012-05-03 02:29:13 +0200141
Joe Perchesb9075fa2011-10-31 17:11:33 -0700142asmlinkage __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800143int printk(const char *fmt, ...);
Linus Torvalds968ab182010-11-15 13:37:37 -0800144
145/*
John Stultzaac74dc2014-06-04 16:11:40 -0700146 * Special printk facility for scheduler/timekeeping use only, _DO_NOT_USE_ !
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100147 */
John Stultzaac74dc2014-06-04 16:11:40 -0700148__printf(1, 2) __cold int printk_deferred(const char *fmt, ...);
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100149
150/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800151 * Please don't use printk_ratelimit(), because it shares ratelimiting state
152 * with all other unrelated printk_ratelimit() callsites. Instead use
153 * printk_ratelimited() or plain old __ratelimit().
154 */
155extern int __printk_ratelimit(const char *func);
156#define printk_ratelimit() __printk_ratelimit(__func__)
157extern bool printk_timed_ratelimit(unsigned long *caller_jiffies,
158 unsigned int interval_msec);
159
160extern int printk_delay_msec;
161extern int dmesg_restrict;
Dan Rosenberg455cd5a2011-01-12 16:59:41 -0800162extern int kptr_restrict;
Linus Torvalds968ab182010-11-15 13:37:37 -0800163
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700164extern void wake_up_klogd(void);
165
Linus Torvalds968ab182010-11-15 13:37:37 -0800166void log_buf_kexec_setup(void);
Mike Travis162a7e72011-05-24 17:13:20 -0700167void __init setup_log_buf(int early);
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700168void dump_stack_set_arch_desc(const char *fmt, ...);
Tejun Heo196779b2013-04-30 15:27:12 -0700169void dump_stack_print_info(const char *log_lvl);
Tejun Heoa43cb952013-04-30 15:27:17 -0700170void show_regs_print_info(const char *log_lvl);
Linus Torvalds968ab182010-11-15 13:37:37 -0800171#else
Joe Perchesb9075fa2011-10-31 17:11:33 -0700172static inline __printf(1, 0)
Joe Perches5264f2f2011-01-12 16:59:45 -0800173int vprintk(const char *s, va_list args)
174{
175 return 0;
176}
Joe Perchesb9075fa2011-10-31 17:11:33 -0700177static inline __printf(1, 2) __cold
Joe Perches5264f2f2011-01-12 16:59:45 -0800178int printk(const char *s, ...)
179{
180 return 0;
181}
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100182static inline __printf(1, 2) __cold
John Stultzaac74dc2014-06-04 16:11:40 -0700183int printk_deferred(const char *s, ...)
Peter Zijlstra3ccf3e82012-02-27 10:47:00 +0100184{
185 return 0;
186}
Joe Perches5264f2f2011-01-12 16:59:45 -0800187static inline int printk_ratelimit(void)
188{
189 return 0;
190}
191static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies,
192 unsigned int interval_msec)
193{
194 return false;
195}
Linus Torvalds968ab182010-11-15 13:37:37 -0800196
Frederic Weisbeckerdc72c322013-03-22 15:04:39 -0700197static inline void wake_up_klogd(void)
198{
199}
200
Linus Torvalds968ab182010-11-15 13:37:37 -0800201static inline void log_buf_kexec_setup(void)
202{
203}
Mike Travis162a7e72011-05-24 17:13:20 -0700204
205static inline void setup_log_buf(int early)
206{
207}
Tejun Heo196779b2013-04-30 15:27:12 -0700208
Tejun Heo98e5e1b2013-04-30 15:27:15 -0700209static inline void dump_stack_set_arch_desc(const char *fmt, ...)
210{
211}
212
Tejun Heo196779b2013-04-30 15:27:12 -0700213static inline void dump_stack_print_info(const char *log_lvl)
214{
215}
Tejun Heoa43cb952013-04-30 15:27:17 -0700216
217static inline void show_regs_print_info(const char *log_lvl)
218{
219}
Linus Torvalds968ab182010-11-15 13:37:37 -0800220#endif
221
Andi Kleenb6c035d2013-08-05 15:02:48 -0700222extern asmlinkage void dump_stack(void) __cold;
Linus Torvalds968ab182010-11-15 13:37:37 -0800223
Linus Torvalds968ab182010-11-15 13:37:37 -0800224#ifndef pr_fmt
225#define pr_fmt(fmt) fmt
226#endif
227
Dan Streetman6e099f52014-06-04 16:11:44 -0700228/*
229 * These can be used to print at the various log levels.
230 * All of these will print unconditionally, although note that pr_debug()
231 * and other debug macros are compiled out unless either DEBUG is defined
232 * or CONFIG_DYNAMIC_DEBUG is set.
233 */
Linus Torvalds968ab182010-11-15 13:37:37 -0800234#define pr_emerg(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800235 printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800236#define pr_alert(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800237 printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800238#define pr_crit(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800239 printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800240#define pr_err(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800241 printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800242#define pr_warning(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800243 printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800244#define pr_warn pr_warning
245#define pr_notice(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800246 printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800247#define pr_info(fmt, ...) \
Joe Perchesa3f938b2011-01-12 16:59:48 -0800248 printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800249#define pr_cont(fmt, ...) \
250 printk(KERN_CONT fmt, ##__VA_ARGS__)
251
252/* pr_devel() should produce zero code unless DEBUG is defined */
253#ifdef DEBUG
254#define pr_devel(fmt, ...) \
255 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
256#else
257#define pr_devel(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800258 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800259#endif
260
Joe Perches29fc2bc2013-10-26 20:41:53 -0700261#include <linux/dynamic_debug.h>
262
Linus Torvalds968ab182010-11-15 13:37:37 -0800263/* If you are writing a driver, please use dev_dbg instead */
Jim Cromieb558c962011-12-19 17:11:18 -0500264#if defined(CONFIG_DYNAMIC_DEBUG)
Linus Torvalds968ab182010-11-15 13:37:37 -0800265/* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */
266#define pr_debug(fmt, ...) \
267 dynamic_pr_debug(fmt, ##__VA_ARGS__)
Jim Cromieb558c962011-12-19 17:11:18 -0500268#elif defined(DEBUG)
269#define pr_debug(fmt, ...) \
270 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800271#else
272#define pr_debug(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800273 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800274#endif
275
276/*
Joe Perches16cb8392011-01-12 16:59:46 -0800277 * Print a one-time message (analogous to WARN_ONCE() et al):
278 */
279
280#ifdef CONFIG_PRINTK
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800281#define printk_once(fmt, ...) \
282({ \
283 static bool __print_once __read_mostly; \
284 \
285 if (!__print_once) { \
286 __print_once = true; \
287 printk(fmt, ##__VA_ARGS__); \
288 } \
Joe Perches16cb8392011-01-12 16:59:46 -0800289})
John Stultzc2248152014-06-04 16:11:41 -0700290#define printk_deferred_once(fmt, ...) \
291({ \
292 static bool __print_once __read_mostly; \
293 \
294 if (!__print_once) { \
295 __print_once = true; \
296 printk_deferred(fmt, ##__VA_ARGS__); \
297 } \
298})
Joe Perches16cb8392011-01-12 16:59:46 -0800299#else
Joe Perchesc28aa1f2014-01-23 15:54:16 -0800300#define printk_once(fmt, ...) \
Joe Perches16cb8392011-01-12 16:59:46 -0800301 no_printk(fmt, ##__VA_ARGS__)
John Stultzc2248152014-06-04 16:11:41 -0700302#define printk_deferred_once(fmt, ...) \
303 no_printk(fmt, ##__VA_ARGS__)
Joe Perches16cb8392011-01-12 16:59:46 -0800304#endif
305
306#define pr_emerg_once(fmt, ...) \
307 printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
308#define pr_alert_once(fmt, ...) \
309 printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
310#define pr_crit_once(fmt, ...) \
311 printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
312#define pr_err_once(fmt, ...) \
313 printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
314#define pr_warn_once(fmt, ...) \
315 printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
316#define pr_notice_once(fmt, ...) \
317 printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
318#define pr_info_once(fmt, ...) \
319 printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
320#define pr_cont_once(fmt, ...) \
321 printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__)
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800322
323#if defined(DEBUG)
324#define pr_devel_once(fmt, ...) \
325 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
326#else
327#define pr_devel_once(fmt, ...) \
328 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
329#endif
330
Joe Perches16cb8392011-01-12 16:59:46 -0800331/* If you are writing a driver, please use dev_dbg instead */
332#if defined(DEBUG)
333#define pr_debug_once(fmt, ...) \
334 printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
335#else
336#define pr_debug_once(fmt, ...) \
337 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
338#endif
339
340/*
Linus Torvalds968ab182010-11-15 13:37:37 -0800341 * ratelimited messages with local ratelimit_state,
342 * no local ratelimit_state used in the !PRINTK case
343 */
344#ifdef CONFIG_PRINTK
Joe Perches6ec42a562011-01-12 16:59:47 -0800345#define printk_ratelimited(fmt, ...) \
346({ \
Linus Torvalds968ab182010-11-15 13:37:37 -0800347 static DEFINE_RATELIMIT_STATE(_rs, \
348 DEFAULT_RATELIMIT_INTERVAL, \
349 DEFAULT_RATELIMIT_BURST); \
350 \
351 if (__ratelimit(&_rs)) \
352 printk(fmt, ##__VA_ARGS__); \
353})
354#else
Joe Perches6ec42a562011-01-12 16:59:47 -0800355#define printk_ratelimited(fmt, ...) \
356 no_printk(fmt, ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800357#endif
358
Joe Perches6ec42a562011-01-12 16:59:47 -0800359#define pr_emerg_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800360 printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800361#define pr_alert_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800362 printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800363#define pr_crit_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800364 printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800365#define pr_err_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800366 printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800367#define pr_warn_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800368 printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800369#define pr_notice_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800370 printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__)
Joe Perches6ec42a562011-01-12 16:59:47 -0800371#define pr_info_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800372 printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__)
373/* no pr_cont_ratelimited, don't do that... */
Mikhail Gruzdev36d308d2013-02-21 16:43:10 -0800374
375#if defined(DEBUG)
376#define pr_devel_ratelimited(fmt, ...) \
377 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
378#else
379#define pr_devel_ratelimited(fmt, ...) \
380 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
381#endif
382
Linus Torvalds968ab182010-11-15 13:37:37 -0800383/* If you are writing a driver, please use dev_dbg instead */
Joe Perches29fc2bc2013-10-26 20:41:53 -0700384#if defined(CONFIG_DYNAMIC_DEBUG)
385/* descriptor check is first to prevent flooding with "callbacks suppressed" */
386#define pr_debug_ratelimited(fmt, ...) \
387do { \
388 static DEFINE_RATELIMIT_STATE(_rs, \
389 DEFAULT_RATELIMIT_INTERVAL, \
390 DEFAULT_RATELIMIT_BURST); \
391 DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
392 if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
393 __ratelimit(&_rs)) \
394 __dynamic_pr_debug(&descriptor, fmt, ##__VA_ARGS__); \
395} while (0)
396#elif defined(DEBUG)
Joe Perches6ec42a562011-01-12 16:59:47 -0800397#define pr_debug_ratelimited(fmt, ...) \
Linus Torvalds968ab182010-11-15 13:37:37 -0800398 printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
399#else
400#define pr_debug_ratelimited(fmt, ...) \
Joe Perches5264f2f2011-01-12 16:59:45 -0800401 no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__)
Linus Torvalds968ab182010-11-15 13:37:37 -0800402#endif
403
Kay Sieverse11fea92012-05-03 02:29:41 +0200404extern const struct file_operations kmsg_fops;
405
Joe Perchesac83ed62011-01-12 16:59:47 -0800406enum {
407 DUMP_PREFIX_NONE,
408 DUMP_PREFIX_ADDRESS,
409 DUMP_PREFIX_OFFSET
410};
411extern void hex_dump_to_buffer(const void *buf, size_t len,
412 int rowsize, int groupsize,
413 char *linebuf, size_t linebuflen, bool ascii);
414#ifdef CONFIG_PRINTK
415extern void print_hex_dump(const char *level, const char *prefix_str,
416 int prefix_type, int rowsize, int groupsize,
417 const void *buf, size_t len, bool ascii);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500418#if defined(CONFIG_DYNAMIC_DEBUG)
419#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
420 dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
421#else
Joe Perchesac83ed62011-01-12 16:59:47 -0800422extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
423 const void *buf, size_t len);
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500424#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
Joe Perchesac83ed62011-01-12 16:59:47 -0800425#else
426static inline void print_hex_dump(const char *level, const char *prefix_str,
427 int prefix_type, int rowsize, int groupsize,
428 const void *buf, size_t len, bool ascii)
429{
430}
431static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
432 const void *buf, size_t len)
433{
434}
435
436#endif
437
Vladimir Kondratiev7a555612012-12-05 16:48:27 -0500438#if defined(CONFIG_DYNAMIC_DEBUG)
439#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
440 groupsize, buf, len, ascii) \
441 dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
442 groupsize, buf, len, ascii)
443#else
444#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
445 groupsize, buf, len, ascii) \
446 print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
447 groupsize, buf, len, ascii)
448#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
449
Linus Torvalds968ab182010-11-15 13:37:37 -0800450#endif