lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Fri, 20 Sep 2013 07:15:28 +0200
From:	Ingo Molnar <mingo@...nel.org>
To:	Arnaldo Carvalho de Melo <acme@...radead.org>
Cc:	linux-kernel@...r.kernel.org,
	Arnaldo Carvalho de Melo <acme@...stprotocols.net>,
	Adrian Hunter <adrian.hunter@...el.com>,
	Ananth N Mavinakayanahalli <ananth@...ibm.com>,
	Borislav Petkov <bp@...e.de>, David Ahern <dsahern@...il.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	"H. Peter Anvin" <hpa@...or.com>, Jiri Olsa <jolsa@...hat.com>,
	Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>,
	Mike Galbraith <efault@....de>,
	Namhyung Kim <namhyung@...il.com>,
	Paul Mackerras <paulus@...ba.org>,
	Peter Zijlstra <peterz@...radead.org>,
	Prashanth Nageshappa <prashanth@...ux.vnet.ibm.com>,
	Srikar Dronamraju <srikar@...ux.vnet.ibm.com>,
	Stephane Eranian <eranian@...gle.com>,
	Steven Rostedt <rostedt@...dmis.org>,
	Thomas Gleixner <tglx@...utronix.de>,
	Vinson Lee <vlee@...edesktop.org>,
	Vinson Lee <vlee@...tter.com>, yrl.pp-manager.tt@...achi.com,
	Arnaldo Carvalho de Melo <acme@...hat.com>
Subject: Re: [GIT PULL 0/9] perf/urgent fixes


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

> From: Arnaldo Carvalho de Melo <acme@...stprotocols.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@...hat.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
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