mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Namhyung Kim <namhyung@kernel.org>
To: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Paul Mackerras <paulus@samba.org>, Ingo Molnar <mingo@kernel.org>,
	LKML <linux-kernel@vger.kernel.org>, Jiri Olsa <jolsa@redhat.com>,
	Stephane Eranian <eranian@google.com>,
	Namhyung Kim <namhyung.kim@lge.com>
Subject: [PATCH 00/12] perf report: Add support for event group view (v4)
Date: Tue, 23 Oct 2012 16:43:54 +0900	[thread overview]
Message-ID: <1350978246-3686-1-git-send-email-namhyung@kernel.org> (raw)

Hi,

This is my v4 of event group view support patchset.
For basic idea and usage example, please see my original post [1].

This is mostly for rebasing on acme/perf/core, and report.group config
option is added for those who wants to enable it by default.

You can get this series via my tree at:

git://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git  perf/group-v4

Any comments are welcome, thanks,
Namhyung


v3 -> v4:
 * patch 1-9 in previous post are merged.
 * add Jiri's Acked-by
 * add report.group config option

v2 -> v3:
 * drop patch 1 since it's merged into acme/perf/core
 * cherry-pick Jiri's hpp changes
 * add missing bswap_32 on reading nr_groups (Jiri)
 * remove perf_evlist__recalc_nr_groups() in favor of list_is_last (Jiri)

v1 -> v2:
 * save group relation to header (Jiri)

[1] https://lkml.org/lkml/2012/7/24/81

Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Stephane Eranian <eranian@google.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>

Namhyung Kim (12):
  perf tools: Keep group information
  perf header: Add HEADER_GROUP_DESC feature
  perf hists: Collapse group hist_entries to a leader
  perf hists: Maintain total periods of group members in the leader
  perf report: Make another loop for output resorting
  perf ui/hist: Add support for event group view
  perf ui/browser: Add support for event group view
  perf ui/gtk: Add support for event group view
  perf report: Bypass non-leader events when event group is enabled
  perf report: Show group description when event group is enabled
  perf report: Add --group option
  perf report: Add report.group config option

 tools/perf/builtin-record.c    |   3 +
 tools/perf/builtin-report.c    |  42 ++++++++++++
 tools/perf/ui/browsers/hists.c |  99 +++++++++++++++++++++++++--
 tools/perf/ui/gtk/browser.c    |  72 +++++++++++++++----
 tools/perf/ui/hist.c           |  71 +++++++++++++++++--
 tools/perf/ui/stdio/hist.c     |   2 +
 tools/perf/util/evlist.c       |  10 ++-
 tools/perf/util/evlist.h       |   1 +
 tools/perf/util/evsel.c        |  25 +++++++
 tools/perf/util/evsel.h        |  23 +++++++
 tools/perf/util/header.c       | 152 +++++++++++++++++++++++++++++++++++++++++
 tools/perf/util/header.h       |   2 +
 tools/perf/util/hist.c         | 133 +++++++++++++++++++++++++++++++++---
 tools/perf/util/hist.h         |   1 +
 tools/perf/util/parse-events.c |   1 +
 tools/perf/util/parse-events.h |   1 +
 tools/perf/util/parse-events.y |  10 +++
 tools/perf/util/sort.h         |   1 +
 tools/perf/util/symbol.c       |   4 ++
 tools/perf/util/symbol.h       |   3 +-
 20 files changed, 618 insertions(+), 38 deletions(-)

-- 
1.7.11.7


             reply	other threads:[~2012-10-23  7:44 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-23  7:43 Namhyung Kim [this message]
2012-10-23  7:43 ` [PATCH 01/12] perf tools: Keep group information Namhyung Kim
2012-10-23  7:43 ` [PATCH 02/12] perf header: Add HEADER_GROUP_DESC feature Namhyung Kim
2012-10-23  7:43 ` [PATCH 03/12] perf hists: Collapse group hist_entries to a leader Namhyung Kim
2012-10-23  7:43 ` [PATCH 04/12] perf hists: Maintain total periods of group members in the leader Namhyung Kim
2012-10-23  7:43 ` [PATCH 05/12] perf report: Make another loop for output resorting Namhyung Kim
2012-10-23  7:44 ` [PATCH 06/12] perf ui/hist: Add support for event group view Namhyung Kim
2012-10-23  7:44 ` [PATCH 07/12] perf ui/browser: " Namhyung Kim
2012-10-23  7:44 ` [PATCH 08/12] perf ui/gtk: " Namhyung Kim
2012-10-23  7:44 ` [PATCH 09/12] perf report: Bypass non-leader events when event group is enabled Namhyung Kim
2012-10-23  7:44 ` [PATCH 10/12] perf report: Show group description " Namhyung Kim
2012-10-23  7:44 ` [PATCH 11/12] perf report: Add --group option Namhyung Kim
2012-10-23  7:44 ` [PATCH 12/12] perf report: Add report.group config option Namhyung Kim

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=1350978246-3686-1-git-send-email-namhyung@kernel.org \
    --to=namhyung@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=acme@ghostprotocols.net \
    --cc=eranian@google.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=namhyung.kim@lge.com \
    --cc=paulus@samba.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

Powered by JetHome