public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@infradead.org>
Cc: linux-kernel@vger.kernel.org, Andi Kleen <andi@firstfloor.org>,
	Ashay Rane <ashay.rane@tacc.utexas.edu>,
	Borislav Petkov <borislav.petkov@amd.com>,
	Corey Ashford <cjashfor@linux.vnet.ibm.com>,
	David Ahern <dsahern@gmail.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	Jiri Olsa <jolsa@redhat.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Michal Marek <mmarek@suse.cz>, Mike Galbraith <efault@gmx.de>,
	Namhyung Kim <namhyung@gmail.com>,
	Namhyung Kim <namhyung.kim@lge.com>,
	Paul Mackerras <paulus@samba.org>,
	Pekka Enberg <penberg@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Robert Richter <robert.richter@amd.com>,
	Sam Ravnborg <sam@ravnborg.org>,
	Stephane Eranian <eranian@google.com>,
	arnaldo.melo@gmail.com,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/13] perf/core fixes and improvements
Date: Fri, 13 Apr 2012 09:58:19 +0200	[thread overview]
Message-ID: <20120413075819.GB22132@gmail.com> (raw)
In-Reply-To: <1334178325-19148-1-git-send-email-acme@infradead.org>


* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:

> Hi Ingo,
> 
> 	This is on top of the previous pull request, please consider pulling.
> 
> - Arnaldo
> 
> The following changes since commit d3d1f61acf62204bb7b2b4509329247bffaedd7c:
> 
>   perf annotate browser: string search: /?n (2012-04-07 17:37:22 -0300)
> 
> 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 5a7ed29c7572d00a75e8c4529e30c5ac2ef82271:
> 
>   perf record: Use sw counter only if hw pmu is not detected (2012-04-11 17:39:19 -0300)
> 
> ----------------------------------------------------------------
> Fixes and improvements for perf/core:
> 
> . Overhaul the tools/ makefiles, gluing them to the top level Makefile, from
>   Borislav Petkov.
> 
> . Move the UI files from tools/perf/util/ui/ to tools/perf/ui/. Also move
>   the GTK+ browser to tools/perf/ui/gtk/, from Namhyung Kim.
> 
> . Only fallback to sw cycles counter on ENOENT for the hw cycles, from
>   Robert Richter
> 
> . Trivial fixes from Robert Richter
> 
> . Handle the autogenerated bison/flex files better, from Namhyung and Jiri Olsa.
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Borislav Petkov (5):
>       tools: Add Makefile.include
>       tools: Cleanup EXTRA_WARNINGS
>       tools: Add a toplevel Makefile
>       tools: Add a help target
>       tools: Connect to the kernel build system
> 
> Jiri Olsa (1):
>       perf tools: Fix parsers' rules to dependencies
> 
> Namhyung Kim (4):
>       perf tools: Ignore auto-generated bison/flex files
>       perf annotate: Fix a build error
>       perf tools: Move UI bits to tools/perf/ui directory
>       perf tools: Move GTK+ bits to tools/perf/ui/gtk directory
> 
> Robert Richter (3):
>       perf stat: Declare some references static
>       perf tools: Fix thread map that is type pid_t
>       perf record: Use sw counter only if hw pmu is not detected
> 
>  Makefile                                     |    7 ++
>  tools/Makefile                               |   77 ++++++++++++++++++
>  tools/perf/.gitignore                        |    2 +
>  tools/perf/Makefile                          |  110 ++++++++------------------
>  tools/perf/builtin-record.c                  |    2 +-
>  tools/perf/builtin-stat.c                    |   26 +++---
>  tools/perf/{util => }/ui/browser.c           |    0
>  tools/perf/{util => }/ui/browser.h           |    0
>  tools/perf/{util => }/ui/browsers/annotate.c |   10 +--
>  tools/perf/{util => }/ui/browsers/hists.c    |   12 +--
>  tools/perf/{util => }/ui/browsers/map.c      |    6 +-
>  tools/perf/{util => }/ui/browsers/map.h      |    0
>  tools/perf/{util => ui}/gtk/browser.c        |    0
>  tools/perf/{util => ui}/gtk/gtk.h            |    0
>  tools/perf/{util => }/ui/helpline.c          |    0
>  tools/perf/{util => }/ui/helpline.h          |    0
>  tools/perf/{util => }/ui/keysyms.h           |    0
>  tools/perf/{util => }/ui/libslang.h          |    0
>  tools/perf/{util => }/ui/progress.c          |    0
>  tools/perf/{util => }/ui/progress.h          |    0
>  tools/perf/{util => }/ui/setup.c             |    0
>  tools/perf/{util => }/ui/ui.h                |    0
>  tools/perf/{util => }/ui/util.c              |    0
>  tools/perf/{util => }/ui/util.h              |    0
>  tools/perf/util/annotate.c                   |    4 +-
>  tools/perf/util/debug.h                      |    2 +-
>  tools/perf/util/hist.h                       |    2 +-
>  tools/perf/util/thread_map.h                 |    2 +-
>  tools/scripts/Makefile.include               |   57 +++++++++++++
>  29 files changed, 207 insertions(+), 112 deletions(-)
>  create mode 100644 tools/Makefile
>  rename tools/perf/{util => }/ui/browser.c (100%)
>  rename tools/perf/{util => }/ui/browser.h (100%)
>  rename tools/perf/{util => }/ui/browsers/annotate.c (99%)
>  rename tools/perf/{util => }/ui/browsers/hists.c (99%)
>  rename tools/perf/{util => }/ui/browsers/map.c (97%)
>  rename tools/perf/{util => }/ui/browsers/map.h (100%)
>  rename tools/perf/{util => ui}/gtk/browser.c (100%)
>  rename tools/perf/{util => ui}/gtk/gtk.h (100%)
>  rename tools/perf/{util => }/ui/helpline.c (100%)
>  rename tools/perf/{util => }/ui/helpline.h (100%)
>  rename tools/perf/{util => }/ui/keysyms.h (100%)
>  rename tools/perf/{util => }/ui/libslang.h (100%)
>  rename tools/perf/{util => }/ui/progress.c (100%)
>  rename tools/perf/{util => }/ui/progress.h (100%)
>  rename tools/perf/{util => }/ui/setup.c (100%)
>  rename tools/perf/{util => }/ui/ui.h (100%)
>  rename tools/perf/{util => }/ui/util.c (100%)
>  rename tools/perf/{util => }/ui/util.h (100%)
>  create mode 100644 tools/scripts/Makefile.include

