From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752792AbbH1SHg (ORCPT ); Fri, 28 Aug 2015 14:07:36 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:33485 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752651AbbH1SHU (ORCPT ); Fri, 28 Aug 2015 14:07:20 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo@infradead.org, Carvalho@infradead.org, de@infradead.org, "Melo , Andi Kleen , Andy Lutomirski , Borislav Petkov , David Ahern , Frederic Weisbecker , Hemant Kumar , Jiri Olsa , Kan Liang , Mark Drayton , Mark Rutland , Masami Hiramatsu , Matt Fleming , Mel Gorman , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Raphael Beamonte , Stephane Eranian , Steven Rostedt , Tony Jones , Vlastimil Babka , Yannick Brosseau , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/10] perf/core improvements and fixes Date: Fri, 28 Aug 2015 15:06:26 -0300 Message-Id: <1440785196-27476-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.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 From: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (2): perf trace: Add header with copyright and background info perf evsel: Add a backpointer to the evlist a evsel is in Jiri Olsa (2): perf tools: Add tracing_path and remove unneeded functions perf tools: Do not change lib/api/fs/debugfs directly Kan Liang (2): perf tools: Rename perf_session_env to perf_env perf evlist: Add backpointer for perf_env to evlist Mark Drayton (1): perf script: Add --[no-]-demangle/--[no-]-demangle-kernel Masami Hiramatsu (1): perf buildid: Introduce sysfs/filename__sprintf_build_id Steven Rostedt (1): tools lib traceeveent: Allow for negative numbers in print format Tony Jones (1): perf scripts python: Add new compaction-times script tools/lib/traceevent/event-parse.c | 1 + tools/perf/Documentation/perf-script.txt | 7 + tools/perf/arch/common.c | 4 +- tools/perf/arch/common.h | 2 +- tools/perf/builtin-buildid-cache.c | 14 +- tools/perf/builtin-buildid-list.c | 24 +- tools/perf/builtin-script.c | 5 + tools/perf/builtin-trace.c | 19 ++ tools/perf/perf.c | 2 +- .../scripts/python/bin/compaction-times-record | 2 + .../scripts/python/bin/compaction-times-report | 4 + tools/perf/scripts/python/compaction-times.py | 311 +++++++++++++++++++++ tools/perf/ui/browser.h | 4 +- tools/perf/ui/browsers/header.c | 2 +- tools/perf/ui/browsers/hists.c | 12 +- tools/perf/util/build-id.c | 32 +++ tools/perf/util/build-id.h | 3 + tools/perf/util/evlist.c | 2 + tools/perf/util/evlist.h | 1 + tools/perf/util/evsel.c | 2 + tools/perf/util/evsel.h | 4 + tools/perf/util/header.c | 1 + tools/perf/util/header.h | 4 +- tools/perf/util/hist.h | 4 +- tools/perf/util/session.c | 2 +- tools/perf/util/symbol.c | 4 +- tools/perf/util/symbol.h | 4 +- tools/perf/util/util.c | 57 +--- tools/perf/util/util.h | 2 +- 29 files changed, 433 insertions(+), 102 deletions(-) create mode 100644 tools/perf/scripts/python/bin/compaction-times-record create mode 100644 tools/perf/scripts/python/bin/compaction-times-report create mode 100644 tools/perf/scripts/python/compaction-times.py