linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@infradead.org>
To: Ingo Molnar <mingo@kernel.org>
Cc: linux-kernel@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@infradead.org>,
	Ananth N Mavinakayanahalli <ananth@in.ibm.com>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	David Ahern <dsahern@gmail.com>,
	"David S. Miller" <davem@davemloft.net>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Jiri Olsa <jolsa@redhat.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Mike Galbraith <efault@gmx.de>, Namhyung Kim <namhyung@gmail.com>,
	Namhyung Kim <namhyung.kim@lge.com>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Prashanth Nageshappa <prashanth@linux.vnet.ibm.com>,
	Sorin Dumitru <dumitru.sorin87@gmail.com>,
	Srikar Dronamraju <srikar@linux.vnet.ibm.com>,
	Stephane Eranian <eranian@google.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: [GIT PULL 0/9] perf/urgent fixes
Date: Fri, 30 Mar 2012 13:09:15 -0300	[thread overview]
Message-ID: <1333123764-15662-1-git-send-email-acme@infradead.org> (raw)

Hi Ingo,

	Please consider pulling.

	But please test the bison/flex thing, it was a bit tricky to make it
work with/without O=, and also to make it work on at least RHEL6.2, Fedora 14
and Ubuntu 10.04 LTS.

	I know that bison barfs on Fedora 8, but left the fix for later.

- Arnaldo

The following changes since commit b01c3a0010aabadf745f3e7fdb9cab682e0a28a2:

  perf: Move mmap page data_head offset assertion out of header (2012-03-24 08:46:59 +0100)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux perf/urgent

for you to fetch changes up to 65f3e56e0c81d1f581c4bdef7646ae5a8d51f494:

  perf tools: Remove auto-generated bison/flex files (2012-03-30 12:43:17 -0300)

----------------------------------------------------------------
perf/urgent Fixes

. Assorted fixes from David Miller

. Fix display of first level of callchains, from Frederic Weisbecker

. Remove auto-generated bison/flex files, from Ingo Molnar and me

. Add missing ref-cycles event back to event parser, from Namhyung Kim

. Ignore DWARF decl tags to properly resolve function name do address,
  from Prashanth Nageshappa

. Fix bug in raw sample parsing bug introduced in the branch stack patches,
  from Stephane Eranian

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

----------------------------------------------------------------
Arnaldo Carvalho de Melo (1):
      perf annotate: Fix off by one symbol hist size allocation and hit accounting

David Miller (3):
      perf symbols: Do not include libgen.h
      perf symbols: Handle NULL dso in dso__name_len
      perf annotate: addr2line wants addresses in same format as objdump

Frederic Weisbecker (1):
      perf tools: Fix display of first level of callchains

Ingo Molnar (1):
      perf tools: Remove auto-generated bison/flex files

Namhyung Kim (1):
      perf tools: Add missing ref-cycles event back to event parser

Prashanth Nageshappa (1):
      perf probe: Finder fails to resolve function name to address

Stephane Eranian (1):
      perf tools: Fix bug in raw sample parsing

 tools/perf/Makefile                  |   47 +-
 tools/perf/util/annotate.c           |    8 +-
 tools/perf/util/evsel.c              |    2 +
 tools/perf/util/hist.c               |  157 ++-
 tools/perf/util/parse-events-bison.c | 1917 ----------------------------
 tools/perf/util/parse-events-bison.h |   81 --
 tools/perf/util/parse-events-flex.c  | 2272 ----------------------------------
 tools/perf/util/parse-events-flex.h  |  316 -----
 tools/perf/util/parse-events.l       |    1 +
 tools/perf/util/pmu-bison.c          | 1663 -------------------------
 tools/perf/util/pmu-bison.h          |   73 --
 tools/perf/util/pmu-flex.c           | 1821 ---------------------------
 tools/perf/util/pmu-flex.h           |  316 -----
 tools/perf/util/probe-finder.c       |    4 +-
 tools/perf/util/symbol.c             |    3 +-
 15 files changed, 135 insertions(+), 8546 deletions(-)
 delete mode 100644 tools/perf/util/parse-events-bison.c
 delete mode 100644 tools/perf/util/parse-events-bison.h
 delete mode 100644 tools/perf/util/parse-events-flex.c
 delete mode 100644 tools/perf/util/parse-events-flex.h
 delete mode 100644 tools/perf/util/pmu-bison.c
 delete mode 100644 tools/perf/util/pmu-bison.h
 delete mode 100644 tools/perf/util/pmu-flex.c
 delete mode 100644 tools/perf/util/pmu-flex.h

             reply	other threads:[~2012-03-30 16:10 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-30 16:09 Arnaldo Carvalho de Melo [this message]
2012-03-30 16:09 ` [PATCH 1/9] perf tools: Fix display of first level of callchains Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 2/9] perf tools: Fix bug in raw sample parsing Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 3/9] perf symbols: Do not include libgen.h Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 4/9] perf symbols: Handle NULL dso in dso__name_len Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 5/9] perf probe: Finder fails to resolve function name to address Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 6/9] perf annotate: addr2line wants addresses in same format as objdump Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 7/9] perf tools: Add missing ref-cycles event back to event parser Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 8/9] perf annotate: Fix off by one symbol hist size allocation and hit accounting Arnaldo Carvalho de Melo
2012-03-30 16:09 ` [PATCH 9/9] perf tools: Remove auto-generated bison/flex files Arnaldo Carvalho de Melo
2012-03-30 16:43   ` Namhyung Kim
2012-03-30 17:09     ` David Daney
2012-03-30 22:01     ` Arnaldo Carvalho de Melo
2012-03-31  7:31 ` [GIT PULL 0/9] perf/urgent fixes Ingo Molnar
2013-09-19 18:40 Arnaldo Carvalho de Melo
2013-09-20  5:15 ` Ingo Molnar
2015-01-21 15:01 Arnaldo Carvalho de Melo
2015-01-28 14:42 ` Ingo Molnar
2017-09-12 19:24 Arnaldo Carvalho de Melo
2017-09-13  7:26 ` Ingo Molnar
2018-03-06 17:23 Arnaldo Carvalho de Melo
2018-03-07  8:22 ` Ingo Molnar
2018-03-07 14:23   ` Arnaldo Carvalho de Melo
2019-12-16 20:47 Arnaldo Carvalho de Melo
2019-12-17 11:28 ` Ingo Molnar

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1333123764-15662-1-git-send-email-acme@infradead.org \
    --to=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=ananth@in.ibm.com \
    --cc=benh@kernel.crashing.org \
    --cc=davem@davemloft.net \
    --cc=dsahern@gmail.com \
    --cc=dumitru.sorin87@gmail.com \
    --cc=efault@gmx.de \
    --cc=eranian@google.com \
    --cc=fweisbec@gmail.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.com \
    --cc=mingo@kernel.org \
    --cc=namhyung.kim@lge.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.org \
    --cc=prashanth@linux.vnet.ibm.com \
    --cc=rostedt@goodmis.org \
    --cc=srikar@linux.vnet.ibm.com \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).