All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@infradead.org>
To: Ingo Molnar <mingo@elte.hu>
Cc: linux-kernel@vger.kernel.org,
	Arnaldo Carvalho de Melo <acme@infradead.org>,
	Jan Beulich <jbeulich@suse.com>, Jiri Olsa <jolsa@redhat.com>,
	Namhyung Kim <namhyung@gmail.com>,
	Namhyung Kim <namhyung.kim@lge.com>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	arnaldo.melo@gmail.com,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: [GIT PULL 00/13] perf/core fixes and improvements
Date: Fri, 16 Mar 2012 17:01:57 -0300	[thread overview]
Message-ID: <1331928130-16243-1-git-send-email-acme@infradead.org> (raw)

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit bea95c152dee1791dd02cbc708afbb115bb00f9a:

  Merge branch 'perf/hw-branch-sampling' into perf/core (2012-03-12 20:47:05 +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 6db6127c4dad634ab98709b81e2f2770890b0d53:

  perf report: Treat an argument as a symbol filter (2012-03-16 16:44:36 -0300)

----------------------------------------------------------------
The event parsing patches from Jiri Olsa plus the filter by symbol and group
fixes by Namhyung Kim.

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

----------------------------------------------------------------
Jan Beulich (1):
      perf tools: Adjust make rules

Jiri Olsa (5):
      perf: Adding sysfs group format attribute for pmu device
      perf tools: Add parser generator for events parsing
      perf tools: Add config options support for event parsing
      perf tools: Add perf pmu object to access pmu format definition
      perf tools: Add support to specify pmu style event

Namhyung Kim (7):
      perf stat: Fix event grouping on forked task
      perf tools: Do not disable members of group event
      perf hists: Add hists__filter_by_symbol
      perf ui browser: Introduce ui_browser__input_window
      perf ui browser: Add 's' key to filter by symbol name
      perf report: Add --symbol-filter option
      perf report: Treat an argument as a symbol filter

 .../testing/sysfs-bus-event_source-devices-format  |   14 +
 arch/x86/kernel/cpu/perf_event.c                   |    7 +
 arch/x86/kernel/cpu/perf_event.h                   |    1 +
 arch/x86/kernel/cpu/perf_event_amd.c               |   18 +
 arch/x86/kernel/cpu/perf_event_intel.c             |   36 +
 arch/x86/kernel/cpu/perf_event_p6.c                |   19 +
 include/linux/perf_event.h                         |   14 +
 tools/perf/Makefile                                |   35 +-
 tools/perf/builtin-report.c                        |   21 +-
 tools/perf/builtin-stat.c                          |    2 +-
 tools/perf/builtin-test.c                          |   58 +-
 tools/perf/util/evlist.c                           |    6 +-
 tools/perf/util/evsel.c                            |    6 +-
 tools/perf/util/evsel.h                            |    3 +-
 tools/perf/util/hist.c                             |   35 +
 tools/perf/util/hist.h                             |    2 +
 tools/perf/util/parse-events-bison.c               | 1852 ++++++++++++++++
 tools/perf/util/parse-events-bison.h               |   82 +
 tools/perf/util/parse-events-flex.c                | 2272 ++++++++++++++++++++
 tools/perf/util/parse-events-flex.h                |  316 +++
 tools/perf/util/parse-events.c                     |  590 +++--
 tools/perf/util/parse-events.h                     |   46 +
 tools/perf/util/parse-events.l                     |  126 ++
 tools/perf/util/parse-events.y                     |  217 ++
 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/pmu.c                              |  469 ++++
 tools/perf/util/pmu.h                              |   41 +
 tools/perf/util/pmu.l                              |   43 +
 tools/perf/util/pmu.y                              |   93 +
 tools/perf/util/ui/browser.h                       |    2 +
 tools/perf/util/ui/browsers/hists.c                |   14 +-
 tools/perf/util/ui/keysyms.h                       |    2 +
 tools/perf/util/ui/util.c                          |   78 +
 36 files changed, 10048 insertions(+), 345 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-bus-event_source-devices-format
 create mode 100644 tools/perf/util/parse-events-bison.c
 create mode 100644 tools/perf/util/parse-events-bison.h
 create mode 100644 tools/perf/util/parse-events-flex.c
 create mode 100644 tools/perf/util/parse-events-flex.h
 create mode 100644 tools/perf/util/parse-events.l
 create mode 100644 tools/perf/util/parse-events.y
 create mode 100644 tools/perf/util/pmu-bison.c
 create mode 100644 tools/perf/util/pmu-bison.h
 create mode 100644 tools/perf/util/pmu-flex.c
 create mode 100644 tools/perf/util/pmu-flex.h
 create mode 100644 tools/perf/util/pmu.c
 create mode 100644 tools/perf/util/pmu.h
 create mode 100644 tools/perf/util/pmu.l
 create mode 100644 tools/perf/util/pmu.y

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

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-16 20:01 Arnaldo Carvalho de Melo [this message]
2012-03-16 20:01 ` [PATCH 01/13] perf tools: Adjust make rules Arnaldo Carvalho de Melo
2012-03-16 20:01 ` [PATCH 02/13] perf: Adding sysfs group format attribute for pmu device Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 03/13] perf tools: Add parser generator for events parsing Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 04/13] perf tools: Add config options support for event parsing Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 05/13] perf tools: Add perf pmu object to access pmu format definition Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 06/13] perf tools: Add support to specify pmu style event Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 07/13] perf stat: Fix event grouping on forked task Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 08/13] perf tools: Do not disable members of group event Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 09/13] perf hists: Add hists__filter_by_symbol Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 10/13] perf ui browser: Introduce ui_browser__input_window Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 11/13] perf ui browser: Add 's' key to filter by symbol name Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 12/13] perf report: Add --symbol-filter option Arnaldo Carvalho de Melo
2012-03-16 20:02 ` [PATCH 13/13] perf report: Treat an argument as a symbol filter Arnaldo Carvalho de Melo
2012-04-11 21:05 [GIT PULL 00/13] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-04-13  7:58 ` Ingo Molnar
2012-07-02 20:18 Arnaldo Carvalho de Melo
2012-07-06  8:24 ` 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=1331928130-16243-1-git-send-email-acme@infradead.org \
    --to=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=arnaldo.melo@gmail.com \
    --cc=jbeulich@suse.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@elte.hu \
    --cc=namhyung.kim@lge.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.org \
    --cc=peterz@infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.