Skip to content

Commit

Permalink
perf record: Use per-task-per-cpu events for inherited events
Browse files Browse the repository at this point in the history
Create events with a pid and cpu contraint for inherited events
so that we get a stream per cpu, instead of all cpus contending
on a single stream.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: fweisbec@gmail.com
Cc: Paul Mackerras <paulus@samba.org>
LKML-Reference: <20091216165904.987643843@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Peter Zijlstra authored and Ingo Molnar committed Dec 16, 2009
1 parent 856e966 commit 60ab271
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/perf/builtin-record.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ static void create_counter(int counter, int cpu, pid_t pid)

attr->mmap = track;
attr->comm = track;
attr->inherit = (cpu < 0) && inherit;
attr->inherit = inherit;
attr->disabled = 1;

try_again:
Expand Down Expand Up @@ -537,7 +537,7 @@ static int __cmd_record(int argc __used, const char **argv)
}


if (!system_wide || profile_cpu != -1) {
if ((!system_wide && !inherit) || profile_cpu != -1) {
open_counters(profile_cpu, target_pid);
} else {
for (i = 0; i < nr_cpus; i++)
Expand Down

0 comments on commit 60ab271

Please sign in to comment.