From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935047Ab3BNVph (ORCPT ); Thu, 14 Feb 2013 16:45:37 -0500 Received: from merlin.infradead.org ([205.233.59.134]:57525 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935016Ab3BNVow (ORCPT ); Thu, 14 Feb 2013 16:44:52 -0500 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Andi Kleen , Borislav Petkov , Daniel Baluta , Dirk Behme , Frederic Weisbecker , Jiri Olsa , Li Zefan , Namhyung Kim , Paul Mackerras , Pekka Enberg , Peter Zijlstra , Vinson Lee , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/10] perf/core improvements and fixes Date: Thu, 14 Feb 2013 18:44:13 -0300 Message-Id: <1360878263-12694-1-git-send-email-acme@infradead.org> X-Mailer: git-send-email 1.8.1.1.361.gec3ae6e Content-Type: text/plain; charset="utf-8" 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, - Arnaldo The following changes since commit a3d4fd7a2d81604fedfa270d29c824b8d3380c2e: Merge branch 'uprobes/core' of git://git.kernel.org/pub/scm/linux/kernel/git/oleg/misc into perf/core (2013-02-11 10:41:53 +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 02e176af92f3e2e9ec3a48792036566af2dcd534: perf/hwbp: Fix cleanup in case of kzalloc failure (2013-02-14 17:06:39 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: . Fix cleanup in case of kzalloc failure, from Daniel Baluta. . Limit unwind support to x86 archs, fix from Jiri Olsa. . Initial GTK+ annotate browser, from Namhyung Kim. . Fix build with bison 2.3 and older, from Vinson Lee. Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Daniel Baluta (1): perf/hwbp: Fix cleanup in case of kzalloc failure Jiri Olsa (1): perf tools: Limit unwind support to x86 archs Namhyung Kim (7): perf buildid-cache: Add --update option perf annotate: Fix warning message on a missing vmlinux perf ui/gtk: Implement basic GTK2 annotation browser perf gtk/annotate: Support multiple event annotation perf gtk/annotate: Show source lines with gray color perf gtk/annotate: Fail early if it can't annotate perf annotate: Make it to be able to skip unannotatable symbols Vinson Lee (1): perf tools: Fix build with bison 2.3 and older. kernel/events/hw_breakpoint.c | 2 +- tools/perf/Documentation/perf-annotate.txt | 7 +- tools/perf/Documentation/perf-buildid-cache.txt | 4 + tools/perf/Makefile | 10 +- tools/perf/builtin-annotate.c | 27 ++- tools/perf/builtin-buildid-cache.c | 50 +++++- tools/perf/ui/gtk/annotate.c | 229 ++++++++++++++++++++++++ tools/perf/ui/gtk/gtk.h | 1 + tools/perf/ui/setup.c | 2 +- tools/perf/util/annotate.c | 2 +- tools/perf/util/annotate.h | 24 +++ tools/perf/util/parse-events.y | 1 - tools/perf/util/pmu.y | 1 - 13 files changed, 349 insertions(+), 11 deletions(-) create mode 100644 tools/perf/ui/gtk/annotate.c