From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:56034 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751517AbdKFJMn (ORCPT ); Mon, 6 Nov 2017 04:12:43 -0500 Subject: Patch "perf tools: Only increase index if perf_evsel__new_idx() succeeds" has been added to the 4.9-stable tree To: treeze.taeung@gmail.com, acme@redhat.com, alexander.levin@verizon.com, gregkh@linuxfoundation.org, jolsa@kernel.org, namhyung@kernel.org, peterz@infradead.org, wangnan0@huawei.com Cc: , From: Date: Mon, 06 Nov 2017 10:11:45 +0100 Message-ID: <150995950519957@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled perf tools: Only increase index if perf_evsel__new_idx() succeeds to the 4.9-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: perf-tools-only-increase-index-if-perf_evsel__new_idx-succeeds.patch and it can be found in the queue-4.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From foo@baz Mon Nov 6 10:07:35 CET 2017 From: Taeung Song Date: Sat, 7 Oct 2017 22:36:50 +0000 Subject: perf tools: Only increase index if perf_evsel__new_idx() succeeds From: Taeung Song [ Upstream commit 75fc5ae5cc53fff71041ecadeb3354a2b4c9fe42 ] 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 Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- tools/perf/util/parse-events.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/tools/perf/util/parse-events.c +++ b/tools/perf/util/parse-events.c @@ -309,10 +309,11 @@ __add_event(struct list_head *list, int 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); Patches currently in stable-queue which might be from treeze.taeung@gmail.com are queue-4.9/perf-tools-only-increase-index-if-perf_evsel__new_idx-succeeds.patch