diff options
author | Ingo Molnar <mingo@kernel.org> | 2014-01-23 17:43:35 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-01-23 17:43:35 +0100 |
commit | bb236de5d9509c1c6ea5ce0680f000002e731ee2 (patch) | |
tree | c2f97ab6907d5996d259e9f11eb6faf0456fc8ef /tools/perf/util/pmu.h | |
parent | 15c81026204da897a05424c79263aea861a782cc (diff) | |
parent | 578c03c86fadcc6fd7319ddf41dd4d1d88aab77a (diff) | |
download | op-kernel-dev-bb236de5d9509c1c6ea5ce0680f000002e731ee2.zip op-kernel-dev-bb236de5d9509c1c6ea5ce0680f000002e731ee2.tar.gz |
Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent
Pull perf tooling fixes and updates from Arnaldo Carvalho de Melo:
* Fix JIT symbol resolution on heap (Namhyung Kim)
* Fix wrong SVG height in 'timechart' (Stanislav Fomichev)
* Free temp cpu_map in perf_session__cpu_bitmap (Stanislav Fomichev)
* Fix NULL pointer reference bug with event unit in 'stat' (Stephane Eranian)
* Fix memory corruption of xyarray when cpumask is used (Stephane Eranian)
* Ensure sscanf does not overrun the "mem" field (Alan Cox)
* Add support for the xtensa architecture (Baruch Siach)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/util/pmu.h')
-rw-r--r-- | tools/perf/util/pmu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/pmu.h b/tools/perf/util/pmu.h index 9183380..8b64125 100644 --- a/tools/perf/util/pmu.h +++ b/tools/perf/util/pmu.h @@ -29,7 +29,7 @@ int perf_pmu__config_terms(struct list_head *formats, struct perf_event_attr *attr, struct list_head *head_terms); int perf_pmu__check_alias(struct perf_pmu *pmu, struct list_head *head_terms, - char **unit, double *scale); + const char **unit, double *scale); struct list_head *perf_pmu__alias(struct perf_pmu *pmu, struct list_head *head_terms); int perf_pmu_wrap(void); |