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,
	Arnaldo Carvalho de Melo <acme@ghostprotocols.net>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Ananth N Mavinakayanahalli <ananth@in.ibm.com>,
	Borislav Petkov <bp@suse.de>, David Ahern <dsahern@gmail.com>,
	Frederic Weisbecker <fweisbec@gmail.com>,
	"H. Peter Anvin" <hpa@zytor.com>, Jiri Olsa <jolsa@redhat.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
	Mike Galbraith <efault@gmx.de>, Namhyung Kim <namhyung@gmail.com>,
	Paul Mackerras <paulus@samba.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Prashanth Nageshappa <prashanth@linux.vnet.ibm.com>,
	Srikar Dronamraju <srikar@linux.vnet.ibm.com>,
	Stephane Eranian <eranian@google.com>,
	Steven Rostedt <rostedt@goodmis.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Vinson Lee <vlee@freedesktop.org>, Vinson Lee <vlee@twitter.com>,
	yrl.pp-manager.tt@hitachi.com,
	Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 0/9] perf/urgent fixes
Date: Fri, 20 Sep 2013 07:15:28 +0200	[thread overview]
Message-ID: <20130920051528.GA5930@gmail.com> (raw)
In-Reply-To: <1379616032-13061-1-git-send-email-acme@infradead.org>


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

> From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
> 
> Hi Ingo,
> 
> 	Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit a8e0108cac181a7b141dacaa99ea52efaf9b5f07:
> 
>   perf: Fix UAPI export of PERF_EVENT_IOC_ID (2013-09-18 11:29:07 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-urgent-for-mingo
> 
> for you to fetch changes up to ce7eebe5c3deef8e19c177c24ee75843256e69ca:
> 
>   tools lib lk: Uninclude linux/magic.h in debugfs.c (2013-09-19 15:08:53 -0300)
> 
> ----------------------------------------------------------------
> perf/urgent fixes:
> 
> . Check for SIGINT in more loops, allowing tools such as 'perf report' to
>   react faster to control+C.
> 
> . Fix objdump line parsing offset validation in the annotate code,
>   from Adrian Hunter.
> 
> . Fix buildid cache handling of kallsyms with kcore, from Adrian Hunter.
> 
> . Fix compile with libelf without get_phdrnum, from Adrian Hunter.
> 
> . Sharpen the libaudit dependencies test, refusing to build with older
>   libraries that doesn't have all the functions used by 'perf trace", fix
>   from Ingo Molnar.
> 
> . Fill in new definitions for madvise()/mmap() flags to fix the build in
>   older systems, from Ingo Molnar.
> 
> . Fix old GCC build error in older systems in the kallsyms parsing code in
>   trace-event-parse.c, from Ingo Molnar.
> 
> . Ignore DWARF declaration tags, allowing, for instance, that the
> 
>     $ perf probe -L getname
> 
>   command succeeds in showing the source code for the 'getname' kernel
>   function, telling in which lines probes can be inserted, fix from
>   Masami Hiramatsu.
> 
> . Fix linux/magic.h related build breakage in some systems, fix from
>   Vinson Lee.
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
> 
> ----------------------------------------------------------------
> Adrian Hunter (3):
>       perf annotate: Fix objdump line parsing offset validation
>       perf tools: Fix buildid cache handling of kallsyms with kcore
>       perf tools: Fix compile with libelf without get_phdrnum
> 
> Arnaldo Carvalho de Melo (1):
>       perf session: Check for SIGINT in more loops
> 
> Ingo Molnar (3):
>       perf tools: Sharpen the libaudit dependencies test
>       perf tools: Fill in new definitions for madvise()/mmap() flags
>       perf tools: Fix old GCC build error in trace-event-parse.c:parse_proc_kallsyms()
> 
> Masami Hiramatsu (1):
>       perf probe: Fix finder to find lines of given function
> 
> Vinson Lee (1):
>       tools lib lk: Uninclude linux/magic.h in debugfs.c
> 
>  tools/lib/lk/debugfs.c              |  1 -
>  tools/perf/builtin-inject.c         |  2 --
>  tools/perf/builtin-report.c         |  5 +++--
>  tools/perf/builtin-script.c         |  2 --
>  tools/perf/builtin-trace.c          | 17 +++++++++++++++
>  tools/perf/config/Makefile          |  3 +++
>  tools/perf/config/feature-tests.mak | 10 +++++++++
>  tools/perf/util/annotate.c          |  2 +-
>  tools/perf/util/dwarf-aux.c         | 19 +++++++++++++++++
>  tools/perf/util/dwarf-aux.h         |  3 +++
>  tools/perf/util/header.c            | 41 +++++++++++++++++++++++++------------
>  tools/perf/util/hist.c              |  2 ++
>  tools/perf/util/probe-finder.c      | 12 +++++------
>  tools/perf/util/session.c           |  9 ++++++--
>  tools/perf/util/session.h           |  4 ++++
>  tools/perf/util/symbol-elf.c        | 16 +++++++++++++++
>  tools/perf/util/trace-event-parse.c |  2 +-
>  17 files changed, 119 insertions(+), 31 deletions(-)

Pulled, thanks a lot Arnaldo!

	Ingo

  parent reply	other threads:[~2013-09-20  5:15 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-19 18:40 [GIT PULL 0/9] perf/urgent fixes Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 1/9] perf tools: Sharpen the libaudit dependencies test Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 2/9] perf tools: Fill in new definitions for madvise()/mmap() flags Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 3/9] perf annotate: Fix objdump line parsing offset validation Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 4/9] perf tools: Fix buildid cache handling of kallsyms with kcore Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 5/9] perf tools: Fix compile with libelf without get_phdrnum Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 6/9] perf session: Check for SIGINT in more loops Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 7/9] perf probe: Fix finder to find lines of given function Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 8/9] perf tools: Fix old GCC build error in trace-event-parse.c:parse_proc_kallsyms() Arnaldo Carvalho de Melo
2013-09-19 18:40 ` [PATCH 9/9] tools lib lk: Uninclude linux/magic.h in debugfs.c Arnaldo Carvalho de Melo
2013-09-20  5:15 ` Ingo Molnar [this message]
  -- strict thread matches above, loose matches on Subject: below --
2019-12-16 20:47 [GIT PULL 0/9] perf/urgent fixes Arnaldo Carvalho de Melo
2019-12-17 11:28 ` 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
2017-09-12 19:24 Arnaldo Carvalho de Melo
2017-09-13  7:26 ` Ingo Molnar
2015-01-21 15:01 Arnaldo Carvalho de Melo
2015-01-28 14:42 ` Ingo Molnar
2012-03-30 16:09 Arnaldo Carvalho de Melo
2012-03-31  7:31 ` 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=20130920051528.GA5930@gmail.com \
    --to=mingo@kernel.org \
    --cc=acme@ghostprotocols.net \
    --cc=acme@infradead.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=ananth@in.ibm.com \
    --cc=bp@suse.de \
    --cc=dsahern@gmail.com \
    --cc=efault@gmx.de \
    --cc=eranian@google.com \
    --cc=fweisbec@gmail.com \
    --cc=hpa@zytor.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=masami.hiramatsu.pt@hitachi.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=tglx@linutronix.de \
    --cc=vlee@freedesktop.org \
    --cc=vlee@twitter.com \
    --cc=yrl.pp-manager.tt@hitachi.com \
    /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