1. 20 Oct, 2010 2 commits
    • Steven Rostedt's avatar
      ring-buffer: Pass delta by value and not by reference · f25106ae
      Steven Rostedt authored
      The delta between events is passed to the timestamp code by reference
      and the timestamp code will reset the value. But it can be reset
      from the caller. No need to pass it in by reference.
      
      By changing the call to pass by value, lets gcc optimize the code
      a bit more where it can store the delta in a register and not
      worry about updating the reference.
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      f25106ae
    • Steven Rostedt's avatar
      ring-buffer: Pass timestamp by value and not by reference · e8bc43e8
      Steven Rostedt authored
      The original code for the ring buffer had locations that modified
      the timestamp and that change was used by the callers. Now,
      the timestamp is not reused by the callers and there is no reason
      to pass it by reference.
      
      By changing the call to pass by value, lets gcc optimize the code
      a bit more where it can store the timestamp in a register and not
      worry about updating the reference.
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      e8bc43e8
  2. 19 Oct, 2010 2 commits
  3. 18 Oct, 2010 18 commits
  4. 17 Oct, 2010 4 commits
  5. 16 Oct, 2010 4 commits
  6. 15 Oct, 2010 10 commits