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>,
Dave Martin <dave.martin@linaro.org>,
Frederic Weisbecker <fweisbec@gmail.com>,
Mike Galbraith <efault@gmx.de>,
Peter Zijlstra <peterz@infradead.org>,
Stephane Eranian <eranian@google.com>
Subject: [GIT PULL 0/9] perf/core fixes and improvements
Date: Tue, 10 Aug 2010 17:15:30 -0300 [thread overview]
Message-ID: <1281471339-10878-1-git-send-email-acme@infradead.org> (raw)
Hi Ingo,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf/core
Regards,
- Arnaldo
Arnaldo Carvalho de Melo (8):
perf ui: Shorten ui_browser member names
perf ui: Move ui_helpline routines to separate file in util/ui/
perf ui: Move ui_progress routines to separate file in util/ui/
perf ui: Move annotate browser to util/ui/browsers/
perf ui: Move map browser to util/ui/browsers/
perf ui: Move hists browser to util/ui/browsers/
perf ui: Complete the breakdown of util/newt.c
perf annotate: Sort by hottest lines in the TUI
Dave Martin (1):
perf symbols: Ignore mapping symbols on ARM
tools/perf/Makefile | 25 +-
tools/perf/builtin-annotate.c | 2 +-
tools/perf/util/debug.c | 2 +-
tools/perf/util/debug.h | 9 +-
tools/perf/util/hist.c | 13 +-
tools/perf/util/hist.h | 3 +-
tools/perf/util/newt.c | 1487 --------------------------------
tools/perf/util/pstack.h | 2 +
tools/perf/util/symbol.c | 10 +
tools/perf/util/ui/browser.c | 57 +-
tools/perf/util/ui/browser.h | 7 +-
tools/perf/util/ui/browsers/annotate.c | 191 ++++
tools/perf/util/ui/browsers/hists.c | 946 ++++++++++++++++++++
tools/perf/util/ui/browsers/map.c | 163 ++++
tools/perf/util/ui/browsers/map.h | 6 +
tools/perf/util/ui/helpline.c | 69 ++
tools/perf/util/ui/helpline.h | 10 +
tools/perf/util/ui/libslang.h | 27 +
tools/perf/util/ui/progress.c | 60 ++
tools/perf/util/ui/progress.h | 11 +
tools/perf/util/ui/setup.c | 42 +
tools/perf/util/ui/util.c | 114 +++
tools/perf/util/ui/util.h | 10 +
23 files changed, 1729 insertions(+), 1537 deletions(-)
delete mode 100644 tools/perf/util/newt.c
create mode 100644 tools/perf/util/ui/browsers/annotate.c
create mode 100644 tools/perf/util/ui/browsers/hists.c
create mode 100644 tools/perf/util/ui/browsers/map.c
create mode 100644 tools/perf/util/ui/browsers/map.h
create mode 100644 tools/perf/util/ui/helpline.c
create mode 100644 tools/perf/util/ui/helpline.h
create mode 100644 tools/perf/util/ui/libslang.h
create mode 100644 tools/perf/util/ui/progress.c
create mode 100644 tools/perf/util/ui/progress.h
create mode 100644 tools/perf/util/ui/setup.c
create mode 100644 tools/perf/util/ui/util.c
create mode 100644 tools/perf/util/ui/util.h
next reply other threads:[~2010-08-10 20:16 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-08-10 20:15 Arnaldo Carvalho de Melo [this message]
2010-08-10 20:15 ` [PATCH 1/9] perf ui: Shorten ui_browser member names Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 2/9] perf ui: Move ui_helpline routines to separate file in util/ui/ Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 3/9] perf ui: Move ui_progress " Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 4/9] perf ui: Move annotate browser to util/ui/browsers/ Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 5/9] perf ui: Move map " Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 6/9] perf symbols: Ignore mapping symbols on ARM Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 7/9] perf ui: Move hists browser to util/ui/browsers/ Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 8/9] perf ui: Complete the breakdown of util/newt.c Arnaldo Carvalho de Melo
2010-08-10 20:15 ` [PATCH 9/9] perf annotate: Sort by hottest lines in the TUI Arnaldo Carvalho de Melo
-- strict thread matches above, loose matches on Subject: below --
2011-06-02 20:56 [GIT PULL 0/9] perf/core fixes and improvements Arnaldo Carvalho de Melo
2011-06-03 15:05 ` Ingo Molnar
2012-01-08 15:42 Arnaldo Carvalho de Melo
2012-01-08 16:02 ` Ingo Molnar
2012-01-31 1:24 Arnaldo Carvalho de Melo
2012-01-31 12:06 ` 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=1281471339-10878-1-git-send-email-acme@infradead.org \
--to=acme@infradead.org \
--cc=dave.martin@linaro.org \
--cc=efault@gmx.de \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--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 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).