From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753117AbbIQS4Z (ORCPT ); Thu, 17 Sep 2015 14:56:25 -0400 Received: from casper.infradead.org ([85.118.1.10]:36239 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752052AbbIQSy7 (ORCPT ); Thu, 17 Sep 2015 14:54:59 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Andi Kleen , Borislav Petkov , David Ahern , Frederic Weisbecker , Jiri Olsa , Kan Liang , Matt Fleming , Milos Vyletel , Namhyung Kim , "Naveen N. Rao" , Peter Senna Tschudin , Peter Zijlstra , Srikar Dronamraju , Stephane Eranian , Steven Rostedt , Victor Kamensky , Vinson Lee , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 0/5] perf/urgent fixes Date: Thu, 17 Sep 2015 15:54:27 -0300 Message-Id: <1442516072-27033-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.1.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-SRS-Rewrite: SMTP reverse-path rewritten from by casper.infradead.org See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Ingo, Please consider pulling, - Arnaldo The following changes since commit f6cf87f748ff9480f97ff9c5caf6d6faacf52aa1: Merge tag 'perf-urgent-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2015-09-16 09:06:54 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo for you to fetch changes up to bf6445631c6f00882b25516a174d5073ce0c6f81: perf tools: Bool functions shouldn't return -1 (2015-09-17 15:31:52 -0300) ---------------------------------------------------------------- perf/urgent fixes: User visible: - When handling perf_event_open() returning EBUSY and not being able to opendir the procfs mount point we would tell the user that the oprofile daemon was found by returning -1 on as the return for a bool function, oops, fix it, found with Coccinelle (Peter Senna Tschudin). - Fix per-pkg event reporting bug in 'perf stat' (Stephane Eranian) Developer visible: - Fix missing prototype for function provided when it isn't present in the libelf present, fixing the build on RHEL/CentOS 5.1 systems, for instance (Arnaldo Carvalho de Melo) - Detect if the gcc and libnuma have the features needed to avoid requiring the use of NO_LIBNUMA and/or NO_AUXTRACE to build on older systems (Arnaldo Carvalho de Melo) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (3): Revert "perf symbols: Fix mismatched declarations for elf_getphdrnum" tools build: Add test for presence of numa_num_possible_cpus() in libnuma tools build: Add test for presence of __get_cpuid() gcc builtin Peter Senna Tschudin (1): perf tools: Bool functions shouldn't return -1 Stephane Eranian (1): perf stat: Fix per-pkg event reporting bug tools/build/Makefile.feature | 8 ++++++-- tools/build/feature/Makefile | 10 +++++++++- tools/build/feature/test-all.c | 10 ++++++++++ tools/build/feature/test-get_cpuid.c | 7 +++++++ tools/build/feature/test-numa_num_possible_cpus.c | 6 ++++++ tools/perf/config/Makefile | 20 +++++++++++++++----- tools/perf/util/stat.c | 16 ++++++++++++++-- tools/perf/util/symbol-elf.c | 2 +- tools/perf/util/util.c | 2 +- 9 files changed, 69 insertions(+), 12 deletions(-) create mode 100644 tools/build/feature/test-get_cpuid.c create mode 100644 tools/build/feature/test-numa_num_possible_cpus.c