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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20120805104054.GA10136@gmail.com>
Date:	Sun, 5 Aug 2012 12:40:54 +0200
From:	Ingo Molnar <mingo@...nel.org>
To:	Arnaldo Carvalho de Melo <acme@...radead.org>
Cc:	linux-kernel@...r.kernel.org, David Ahern <dsahern@...il.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Jiri Olsa <jolsa@...hat.com>,
	"Kirill A. Shutemov" <kirill@...temov.name>,
	Markus Trippelsdorf <markus@...ppelsdorf.de>,
	Mike Galbraith <efault@....de>,
	Namhyung Kim <namhyung@...il.com>,
	Namhyung Kim <namhyung@...nel.org>, Palmer Cox <p@...rcox.com>,
	Paul Mackerras <paulus@...ba.org>,
	Peter Zijlstra <a.p.zijlstra@...llo.nl>,
	Peter Zijlstra <peterz@...radead.org>,
	Robert Richter <robert.richter@....com>,
	Stephane Eranian <eranian@...gle.com>,
	Ulrich Drepper <drepper@...il.com>, arnaldo.melo@...il.com,
	Arnaldo Carvalho de Melo <acme@...hat.com>
Subject: Re: [GIT PULL 00/18] perf/core fixes and improvements


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

> Hi Ingo,
> 
> 	Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 194f8dcbe9629d8e9346cf96345a9c0bbf0e67ae:
> 
>   uprobes: __replace_page() needs munlock_vma_page() (2012-07-30 11:27:25 +0200)
> 
> 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 7f309ed6453926a81e2a97d274f67f1e48f0d74c:
> 
>   perf tools: Remove brace expansion from clean target (2012-08-03 10:46:32 -0300)
> 
> ----------------------------------------------------------------
> perf/core improvements and fixes
> 
> . Prep work for the DWARF CFI post unwinder, so that it doesn't
>   uses perf_session in lots of places, just evlist/evsel is enough.
> 
> . Make clean brace expansion fix for some shells, from Palmer Cox
> 
> . Warn user just once per guest kernel when not finding kernel info,
>   from David Ahern
> 
> . perf test fix from Jiri Olsa
> 
> . Fix error handling on event creation in perf top, from David Ahern
> 
> . Fix check on perf_target__strnerror, from Namhyung Kim
> 
> . Save the whole cmdline, from David Ahern
> 
> Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
> 
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (7):
>       perf evsel: Precalculate the sample size
>       perf session: Use perf_evlist__sample_type more extensively
>       perf session: Use perf_evlist__sample_id_all more extensively
>       perf session: Use perf_evlist__id_hdr_size more extensively
>       perf evlist: Introduce perf_evlist__parse_sample
>       perf evsel: Adopt parse_sample method from perf_event
>       perf session: Remove no longer used synthesize_sample method
> 
> David Ahern (7):
>       perf top: Error handling for counter creation should parallel perf-record
>       perf tool: Save cmdline from user in file header vs what is passed to record
>       perf kvm: Use strtol for walking guestmount directory
>       perf tools: Introducing rblist
>       perf tools: Change strlist to use the new rblist
>       perf tools: Introduce intlist
>       perf kvm top: Limit guest kernel info message to once
> 
> Jiri Olsa (2):
>       perf test: Fix parse events automated tests
>       perf symbols: Fix array sizes for binary types arrays
> 
> Namhyung Kim (1):
>       perf target: Fix check on buffer size
> 
> Palmer Cox (1):
>       perf tools: Remove brace expansion from clean target
> 
>  tools/perf/Makefile                 |    7 +-
>  tools/perf/builtin-record.c         |    4 +-
>  tools/perf/builtin-report.c         |    5 +-
>  tools/perf/builtin-test.c           |   19 ++---
>  tools/perf/builtin-top.c            |   23 +++++--
>  tools/perf/util/event.h             |    3 -
>  tools/perf/util/evlist.c            |    7 ++
>  tools/perf/util/evlist.h            |    3 +
>  tools/perf/util/evsel.c             |   15 ++--
>  tools/perf/util/evsel.h             |   10 +--
>  tools/perf/util/header.c            |    9 +++
>  tools/perf/util/intlist.c           |  101 +++++++++++++++++++++++++++
>  tools/perf/util/intlist.h           |   75 ++++++++++++++++++++
>  tools/perf/util/parse-events-test.c |   12 ++--
>  tools/perf/util/parse-options.c     |    3 +
>  tools/perf/util/python.c            |    6 +-
>  tools/perf/util/rblist.c            |  107 ++++++++++++++++++++++++++++
>  tools/perf/util/rblist.h            |   47 +++++++++++++
>  tools/perf/util/session.c           |   48 +++++++------
>  tools/perf/util/session.h           |   24 +------
>  tools/perf/util/strlist.c           |  130 ++++++++++++++---------------------
>  tools/perf/util/strlist.h           |   11 +--
>  tools/perf/util/symbol.c            |   14 +++-
>  tools/perf/util/target.c            |    2 +-
>  24 files changed, 498 insertions(+), 187 deletions(-)
>  create mode 100644 tools/perf/util/intlist.c
>  create mode 100644 tools/perf/util/intlist.h
>  create mode 100644 tools/perf/util/rblist.c
>  create mode 100644 tools/perf/util/rblist.h

Pulled, thanks 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