diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2009-03-06 11:21:49 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-03-06 11:59:12 -0500 |
commit | 769b0441f438c4bb4872cb8560eb6fe51bcc09ee (patch) | |
tree | 9908682dfd89e97c3097a7c3adcae35d821e1895 /include/linux/kernel.h | |
parent | 1ba28e02a18cbdbea123836f6c98efb09cbf59ec (diff) |
tracing/core: drop the old trace_printk() implementation in favour of trace_bprintk()
Impact: faster and lighter tracing
Now that we have trace_bprintk() which is faster and consume lesser
memory than trace_printk() and has the same purpose, we can now drop
the old implementation in favour of the binary one from trace_bprintk(),
which means we move all the implementation of trace_bprintk() to
trace_printk(), so the Api doesn't change except that we must now use
trace_seq_bprintk() to print the TRACE_PRINT entries.
Some changes result of this:
- Previously, trace_bprintk depended of a single tracer and couldn't
work without. This tracer has been dropped and the whole implementation
of trace_printk() (like the module formats management) is now integrated
in the tracing core (comes with CONFIG_TRACING), though we keep the file
trace_printk (previously trace_bprintk.c) where we can find the module
management. Thus we don't overflow trace.c
- changes some parts to use trace_seq_bprintk() to print TRACE_PRINT entries.
- change a bit trace_printk/trace_vprintk macros to support non-builtin formats
constants, and fix 'const' qualifiers warnings. But this is all transparent for
developers.
- etc...
V2:
- Rebase against last changes
- Fix mispell on the changelog
V3:
- Rebase against last changes (moving trace_printk() to kernel.h)
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Steven Rostedt <rostedt@goodmis.org>
LKML-Reference: <1236356510-8381-5-git-send-email-fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r-- | include/linux/kernel.h | 34 |
1 files changed, 31 insertions, 3 deletions
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. |