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-next>] [day] [month] [year] [list]
Message-Id: <1343238094-12481-1-git-send-email-acme@infradead.org>
Date:	Wed, 25 Jul 2012 14:41:15 -0300
From:	Arnaldo Carvalho de Melo <acme@...radead.org>
To:	Ingo Molnar <mingo@...nel.org>
Cc:	linux-kernel@...r.kernel.org,
	Arnaldo Carvalho de Melo <acme@...radead.org>,
	Arun Sharma <asharma@...com>,
	Benjamin Redelings <benjamin.redelings@...cent.org>,
	Cody Schafer <cody@...ux.vnet.ibm.com>,
	Corey Ashford <cjashfor@...ux.vnet.ibm.com>,
	Cyrill Gorcunov <gorcunov@...nvz.org>,
	David Ahern <dsahern@...il.com>,
	"Frank Ch. Eigler" <fche@...hat.com>,
	Frederic Weisbecker <fweisbec@...il.com>,
	Jiri Olsa <jolsa@...hat.com>, Jovi Zhang <bookjovi@...il.com>,
	"Kirill A. Shutemov" <kirill@...temov.name>,
	Masami Hiramatsu <masami.hiramatsu.pt@...achi.com>,
	Namhyung Kim <namhyung@...il.com>,
	Namhyung Kim <namhyung@...nel.org>,
	Paul Mackerras <paulus@...ba.org>,
	Peter Zijlstra <peterz@...radead.org>,
	Robert Richter <robert.richter@....com>,
	Stephane Eranian <eranian@...gle.com>,
	Sukadev Bhattiprolu <sukadev@...ux.vnet.ibm.com>,
	Tom Zanussi <tzanussi@...il.com>,
	Ulrich Drepper <drepper@...il.com>, arnaldo.melo@...il.com,
	Arnaldo Carvalho de Melo <acme@...hat.com>
Subject: [GIT PULL 00/19] perf/core fixes and improvements

Hi Ingo,

	Please consider pulling,

Best Regards,

- Arnaldo

The following changes since commit 6e0f17be0361444862637e8986c8c1a3b3f8dcf8:

  Merge branch 'tip/perf/core' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace into perf/core (2012-07-18 11:18:00 +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 8696329b7bcf32e69ad12d5975ad1497936d43ec:

  perf annotate: Prevent overflow in size calculation (2012-07-25 13:06:42 -0300)

----------------------------------------------------------------
perf/core fixes and improvements:

. libtraceevent build fixes from Namhyung Kim

. Prevent overflow when calculating annotation buckets size, from Cody Schafer

. Set breakpoint events sample period to 1, just like trace events, from Jovi Zhang

. Fix strerror_r usage, from Kirill Shutemov

. Fix duplicate function declaration problems with bison 2.6, from Kirill Shutemov

. Add DSO caching facility (and perf test entry) to speed up binary file
  reading, will be used by the DWARF unwind code, from Jiri Olsa

. Fix trace event storms by setting PERF_SAMPLE_PERIOD, from Frederic Weisbecker

. perf kvm fixes from David Ahern

Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>

----------------------------------------------------------------
Cody Schafer (1):
      perf annotate: Prevent overflow in size calculation

David Ahern (6):
      perf symbols: Add machine id to modules debug message
      perf kvm: Set name for VM process in guest machine
      perf kvm: Guest userspace samples should not be lumped with host uspace
      perf kvm: Fix bug resolving guest kernel syms
      perf kvm: Limit repetitive guestmount message to once per directory
      perf tools: Dump exclude_{guest,host}, precise_ip header info too

Frederic Weisbecker (3):
      perf hists: Return correct number of characters printed in callchain
      perf tools: Fix trace events storms due to weight demux
      perf hists: Print newline between hists callchains

Jiri Olsa (4):
      perf symbols: Factor DSO symtab types to generic binary types
      perf symbols: Add interface to read DSO image data
      perf symbols: Add dso data caching
      perf test: Add dso data caching tests

Jovi Zhang (1):
      perf tools: Make the breakpoint events sample period default to 1

Kirill A. Shutemov (2):
      perf tools: use XSI-complaint version of strerror_r() instead of GNU-specific
      perf tools: Fix build error with bison 2.6

Namhyung Kim (2):
      tools lib traceevent: Detect build environment changes
      tools lib traceevent: Ignore TRACEEVENT-CFLAGS file

 tools/lib/traceevent/.gitignore |    1 +
 tools/lib/traceevent/Makefile   |   14 +-
 tools/perf/Makefile             |    4 +
 tools/perf/builtin-test.c       |    4 +
 tools/perf/builtin-top.c        |    2 +-
 tools/perf/ui/browsers/hists.c  |    4 +-
 tools/perf/util/annotate.c      |   15 +-
 tools/perf/util/dso-test-data.c |  153 ++++++++++++++
 tools/perf/util/evlist.c        |    2 +-
 tools/perf/util/header.c        |    6 +
 tools/perf/util/hist.c          |    7 +-
 tools/perf/util/map.c           |   41 +++-
 tools/perf/util/map.h           |    1 +
 tools/perf/util/parse-events.c  |    2 +
 tools/perf/util/session.c       |    5 +-
 tools/perf/util/symbol.c        |  447 +++++++++++++++++++++++++++++++--------
 tools/perf/util/symbol.h        |   54 +++--
 tools/perf/util/target.c        |   11 +-
 18 files changed, 657 insertions(+), 116 deletions(-)
 create mode 100644 tools/lib/traceevent/.gitignore
 create mode 100644 tools/perf/util/dso-test-data.c
--
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