Pulled this and the previous bits, thanks Arnaldo!

	Ingo

  parent reply	other threads:[~2012-04-13  7:58 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-11 21:05 [GIT PULL 00/13] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 01/13] perf tools: Ignore auto-generated bison/flex files Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 02/13] tools: Add Makefile.include Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 03/13] tools: Cleanup EXTRA_WARNINGS Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 04/13] tools: Add a toplevel Makefile Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 05/13] tools: Add a help target Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 06/13] tools: Connect to the kernel build system Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 07/13] perf tools: Fix parsers' rules to dependencies Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 08/13] perf annotate: Fix a build error Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 09/13] perf tools: Move UI bits to tools/perf/ui directory Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 10/13] perf tools: Move GTK+ bits to tools/perf/ui/gtk directory Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 11/13] perf stat: Declare some references static Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 12/13] perf tools: Fix thread map that is type pid_t Arnaldo Carvalho de Melo
2012-04-11 21:05 ` [PATCH 13/13] perf record: Use sw counter only if hw pmu is not detected Arnaldo Carvalho de Melo
2012-04-13  7:58 ` Ingo Molnar [this message]
  -- strict thread matches above, loose matches on Subject: below --
2012-07-02 20:18 [GIT PULL 00/13] perf/core fixes and improvements Arnaldo Carvalho de Melo
2012-07-06  8:24 ` Ingo Molnar
2012-03-16 20:01 Arnaldo Carvalho de Melo

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=20120413075819.GB22132@gmail.com \
    --to=mingo@kernel.org \
    --cc=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=andi@firstfloor.org \
    --cc=arnaldo.melo@gmail.com \
    --cc=ashay.rane@tacc.utexas.edu \
    --cc=borislav.petkov@amd.com \
    --cc=cjashfor@linux.vnet.ibm.com \
    --cc=dsahern@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=mmarek@suse.cz \
    --cc=namhyung.kim@lge.com \
    --cc=namhyung@gmail.com \
    --cc=paulus@samba.org \
    --cc=penberg@kernel.org \
    --cc=peterz@infradead.org \
    --cc=robert.richter@amd.com \
    --cc=sam@ravnborg.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