diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-10-25 15:51:37 +0100 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-12-17 15:11:10 -0300 |
commit | a6e5281780d1da65c15ce529707f43eb4a6df856 (patch) | |
tree | a4a9167883eabb643111e2923609f596bbc6d2fa /tools/perf/util/event.h | |
parent | ffe777254cce24fb5fde3f0aa91fc755cfb1b812 (diff) | |
download | linux-a6e5281780d1da65c15ce529707f43eb4a6df856.tar.gz linux-a6e5281780d1da65c15ce529707f43eb4a6df856.tar.bz2 linux-a6e5281780d1da65c15ce529707f43eb4a6df856.zip |
perf tools: Add event_update event unit type
Adding unit type 'event update' event, that stores/transfer events unit
name. The unit name is part of the perf stat output data.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Tested-by: Kan Liang <kan.liang@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1445784728-21732-22-git-send-email-jolsa@kernel.org
[ Rename __alloc() to __new() for consistency ]
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/event.h')
-rw-r--r-- | tools/perf/util/event.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/perf/util/event.h b/tools/perf/util/event.h index 6966a4b7c0f0..64c4cdf5aada 100644 --- a/tools/perf/util/event.h +++ b/tools/perf/util/event.h @@ -308,6 +308,10 @@ struct attr_event { u64 id[]; }; +enum { + PERF_EVENT_UPDATE__UNIT = 0, +}; + struct event_update_event { struct perf_event_header header; u64 type; |