perf tools: Extend the event parser maximum error index
authorAdrian Hunter <adrian.hunter@intel.com>
Fri, 17 Jul 2015 16:33:51 +0000 (19:33 +0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 6 Aug 2015 19:49:44 +0000 (16:49 -0300)
Extend the event parser maximum error index from 10 to 13.  That allows
PMU config terms of up to 10 characters to display un-truncated in the
error message.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/r/1437150840-31811-17-git-send-email-adrian.hunter@intel.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/parse-events.c

index a6cb9afc20e28539f5d323bd34fc641fbe1bf681..828936dc3f1ee9bd77d9142634c7fc1676ea66b2 100644 (file)
@@ -1168,7 +1168,7 @@ static void parse_events_print_error(struct parse_events_error *err,
                 * Maximum error index indent, we will cut
                 * the event string if it's bigger.
                 */
-               int max_err_idx = 10;
+               int max_err_idx = 13;
 
                /*
                 * Let's be specific with the message when
This page took 0.027123 seconds and 5 git commands to generate.