summaryrefslogtreecommitdiff
path: root/tools/perf/util/include
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2013-04-20 11:02:28 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2013-07-12 13:53:52 -0300
commit50e200f07948400694238e08e7add73df5ba8f83 (patch)
tree91a2b5a0e0d06d1d7690bac23077d7d4c7c42c11 /tools/perf/util/include
parent380512345e13c3af64e59627f1b993c4faa94a84 (diff)
perf tools: Default to cpu// for events v5
When an event fails to parse and it's not in a new style format, try to parse it again as a cpu event. This allows to use sysfs exported events directly without //, so you can use perf record -e mem-loads ... instead of perf record -e cpu/mem-loads/ Signed-off-by: Andi Kleen <ak@linux.intel.com> Link: http://lkml.kernel.org/r/1366480949-32292-1-git-send-email-andi@firstfloor.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/util/include')
-rw-r--r--tools/perf/util/include/linux/string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/perf/util/include/linux/string.h b/tools/perf/util/include/linux/string.h
index 6f19c548ecc0..97a800738226 100644
--- a/tools/perf/util/include/linux/string.h
+++ b/tools/perf/util/include/linux/string.h
@@ -1,3 +1,4 @@
#include <string.h>
void *memdup(const void *src, size_t len);
+int str_append(char **s, int *len, const char *a);