summaryrefslogtreecommitdiffstats
path: root/tools/perf
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2017-08-11 16:26:24 -0700
committerArnaldo Carvalho de Melo <acme@redhat.com>2017-08-22 12:19:05 -0300
commit8d3db2b97f5cb22cc589ba1e8e5232a26bfeb5d6 (patch)
treebd1bbba6e3373301002676e8710cdb5dc09b37a5 /tools/perf
parentd73bad06851b8d5745c11dd4ab789464f6c71b39 (diff)
downloadlinux-0-day-8d3db2b97f5cb22cc589ba1e8e5232a26bfeb5d6.tar.gz
linux-0-day-8d3db2b97f5cb22cc589ba1e8e5232a26bfeb5d6.tar.xz
perf tools: Increase maximum number of events in expressions
Some of the upcoming metrics need more than 8 events. Increase the maximum number the parser supports. Signed-off-by: Andi Kleen <ak@linux.intel.com> Acked-by: Jiri Olsa <jolsa@kernel.org> Link: http://lkml.kernel.org/r/20170811232634.30465-9-andi@firstfloor.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/util/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/expr.h b/tools/perf/util/expr.h
index 9c2760a1a96ea..400ef9eab00a0 100644
--- a/tools/perf/util/expr.h
+++ b/tools/perf/util/expr.h
@@ -1,7 +1,7 @@
#ifndef PARSE_CTX_H
#define PARSE_CTX_H 1
-#define EXPR_MAX_OTHER 8
+#define EXPR_MAX_OTHER 15
#define MAX_PARSE_ID EXPR_MAX_OTHER
struct parse_id {