summaryrefslogtreecommitdiffstats
path: root/tools/perf/util/evsel.h
diff options
context:
space:
mode:
authorStephane Eranian2013-01-29 12:47:43 +0100
committerArnaldo Carvalho de Melo2013-01-30 14:36:38 +0100
commitc7a79c47c683de6979a3e1a96dc723b0606c07ca (patch)
treead9a8b84c07b1c97253157dbcfd2ab53a7098375 /tools/perf/util/evsel.h
parentperf tools: Make numa benchmark optional (diff)
downloadkernel-qcow2-linux-c7a79c47c683de6979a3e1a96dc723b0606c07ca.tar.gz
kernel-qcow2-linux-c7a79c47c683de6979a3e1a96dc723b0606c07ca.tar.xz
kernel-qcow2-linux-c7a79c47c683de6979a3e1a96dc723b0606c07ca.zip
perf evsel: Add prev_raw_count field
This field will be used by commands which print counter deltas on regular timer intervals, such as perf stat -I. 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/1359460064-3060-2-git-send-email-eranian@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/evsel.h')
-rw-r--r--tools/perf/util/evsel.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/evsel.h b/tools/perf/util/evsel.h
index c68d1b82e843..3a4cd60044ea 100644
--- a/tools/perf/util/evsel.h
+++ b/tools/perf/util/evsel.h
@@ -53,6 +53,7 @@ struct perf_evsel {
struct xyarray *sample_id;
u64 *id;
struct perf_counts *counts;
+ struct perf_counts *prev_raw_counts;
int idx;
u32 ids;
struct hists hists;