]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
perf record: Add support for mem access profiling
authorStephane Eranian <eranian@google.com>
Thu, 24 Jan 2013 15:10:37 +0000 (16:10 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Mon, 1 Apr 2013 15:20:28 +0000 (12:20 -0300)
We use the -W option to obtain the cost of the memory accesses.

Data address sampling is obtained via the -d option.

Signed-off-by: Stephane Eranian <eranian@google.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/1359040242-8269-14-git-send-email-eranian@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/evsel.c

index 5c4ca51c8f7b4f11543cec4005afc35533b344cf..07b1a3ad3e24a4f24a04877e62d43dccce52d8ff 100644 (file)
@@ -554,6 +554,9 @@ void perf_evsel__config(struct perf_evsel *evsel,
                perf_evsel__set_sample_bit(evsel, CPU);
        }
 
+       if (opts->sample_address)
+               attr->sample_type       |= PERF_SAMPLE_DATA_SRC;
+
        if (opts->no_delay) {
                attr->watermark = 0;
                attr->wakeup_events = 1;