From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754325AbbGIVPJ (ORCPT ); Thu, 9 Jul 2015 17:15:09 -0400 Received: from casper.infradead.org ([85.118.1.10]:36662 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754187AbbGIVPE (ORCPT ); Thu, 9 Jul 2015 17:15:04 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Borislav Petkov , David Ahern , Frederic Weisbecker , Jiri Olsa , Namhyung Kim , Stephane Eranian , Arnaldo Carvalho de Melo Subject: [GIT PULL 0/2] Two extra perf/urgent fixes Date: Thu, 9 Jul 2015 18:14:19 -0300 Message-Id: <1436476461-8020-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.1.0 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, a fallout from removing linux/export.h when copying rbtree.c and removing kernel specific stuff (EXPORT_SYMBOL), this is on top of my previous perf-urgent-for-mingo pull req. - Arnaldo The following changes since commit 08ae217b8d44986062fe3648c5bb83816d5bc00f: perf thread_map: Fix the sizeof() calculation for map entries (2015-07-09 12:28:53 -0300) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-urgent-for-mingo-2 for you to fetch changes up to 0aefc3590afcc9ecbe173fc01fccbda0869d2f0a: tools: Copy lib/hweight.c from the kernel sources (2015-07-09 16:29:56 -0300) ---------------------------------------------------------------- perf/urgent fixes: These are only noticed when doing a detached tarball, i.e. when one does: make perf-perf-tar-src-pkg to create a perf-4.2.0-rc1.tar file and then try to build the contents of this tarball: - The python binding also has a MANIFEST like file where we list the files that need to be built and linked to form the resulting python shared object module file. And it has an entry for rbtree.c that still pointed to the one in the kernel sources, fix it by also removing one level of indirection so that it uses the tools/lib/rbtree.c copy. (Arnaldo Carvalho de Melo) - For the same reasons as for rbtree.c, copy the kernel lib/hweight.c file to tools/lib/, sanitizing it in the process to remove kernel specific stuff like EXPORT_SYMBOL() lines and the linux/export.h include reference, as that file doesn't exist anymore in tools/include/linux. (Arnaldo Carvalho de Melo) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (2): perf tools: Fix the detached tarball wrt rbtree copy tools: Copy lib/hweight.c from the kernel sources tools/lib/hweight.c | 62 ++++++++++++++++++++++++++++++++++++++ tools/perf/MANIFEST | 2 +- tools/perf/util/Build | 2 +- tools/perf/util/python-ext-sources | 4 +-- 4 files changed, 66 insertions(+), 4 deletions(-) create mode 100644 tools/lib/hweight.c