From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754905AbcHAS5Y (ORCPT ); Mon, 1 Aug 2016 14:57:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:46866 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754845AbcHAS5J (ORCPT ); Mon, 1 Aug 2016 14:57:09 -0400 From: Jiri Olsa To: Arnaldo Carvalho de Melo Cc: lkml , David Ahern , Ingo Molnar , Namhyung Kim , Peter Zijlstra Subject: [PATCH 0/7] perf tools: Several fixes Date: Mon, 1 Aug 2016 20:02:28 +0200 Message-Id: <1470074555-24889-1-git-send-email-jolsa@kernel.org> X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Mon, 01 Aug 2016 18:02:38 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org hi, sending assorted fixes that will be needed for c2c patchset. I understand it's mostly adding new functions with no user ATM, but they are quite generic and could be useful for others as well. Accepting this would lower the volume of the c2c patchset I intent to send out ;-) Also available in; git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git perf/fixes thanks, jirka --- Jiri Olsa (7): tools lib: Add bitmap_alloc function tools lib: Add bitmap_snprintf function tools lib: Add bitmap_and function perf tests: Add test for bitmap_snprintf function perf tools: Move config/Makefile into Makefile.config perf tools: Introduce hists__output_resort_cb function perf tools: Add --sample-cpu option to record command tools/include/linux/bitmap.h | 37 +++++++++++++++++++++++++++++++++++++ tools/lib/bitmap.c | 44 ++++++++++++++++++++++++++++++++++++++++++++ tools/perf/Documentation/perf-record.txt | 3 +++ tools/perf/{config/Makefile => Makefile.config} | 0 tools/perf/Makefile.perf | 6 +++--- tools/perf/builtin-record.c | 1 + tools/perf/perf.h | 1 + tools/perf/tests/Build | 1 + tools/perf/tests/bitmap.c | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ tools/perf/tests/builtin-test.c | 4 ++++ tools/perf/tests/tests.h | 1 + tools/perf/util/evsel.c | 2 +- tools/perf/util/hist.c | 15 ++++++++++++--- tools/perf/util/hist.h | 4 ++++ 14 files changed, 165 insertions(+), 7 deletions(-) rename tools/perf/{config/Makefile => Makefile.config} (100%) create mode 100644 tools/perf/tests/bitmap.c