diff options
author | Andi Kleen <ak@linux.intel.com> | 2017-08-12 02:26:24 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2017-08-22 18:19:05 +0300 |
commit | 8d3db2b97f5cb22cc589ba1e8e5232a26bfeb5d6 (patch) | |
tree | bd1bbba6e3373301002676e8710cdb5dc09b37a5 /tools/perf/util | |
parent | d73bad06851b8d5745c11dd4ab789464f6c71b39 (diff) | |
download | linux-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/util')
-rw-r--r-- | tools/perf/util/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/expr.h b/tools/perf/util/expr.h index 9c2760a1a96e..400ef9eab00a 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 { |