aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNamhyung Kim <namhyung.kim@lge.com>2012-05-20 21:42:07 -0400
committerArnaldo Carvalho de Melo <acme@redhat.com>2012-05-22 11:37:12 -0400
commite40ee742d4542b4c046ac5426654b1494d87ad73 (patch)
treee416c878d5ceb38659774967e42e83e4af13ea64
parente33387fc2748ac78fd577dee2c914fc3ea0ba0cd (diff)
perf target: Add cpu flag to sample_type if target has cpu
Add PERF_SAMPLE_CPU flag into attr->sample_type if an user specified any of cpu target (either system-wide or cpu list). It will show correct values when cpu sort key is given for perf top and perf report. Signed-off-by: Namhyung Kim <namhyung.kim@lge.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Namhyung Kim <namhyung@gmail.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1337564527-9367-1-git-send-email-namhyung.kim@lge.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r--tools/perf/builtin-top.c3
-rw-r--r--tools/perf/util/evsel.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c
index 3e981a710c4..18bd226f9f2 100644
--- a/tools/perf/builtin-top.c
+++ b/tools/perf/builtin-top.c
@@ -900,6 +900,9 @@ static void perf_top__start_counters(struct perf_top *top)
900 attr->read_format |= PERF_FORMAT_ID; 900 attr->read_format |= PERF_FORMAT_ID;
901 } 901 }
902 902
903 if (perf_target__has_cpu(&top->target))
904 attr->sample_type |= PERF_SAMPLE_CPU;
905
903 if (symbol_conf.use_callchain) 906 if (symbol_conf.use_callchain)
904 attr->sample_type |= PERF_SAMPLE_CALLCHAIN; 907 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
905 908
diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
index f4f427ce4d6..9abd8ac508e 100644
--- a/tools/perf/util/evsel.c
+++ b/tools/perf/util/evsel.c
@@ -108,7 +108,7 @@ void perf_evsel__config(struct perf_evsel *evsel, struct perf_record_opts *opts,
108 if (opts->call_graph) 108 if (opts->call_graph)
109 attr->sample_type |= PERF_SAMPLE_CALLCHAIN; 109 attr->sample_type |= PERF_SAMPLE_CALLCHAIN;
110 110
111 if (opts->target.system_wide) 111 if (perf_target__has_cpu(&opts->target))
112 attr->sample_type |= PERF_SAMPLE_CPU; 112 attr->sample_type |= PERF_SAMPLE_CPU;
113 113
114 if (opts->period) 114 if (opts->period)