diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ftrace.h | 25 | ||||
-rw-r--r-- | include/linux/kernel.h | 34 | ||||
-rw-r--r-- | include/linux/module.h | 2 |
3 files changed, 32 insertions, 29 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h index 1cc8ca453a9b..e1583f2639b0 100644 --- a/include/linux/ftrace.h +++ b/include/linux/ftrace.h | |||
@@ -223,31 +223,6 @@ extern int ftrace_make_nop(struct module *mod, | |||
223 | */ | 223 | */ |
224 | extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr); | 224 | extern int ftrace_make_call(struct dyn_ftrace *rec, unsigned long addr); |
225 | 225 | ||
226 | #ifdef CONFIG_TRACE_BPRINTK | ||
227 | extern int trace_vbprintk(unsigned long ip, const char *fmt, va_list args); | ||
228 | extern int __trace_bprintk(unsigned long ip, const char *fmt, ...) | ||
229 | __attribute__ ((format (printf, 2, 3))); | ||
230 | |||
231 | static inline void ____trace_bprintk_check_format(const char *fmt, ...) | ||
232 | __attribute__ ((format (printf, 1, 2))); | ||
233 | static inline void ____trace_bprintk_check_format(const char *fmt, ...) {} | ||
234 | #define __trace_bprintk_check_format(fmt, args...) \ | ||
235 | do { \ | ||
236 | if (0) \ | ||
237 | ____trace_bprintk_check_format(fmt, ##args); \ | ||
238 | } while (0) | ||
239 | |||
240 | #define trace_bprintk(fmt, args...) \ | ||
241 | do { \ | ||
242 | static char *__attribute__((section("__trace_bprintk_fmt"))) \ | ||
243 | trace_bprintk_fmt = fmt; \ | ||
244 | __trace_bprintk_check_format(fmt, ##args); \ | ||
245 | __trace_bprintk(_THIS_IP_, trace_bprintk_fmt, ##args); \ | ||
246 | } while (0) | ||
247 | #else | ||
248 | #define trace_bprintk trace_printk | ||
249 | #endif | ||
250 | |||
251 | /* May be defined in arch */ | 226 | /* May be defined in arch */ |
252 | extern int ftrace_arch_read_dyn_info(char *buf, int size); | 227 | extern int ftrace_arch_read_dyn_info(char *buf, int size); |
253 | 228 | ||
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 7aef15c4645e..4e726b9a71ec 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -423,6 +423,16 @@ extern void ftrace_off_permanent(void); | |||
423 | extern void | 423 | extern void |
424 | ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3); | 424 | ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3); |
425 | 425 | ||
426 | static inline void __attribute__ ((format (printf, 1, 2))) | ||
427 | ____trace_printk_check_format(const char *fmt, ...) | ||
428 | { | ||
429 | } | ||
430 | #define __trace_printk_check_format(fmt, args...) \ | ||
431 | do { \ | ||
432 | if (0) \ | ||
433 | ____trace_printk_check_format(fmt, ##args); \ | ||
434 | } while (0) | ||
435 | |||
426 | /** | 436 | /** |
427 | * trace_printk - printf formatting in the ftrace buffer | 437 | * trace_printk - printf formatting in the ftrace buffer |
428 | * @fmt: the printf format for printing | 438 | * @fmt: the printf format for printing |
@@ -439,13 +449,31 @@ ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3); | |||
439 | * Please refrain from leaving trace_printks scattered around in | 449 | * Please refrain from leaving trace_printks scattered around in |
440 | * your code. | 450 | * your code. |
441 | */ | 451 | */ |
442 | # define trace_printk(fmt...) __trace_printk(_THIS_IP_, fmt) | 452 | |
453 | #define trace_printk(fmt, args...) \ | ||
454 | do { \ | ||
455 | static const char *trace_printk_fmt \ | ||
456 | __attribute__((section("__trace_printk_fmt"))); \ | ||
457 | trace_printk_fmt = fmt; \ | ||
458 | __trace_printk_check_format(fmt, ##args); \ | ||
459 | __trace_printk(_THIS_IP_, trace_printk_fmt, ##args); \ | ||
460 | } while (0) | ||
461 | |||
443 | extern int | 462 | extern int |
444 | __trace_printk(unsigned long ip, const char *fmt, ...) | 463 | __trace_printk(unsigned long ip, const char *fmt, ...) |
445 | __attribute__ ((format (printf, 2, 3))); | 464 | __attribute__ ((format (printf, 2, 3))); |
446 | # define ftrace_vprintk(fmt, ap) __trace_printk(_THIS_IP_, fmt, ap) | 465 | |
466 | #define ftrace_vprintk(fmt, vargs) \ | ||
467 | do { \ | ||
468 | static const char *trace_printk_fmt \ | ||
469 | __attribute__((section("__trace_printk_fmt"))); \ | ||
470 | trace_printk_fmt = fmt; \ | ||
471 | __ftrace_vprintk(_THIS_IP_, trace_printk_fmt, vargs); \ | ||
472 | } while (0) | ||
473 | |||
447 | extern int | 474 | extern int |
448 | __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); | 475 | __ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap); |
476 | |||
449 | extern void ftrace_dump(void); | 477 | extern void ftrace_dump(void); |
450 | #else | 478 | #else |
451 | static inline void | 479 | static inline void |
@@ -467,7 +495,7 @@ ftrace_vprintk(const char *fmt, va_list ap) | |||
467 | return 0; | 495 | return 0; |
468 | } | 496 | } |
469 | static inline void ftrace_dump(void) { } | 497 | static inline void ftrace_dump(void) { } |
470 | #endif | 498 | #endif /* CONFIG_TRACING */ |
471 | 499 | ||
472 | /* | 500 | /* |
473 | * Display an IP address in readable format. | 501 | * Display an IP address in readable format. |
diff --git a/include/linux/module.h b/include/linux/module.h index 8cbec972d8e7..22d9878e868c 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
@@ -329,7 +329,7 @@ struct module | |||
329 | unsigned int num_tracepoints; | 329 | unsigned int num_tracepoints; |
330 | #endif | 330 | #endif |
331 | 331 | ||
332 | #ifdef CONFIG_TRACE_BPRINTK | 332 | #ifdef CONFIG_TRACING |
333 | const char **trace_bprintk_fmt_start; | 333 | const char **trace_bprintk_fmt_start; |
334 | unsigned int num_trace_bprintk_fmt; | 334 | unsigned int num_trace_bprintk_fmt; |
335 | #endif | 335 | #endif |