perf tools: Fix cache event name generation
authorJiri Olsa <[email protected]>
Wed, 5 Sep 2012 17:51:33 +0000 (19:51 +0200)
committerArnaldo Carvalho de Melo <[email protected]>
Thu, 6 Sep 2012 18:01:08 +0000 (15:01 -0300)
If the event name is specified with all 3 components, the last one
overwrites the previous one during the name composing within the
parse_events_add_cache function.

Fixing this by properly adjusting the string index.

Reported-by: Joel Uckelman <[email protected]>
Signed-off-by: Jiri Olsa <[email protected]>
Cc: Corey Ashford <[email protected]>
Cc: Frederic Weisbecker <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Joel Uckelman <[email protected]>
Cc: Paul Mackerras <[email protected]>
Cc: Peter Zijlstra <[email protected]>
LPU-Reference: 20120905175133[email protected]
[ committer note: Remove the newline fix, done already in 42e1fb7 ]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
tools/perf/util/parse-events.c

index 66d235e0cc98f2050187a7982b0135d2d1c21946..a031ee1f54f6d97dbf2f3cae12b293d1fd2f1f71 100644 (file)
@@ -308,7 +308,7 @@ int parse_events_add_cache(struct list_head **list, int *idx,
        for (i = 0; (i < 2) && (op_result[i]); i++) {
                char *str = op_result[i];
 
-               snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
+               n += snprintf(name + n, MAX_NAME_LEN - n, "-%s", str);
 
                if (cache_op == -1) {
                        cache_op = parse_aliases(str, perf_evsel__hw_cache_op,