From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753299Ab3LMPMd (ORCPT ); Fri, 13 Dec 2013 10:12:33 -0500 Received: from merlin.infradead.org ([205.233.59.134]:45305 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753257Ab3LMPM3 (ORCPT ); Fri, 13 Dec 2013 10:12:29 -0500 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 , Mike Galbraith , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Ramkumar Ramachandra , Stephane Eranian , Steven Rostedt , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/20] perf/core improvements and fixes Date: Fri, 13 Dec 2013 12:11:46 -0300 Message-Id: <1386947526-7118-1-git-send-email-acme@infradead.org> X-Mailer: git-send-email 1.8.1.4 X-SRS-Rewrite: SMTP reverse-path rewritten from by merlin.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 Hi Ingo, Please consider pulling, Regards, - Arnaldo The following changes since commit c7f2e3cd6c1f4932ccc4135d050eae3f7c7aef63: perf: Optimize ring-buffer write by depending on control dependencies (2013-12-11 15:53:22 +0100) 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 41e12e580a7b0c151199f927193548b84d3e874c: tools lib traceevent: Refactor pevent_filter_match() to get rid of die() (2013-12-13 10:30:22 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: Fixes: . Fix inverted error verification bug in thread__fork, from David Ahern. New features: . Shell completion for 'perf kvm', from Ramkumar Ramachandra. Refactorings: . Get rid of panic() like calls in libtraceevent, from Namyung Kim. . Start carving out symbol parsing routines from perf, just moving routines to topic files in tools/lib/symbol/, tools that want to use it need to integrate it directly, i.e. no tools/lib/symbol/Makefile is provided. . Assorted refactoring patches, moving code around and adding utility evlist methods that will be used in the IPT patchset, from Adrian Hunter. Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Adrian Hunter (5): perf tools: Add perf_event_paranoid() perf header: Allow header->data_offset to be predetermined perf evlist: Add can_select_event() method perf tools: Move mem_bswap32/64 to util.c perf evlist: Add perf_evlist__to_front() Arnaldo Carvalho de Melo (1): tools lib symbol: Start carving out symbol parsing routines from perf David Ahern (1): perf tools: Fix inverted error verification bug in thread__fork Namhyung Kim (12): tools lib traceevent: Get rid of malloc_or_die() in show_error() tools lib traceevent: Get rid of die in add_filter_type() tools lib traceevent: Get rid of malloc_or_die() allocate_arg() tools lib traceevent: Get rid of malloc_or_die() in read_token() tools lib traceevent: Get rid of malloc_or_die() in find_event() tools lib traceevent: Get rid of die() in add_right() tools lib traceevent: Make add_left() return pevent_errno tools lib traceevent: Get rid of die() in reparent_op_arg() tools lib traceevent: Refactor create_arg_item() tools lib traceevent: Refactor process_filter() tools lib traceevent: Make pevent_filter_add_filter_str() return pevent_errno tools lib traceevent: Refactor pevent_filter_match() to get rid of die() Ramkumar Ramachandra (1): perf completion: Complete 'perf kvm' tools/lib/symbol/kallsyms.c | 58 +++++ tools/lib/symbol/kallsyms.h | 24 ++ tools/lib/traceevent/event-parse.h | 43 ++- tools/lib/traceevent/parse-filter.c | 507 ++++++++++++++++++++++-------------- tools/perf/MANIFEST | 2 + tools/perf/Makefile.perf | 5 + tools/perf/perf-completion.sh | 4 + tools/perf/util/event.c | 1 + tools/perf/util/evlist.c | 20 +- tools/perf/util/evlist.h | 5 + tools/perf/util/header.c | 3 +- tools/perf/util/machine.c | 1 + tools/perf/util/record.c | 37 +++ tools/perf/util/session.c | 21 -- tools/perf/util/session.h | 2 - tools/perf/util/symbol-elf.c | 1 + tools/perf/util/symbol.c | 69 +---- tools/perf/util/symbol.h | 3 - tools/perf/util/thread.c | 2 +- tools/perf/util/util.c | 41 +++ tools/perf/util/util.h | 4 + 21 files changed, 550 insertions(+), 303 deletions(-) create mode 100644 tools/lib/symbol/kallsyms.c create mode 100644 tools/lib/symbol/kallsyms.h