linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Sleep profiling
@ 2011-12-19 23:23 Arun Sharma
  2011-12-19 23:23 ` [PATCH 1/2] tracing, sched: move the sched_switch tracepoint Arun Sharma
  2011-12-19 23:23 ` [PATCH 2/2] tracing, sched: Add delay info to sched_switch Arun Sharma
  0 siblings, 2 replies; 9+ messages in thread
From: Arun Sharma @ 2011-12-19 23:23 UTC (permalink / raw)
  To: linux-kernel; +Cc: Arun Sharma

When debugging latency, users want to know where their code
is executing on the CPU (cycle profiling) as well as where 
it's waiting sleeping or waiting for IO. The following patch set
tries to address the latter.

Normal users can use this tracepoint without root privileges
and on a system with lots of context switches, load can be
reduced by filtering out uninteresting switches.

Sample command lines:

perf record -gPe sched:sched_switch --filter "delay > 10000" -- ./test
perf report --stdio -g graph -G

Arun Sharma (2):
  tracing, sched: move the sched_switch tracepoint
  tracing, sched: Add delay info to sched_switch

 include/trace/events/sched.h      |   21 +++++++++++++++++----
 kernel/sched.c                    |    2 +-
 kernel/sched_fair.c               |    6 ++++--
 kernel/trace/trace_sched_switch.c |    2 +-
 4 files changed, 23 insertions(+), 8 deletions(-)

-- 
1.7.4


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-12-19 23:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-19 23:23 [PATCH 0/2] Sleep profiling Arun Sharma
2011-12-19 23:23 ` [PATCH 1/2] tracing, sched: move the sched_switch tracepoint Arun Sharma
2011-12-19 23:29   ` Peter Zijlstra
2011-12-19 23:36   ` Peter Zijlstra
2011-12-19 23:40   ` Mathieu Desnoyers
2011-12-19 23:23 ` [PATCH 2/2] tracing, sched: Add delay info to sched_switch Arun Sharma
2011-12-19 23:28   ` Peter Zijlstra
2011-12-19 23:34     ` Steven Rostedt
2011-12-19 23:40       ` Arun Sharma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).