From: "avagin@gmail.com" <avagin@gmail.com>
To: Peter Zijlstra <peterz@infradead.org>
Cc: Arun Sharma <asharma@fb.com>,
linux-perf-users@vger.kernel.org, acme@ghostprotocols.net,
mingo@elte.hu, Stephane Eranian <eranian@google.com>,
Frederic Weisbecker <fweisbec@gmail.com>
Subject: Re: Profiling sleep times?
Date: Fri, 07 Oct 2011 09:42:26 +0400 [thread overview]
Message-ID: <4E8E9142.1030103@gmail.com> (raw)
In-Reply-To: <1317951036.9813.12.camel@twins>
On 10/07/2011 05:30 AM, Peter Zijlstra wrote:
> On Thu, 2011-10-06 at 14:56 -0700, Arun Sharma wrote:
>> foo 15516 [006] 2291.187831: sched_stat_sleep: comm=foo
>> pid=15516 delay=4054262 [ns]
>> foo 15516 [006] 2291.187832: sched_stat_sleep: comm=foo
>> pid=15516 delay=4054262 [ns]
>> foo 15516 [006] 2291.188895: sched_stat_sleep: comm=foo
>> pid=15516 delay=1053565 [ns]
>> foo 15516 [006] 2291.188896: sched_stat_sleep: comm=foo
>> pid=15516 delay=1053565 [ns]
>> foo 15516 [006] 2291.188897: sched_stat_sleep: comm=foo
>> pid=15516 delay=1053565 [ns]
>
> But the idea of the __perf_count() thing:
__perf_count() doesn't work now and I have sent the patch, which fixes
it. Could you commit it? It's subject:
[PATCH 1/4] perf: fix counter of ftrace events
but it's not all.
By default perf doesn't use SAMPLE_PERIOD, it bases on events count.
Each "trace" event is divided on some "perf" events in
perf_swevent_overflow().
The number of perf events should be proportional __perf_count(), but the
number of perf events restricted by sysctl_perf_event_sample_rate / HZ.
In my case it's 100 events.
....
if (hwc->interrupts != MAX_INTERRUPTS) {
hwc->interrupts++;
if (HZ * hwc->interrupts > (u64)sysctl_perf_event_sample_rate) {
....
So Arun Sharma probably has perf.data which contains packages of events
and each package contains 100 events irrespective of "delay".
>
> DECLARE_EVENT_CLASS(sched_stat_template,
>
> TP_PROTO(struct task_struct *tsk, u64 delay),
>
> TP_ARGS(tsk, delay),
>
> TP_STRUCT__entry(
> __array( char, comm, TASK_COMM_LEN )
> __field( pid_t, pid )
> __field( u64, delay )
> ),
>
> TP_fast_assign(
> memcpy(__entry->comm, tsk->comm, TASK_COMM_LEN);
> __entry->pid = tsk->pid;
> __entry->delay = delay;
> )
> TP_perf_assign(
> __perf_count(delay);
> ),
>
> TP_printk("comm=%s pid=%d delay=%Lu [ns]",
> __entry->comm, __entry->pid,
> (unsigned long long)__entry->delay)
> );
>
>
> is that the counter is incremented with the delay, so the event should
> get weighted right.
>
> So having to get the delay out of the raw tracepoint data shouldn't be
> needed.
next prev parent reply other threads:[~2011-10-07 5:42 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-03 19:38 Profiling sleep times? Arun Sharma
2011-10-03 20:17 ` Peter Zijlstra
2011-10-03 21:53 ` Arun Sharma
2011-10-04 8:34 ` Peter Zijlstra
2011-10-06 21:56 ` Arun Sharma
2011-10-07 0:05 ` Arun Sharma
2011-10-07 1:30 ` Peter Zijlstra
2011-10-07 5:42 ` avagin [this message]
2011-10-07 9:33 ` Peter Zijlstra
2011-10-07 17:58 ` Arun Sharma
2011-10-07 23:16 ` avagin
2011-10-08 1:45 ` avagin
2011-10-10 18:50 ` Arun Sharma
2011-10-12 7:41 ` Ingo Molnar
2011-10-13 5:39 ` Andrew Vagin
2011-10-14 21:19 ` Arun Sharma
2011-10-15 17:00 ` Ingo Molnar
2011-10-15 19:22 ` Peter Zijlstra
2011-10-15 19:29 ` Peter Zijlstra
2011-10-18 1:07 ` Arun Sharma
2011-10-22 10:49 ` Frederic Weisbecker
2011-10-22 16:22 ` Andrew Wagin
2011-10-23 0:27 ` Arun Sharma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4E8E9142.1030103@gmail.com \
--to=avagin@gmail.com \
--cc=acme@ghostprotocols.net \
--cc=asharma@fb.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-perf-users@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=peterz@infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.