From: Taeung Song Date: Wed, 1 Feb 2017 12:34:04 +0000 (+0900) Subject: perf tools: Only increase index if perf_evsel__new_idx() succeeds X-Git-Tag: v4.11-rc1~172^2~6^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75fc5ae5cc53fff71041ecadeb3354a2b4c9fe42;p=platform%2Fkernel%2Flinux-exynos.git perf tools: Only increase index if perf_evsel__new_idx() succeeds Signed-off-by: Taeung Song Cc: Jiri Olsa Cc: Namhyung Kim Cc: Peter Zijlstra Cc: Wang Nan Link: http://lkml.kernel.org/r/1485952447-7013-2-git-send-email-treeze.taeung@gmail.com Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/parse-events.c b/tools/perf/util/parse-events.c index 6dbcba7..2720600 100644 --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c @@ -310,10 +310,11 @@ __add_event(struct list_head *list, int *idx, event_attr_init(attr); - evsel = perf_evsel__new_idx(attr, (*idx)++); + evsel = perf_evsel__new_idx(attr, *idx); if (!evsel) return NULL; + (*idx)++; evsel->cpus = cpu_map__get(cpus); evsel->own_cpus = cpu_map__get(cpus);