Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753537Ab2HCOBt (ORCPT ); Fri, 3 Aug 2012 10:01:49 -0400 Received: from casper.infradead.org ([85.118.1.10]:45801 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753382Ab2HCOB3 (ORCPT ); Fri, 3 Aug 2012 10:01:29 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , David Ahern , Frederic Weisbecker , Jiri Olsa , "Kirill A. Shutemov" , Markus Trippelsdorf , Mike Galbraith , Namhyung Kim , Namhyung Kim , Palmer Cox , Paul Mackerras , Peter Zijlstra , Peter Zijlstra , Robert Richter , Stephane Eranian , Ulrich Drepper , arnaldo.melo@gmail.com, Arnaldo Carvalho de Melo Subject: [GIT PULL 00/18] perf/core fixes and improvements Date: Fri, 3 Aug 2012 11:00:52 -0300 Message-Id: <1344002470-5965-1-git-send-email-acme@infradead.org> X-Mailer: git-send-email 1.7.9.2.358.g22243 Content-Type: text/plain; charset="UTF-8" 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 Content-Length: 4115 Lines: 102 Hi Ingo, Please consider pulling, - Arnaldo The following changes since commit 194f8dcbe9629d8e9346cf96345a9c0bbf0e67ae: uprobes: __replace_page() needs munlock_vma_page() (2012-07-30 11:27:25 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo for you to fetch changes up to 7f309ed6453926a81e2a97d274f67f1e48f0d74c: perf tools: Remove brace expansion from clean target (2012-08-03 10:46:32 -0300) ---------------------------------------------------------------- perf/core improvements and fixes . Prep work for the DWARF CFI post unwinder, so that it doesn't uses perf_session in lots of places, just evlist/evsel is enough. . Make clean brace expansion fix for some shells, from Palmer Cox . Warn user just once per guest kernel when not finding kernel info, from David Ahern . perf test fix from Jiri Olsa . Fix error handling on event creation in perf top, from David Ahern . Fix check on perf_target__strnerror, from Namhyung Kim . Save the whole cmdline, from David Ahern Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Arnaldo Carvalho de Melo (7): perf evsel: Precalculate the sample size perf session: Use perf_evlist__sample_type more extensively perf session: Use perf_evlist__sample_id_all more extensively perf session: Use perf_evlist__id_hdr_size more extensively perf evlist: Introduce perf_evlist__parse_sample perf evsel: Adopt parse_sample method from perf_event perf session: Remove no longer used synthesize_sample method David Ahern (7): perf top: Error handling for counter creation should parallel perf-record perf tool: Save cmdline from user in file header vs what is passed to record perf kvm: Use strtol for walking guestmount directory perf tools: Introducing rblist perf tools: Change strlist to use the new rblist perf tools: Introduce intlist perf kvm top: Limit guest kernel info message to once Jiri Olsa (2): perf test: Fix parse events automated tests perf symbols: Fix array sizes for binary types arrays Namhyung Kim (1): perf target: Fix check on buffer size Palmer Cox (1): perf tools: Remove brace expansion from clean target tools/perf/Makefile | 7 +- tools/perf/builtin-record.c | 4 +- tools/perf/builtin-report.c | 5 +- tools/perf/builtin-test.c | 19 ++--- tools/perf/builtin-top.c | 23 +++++-- tools/perf/util/event.h | 3 - tools/perf/util/evlist.c | 7 ++ tools/perf/util/evlist.h | 3 + tools/perf/util/evsel.c | 15 ++-- tools/perf/util/evsel.h | 10 +-- tools/perf/util/header.c | 9 +++ tools/perf/util/intlist.c | 101 +++++++++++++++++++++++++++ tools/perf/util/intlist.h | 75 ++++++++++++++++++++ tools/perf/util/parse-events-test.c | 12 ++-- tools/perf/util/parse-options.c | 3 + tools/perf/util/python.c | 6 +- tools/perf/util/rblist.c | 107 ++++++++++++++++++++++++++++ tools/perf/util/rblist.h | 47 +++++++++++++ tools/perf/util/session.c | 48 +++++++------ tools/perf/util/session.h | 24 +------ tools/perf/util/strlist.c | 130 ++++++++++++++--------------------- tools/perf/util/strlist.h | 11 +-- tools/perf/util/symbol.c | 14 +++- tools/perf/util/target.c | 2 +- 24 files changed, 498 insertions(+), 187 deletions(-) create mode 100644 tools/perf/util/intlist.c create mode 100644 tools/perf/util/intlist.h create mode 100644 tools/perf/util/rblist.c create mode 100644 tools/perf/util/rblist.h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/