1. 21 Dec, 2008 1 commit
  2. 19 Dec, 2008 4 commits
  3. 18 Dec, 2008 6 commits
  4. 17 Dec, 2008 27 commits
  5. 16 Dec, 2008 2 commits
    • Cyrill Gorcunov's avatar
      x86: entry_64 - introduce FTRACE_ frame macro v2 · d680fe44
      Cyrill Gorcunov authored
      Impact: clean up
      
      Itroduce MCOUNT_SAVE/RESTORE_FRAME which allow us to
      save a number of lines on source level.
      
      Also fix a comment in ftrace.h.
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      d680fe44
    • Frederic Weisbecker's avatar
      tracing/ftrace: add the printk-msg-only option · 66896a85
      Frederic Weisbecker authored
      Impact: display ftrace_printk messages "as is"
      
      By default, ftrace_printk() messages find their output with some other
      informations like pid, caller, ...
      Sometimes a developer just want to have the ftrace_printk left "as is", without
      other information.
      
      This is done by providing a default-off option called printk-msg-only.
      To enable it, just do `echo printk-msg-only > /debugfs/tracing/trace_options`
      
      Before the patch:
      
                 <...>-2739  [000]   145.692153: __might_sleep: I'm an ftrace_printk msg in __might_sleep
                 <...>-2739  [000]   145.692155: __might_sleep: I'm another ftrace_printk msg in __might_sleep
      
      After the patch and the printk-msg-only option enabled:
      
      I'm an ftrace_printk msg in __might_sleep
      I'm another ftrace_printk msg in __might_sleep
      Signed-off-by: default avatarFrederic Weisbecker <fweisbec@gmail.com>
      Cc: Steven Rostedt <rostedt@goodmis.org>
      Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
      66896a85