linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 00/38] perf/core improvements and fixes
@ 2014-01-13 20:47 Arnaldo Carvalho de Melo
  2014-01-13 20:47 ` [PATCH 01/38] perf stat: Don't show counter information when workload fails Arnaldo Carvalho de Melo
                   ` (38 more replies)
  0 siblings, 39 replies; 51+ messages in thread
From: Arnaldo Carvalho de Melo @ 2014-01-13 20:47 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter, Andi Kleen,
	Borislav Petkov, Cody P Schafer, Corey Ashford, David Ahern,
	Frederic Weisbecker, Jean Pihet, Jiri Olsa, linaro-kernel,
	Masami Hiramatsu, Mike Galbraith, Namhyung Kim, patches,
	Paul Mackerras, Peter Zijlstra, Ramkumar Ramachandra,
	Stephane Eranian, Steven Rostedt, Sukadev Bhattiprolu,
	Will Deacon, Yann Droneaud, Arnaldo Carvalho de Melo

From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>

Hi Ingo,

	There are more patchkits outstanding that I have to revisit/retest, but
lets get this first batch in to keep pull reqs at a reasonable size.

	Please consider pulling,

- Arnaldo

The following changes since commit 1341f3e4c0276aae3de6d902c9202265d89fe438:

  Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2014-01-12 17:39:47 +0100)

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 26f7f9877234e6b9ed87eff4ca450631bafe0182:

  perf tools: Remove unused test-volatile-register-var.c (2014-01-13 17:20:05 -0300)

----------------------------------------------------------------
New features:

. perf record: Add --initial-delay option (Andi Kleen)

. Column colouring improvements in 'diff' (Ramkumar Ramachandra)

Fixes:

. Don't show counter information when workload fails (Arnaldo Carvalho de Melo)

. Fixup leak on error path in parse events test. (Arnaldo Carvalho de Melo)

. Fix --delay option in 'stat' man page (Andi Kleen)

. Use the DWARF unwind info only if loaded (Jean Pihet):

Developer stuff:

. Improve forked workload error reporting by sending the errno in the signal
  data queueing integer field, using sigqueue and by doing the signal setup in
  the evlist methods, removing open coded equivalents in various tools. (Arnaldo Carvalho de Melo)

. Do more auto exit cleanup shores in the 'evlist' destructor, so that the tools
  don't have to all do that sequence. (Arnaldo Carvalho de Melo)

. Pack 'struct perf_session_env' and 'struct trace' (Arnaldo Carvalho de Melo)

. Include tools/lib/api/ in MANIFEST, fixing detached tarballs (Arnaldo Carvalho de Melo)

. Add test for building detached source tarballs (Arnaldo Carvalho de Melo)

. Shut up libtracevent plugins make message (Jiri Olsa)

. Fix installation tests path setup (Jiri Olsa)

. Fix id_hdr_size initialization (Jiri Olsa)

. Move some header files from tools/perf/ to tools/include/ to make them available to
  other tools/ dwelling codebases (Namhyung Kim)

. Fix 'probe' build when DWARF support libraries not present (Arnaldo Carvalho de Melo)

Refactorings:

. Move logic to warn about kptr_restrict'ed kernels to separate
  function in 'report' (Arnaldo Carvalho de Melo)

. Move hist browser selection code to separate function (Arnaldo Carvalho de Melo)

. Move histogram entries collapsing to separate function (Arnaldo Carvalho de Melo)

. Introduce evlist__for_each() & friends (Arnaldo Carvalho de Melo)

. Automate setup of FEATURE_CHECK_(C|LD)FLAGS-all variables (Jiri Olsa)

. Move arch setup into seprate Makefile (Jiri Olsa)

Trivial stuff:

. Remove misplaced __maybe_unused in 'stat' (Arnaldo Carvalho de Melo)

. Remove old evsel_list usage in 'record' (Arnaldo Carvalho de Melo)

. Comment typo fix (Cody P Schafer)

. Remove unused test-volatile-register-var.c (Yann Droneaud)

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

----------------------------------------------------------------
Andi Kleen (2):
      perf stat: Fix --delay option in man page
      perf record: Add --initial-delay option

Arnaldo Carvalho de Melo (18):
      perf stat: Don't show counter information when workload fails
      perf evlist: Send the errno in the signal when workload fails
      perf evlist: Move the SIGUSR1 error reporting logic to prepare_workload
      perf record: Remove old evsel_list usage
      perf evlist: Move destruction of maps to evlist destructor
      perf evlist: Close fds on destructor
      perf evlist: Auto unmap on destructor
      perf tests: Fixup leak on error path in parse events test
      perf stat: Remove misplaced __maybe_unused
      perf header: Pack 'struct perf_session_env'
      perf trace: Pack 'struct trace'
      perf report: Move logic to warn about kptr_restrict'ed kernels to separate function
      perf report: Move hist browser selection code to separate function
      perf report: Move histogram entries collapsing to separate function
      perf evlist: Introduce evlist__for_each() & friends
      perf tools: Include tools/lib/api/ in MANIFEST
      perf tools: Add test for building detached source tarballs
      perf probe: Fix build when DWARF support libraries not present

Cody P Schafer (1):
      tools perf: Comment typo fix

Jean Pihet (1):
      perf tools: Use the DWARF unwind info only if loaded

Jiri Olsa (7):
      perf tools: Move arch setup into seprate Makefile
      perf tests: Fix installation tests path setup
      tools lib traceevent: Replace tabs with spaces for all non-commands statements
      tools lib traceevent: Shut up plugins make message
      perf tools: Automate setup of FEATURE_CHECK_(C|LD)FLAGS-all variables
      perf machine: Fix id_hdr_size initialization
      perf tools: Make perf_event__synthesize_mmap_events global

Namhyung Kim (4):
      tools include: Move perf's linux/compiler.h to a generic place
      tools include: Define likely/unlikely in linux/compiler.h
      tools include: Move perf's bug.h to a generic place
      tools include: Include <linux/compiler.h> from asm/bug.h

Ramkumar Ramachandra (4):
      perf tools: Generalize percent_color_snprintf()
      perf diff: Color the Delta column
      perf diff: Color the Ratio column
      perf diff: Color the Weighted Diff column

Yann Droneaud (1):
      perf tools: Remove unused test-volatile-register-var.c

 tools/{perf/util => }/include/asm/bug.h            |   9 +-
 tools/{perf/util => }/include/linux/compiler.h     |  12 +-
 tools/lib/traceevent/Makefile                      |  59 ++++---
 tools/perf/Documentation/perf-record.txt           |   4 +
 tools/perf/Documentation/perf-stat.txt             |   2 +-
 tools/perf/MANIFEST                                |   4 +-
 tools/perf/Makefile.perf                           |   4 +-
 tools/perf/builtin-annotate.c                      |   2 +-
 tools/perf/builtin-diff.c                          |  98 ++++++++++-
 tools/perf/builtin-evlist.c                        |   2 +-
 tools/perf/builtin-inject.c                        |   2 +-
 tools/perf/builtin-kvm.c                           |   6 +-
 tools/perf/builtin-record.c                        |  82 +++++----
 tools/perf/builtin-report.c                        | 192 ++++++++++++---------
 tools/perf/builtin-script.c                        |   5 +-
 tools/perf/builtin-stat.c                          |  66 ++++---
 tools/perf/builtin-top.c                           |  14 +-
 tools/perf/builtin-trace.c                         |  30 ++--
 tools/perf/config/Makefile                         |  67 ++++---
 tools/perf/config/Makefile.arch                    |  22 +++
 .../feature-checks/test-volatile-register-var.c    |   6 -
 tools/perf/perf.h                                  |   1 +
 tools/perf/tests/code-reading.c                    |   7 +-
 tools/perf/tests/evsel-roundtrip-name.c            |   2 +-
 tools/perf/tests/hists_link.c                      |   4 +-
 tools/perf/tests/keep-tracking.c                   |   7 +-
 tools/perf/tests/make                              |  40 +++--
 tools/perf/tests/mmap-basic.c                      |  25 ++-
 tools/perf/tests/open-syscall-tp-fields.c          |  16 +-
 tools/perf/tests/parse-events.c                    |  10 +-
 tools/perf/tests/perf-record.c                     |  21 +--
 tools/perf/tests/perf-targz-src-pkg                |  21 +++
 tools/perf/tests/perf-time-to-tsc.c                |   6 -
 tools/perf/tests/sw-clock.c                        |  18 +-
 tools/perf/tests/task-exit.c                       |  33 ++--
 tools/perf/ui/browsers/hists.c                     |   5 +-
 tools/perf/ui/gtk/hists.c                          |   2 +-
 tools/perf/util/cgroup.c                           |   4 +-
 tools/perf/util/color.c                            |  15 +-
 tools/perf/util/color.h                            |   1 +
 tools/perf/util/event.c                            |  12 +-
 tools/perf/util/event.h                            |   7 +
 tools/perf/util/evlist.c                           |  78 +++++----
 tools/perf/util/evlist.h                           |  69 +++++++-
 tools/perf/util/evsel.c                            |   3 +-
 tools/perf/util/header.c                           |  19 +-
 tools/perf/util/header.h                           |  10 +-
 tools/perf/util/machine.c                          |   1 +
 tools/perf/util/parse-events.c                     |   5 +-
 tools/perf/util/pmu.c                              |   2 +-
 tools/perf/util/probe-event.c                      |   5 +-
 tools/perf/util/python.c                           |   3 +-
 tools/perf/util/record.c                           |   6 +-
 tools/perf/util/session.c                          |   6 +-
 tools/perf/util/unwind.c                           |   8 +-
 55 files changed, 724 insertions(+), 436 deletions(-)
 rename tools/{perf/util => }/include/asm/bug.h (81%)
 rename tools/{perf/util => }/include/linux/compiler.h (64%)
 create mode 100644 tools/perf/config/Makefile.arch
 delete mode 100644 tools/perf/config/feature-checks/test-volatile-register-var.c
 create mode 100755 tools/perf/tests/perf-targz-src-pkg

^ permalink raw reply	[flat|nested] 51+ messages in thread
* [GIT PULL 00/38] perf/core improvements and fixes
@ 2013-12-04 20:06 Arnaldo Carvalho de Melo
  2013-12-05 10:04 ` Ingo Molnar
  0 siblings, 1 reply; 51+ messages in thread
From: Arnaldo Carvalho de Melo @ 2013-12-04 20:06 UTC (permalink / raw)
  To: Ingo Molnar
  Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter, Andi Kleen,
	Corey Ashford, David Ahern, Dongsheng Yang, Frederic Weisbecker,
	Jeremy Fitzhardinge, Jiri Olsa, Martin K. Petersen,
	Mike Galbraith, Namhyung Kim, Paul Mackerras, Peter Zijlstra,
	Stephane Eranian, Steven Rostedt, Arnaldo Carvalho de Melo

From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>

Hi Ingo,

	Please consider pulling,

- Arnaldo

The following changes since commit 89e3bbd58a6186b832fe2b9419ac2f9ab90e9089:

  Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2013-12-04 10:17:17 +0100)

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 6d65894bc028d0342829ea1e64c9e9efad571124:

  tools lib traceevent: Update kvm plugin with is_writable_pte helper (2013-12-04 15:38:14 -0300)

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

. Backport libtraceevent plugin support from trace-cmd repository, with
  plugins for jbd2, hrtimer, kmem, kvm, mac80211, sched_switch, function,
  xen, scsi, cfg80211. From Jiri Olsa.

. Retain bfd reference to lookup source line numbers, greatly optimizing, among
  other use cases, 'perf report -s srcline', from Adrian Hunter.

. Do not disable source line lookup just because of 1 failure, from Adrian Hunter.

. Fix random fd closing with no libelf, from Adrian Hunter.

. Do not call perf_event__preprocess_sample() twice in 'perf script,
  from Adrian Hunter.

. Several 'perf kvm' man page corrections, from Dongsheng Yang.

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

----------------------------------------------------------------
Adrian Hunter (6):
      perf tools: Use asprintf instead of malloc plus snprintf
      perf symbols: Retain bfd reference to lookup source line numbers
      perf symbols: Retain symbol source file name to lookup source line numbers
      perf tools: Do not disable source line lookup just because of 1 failure
      perf symbols: Fix random fd closing with no libelf
      perf script: Do not call perf_event__preprocess_sample() twice)

Dongsheng Yang (5):
      perf tools: Remove condition in machine__get_kernel_start_addr.
      perf target: Move the checking of which map function to call into function.
      perf kvm: Add more detail about buildid-list in man page
      perf kvm: Fix spurious '=' use in man page
      perf kvm: Update the 'record' man page entry for new --guest/--host behavior

Jiri Olsa (27):
      perf tools: Remove stackprotector feature check
      tools lib traceevent: Add plugin support
      tools lib traceevent: Add plugin build support
      tools lib traceevent: Add traceevent_host_bigendian function
      tools lib traceevent: Change pevent_parse_format to include pevent handle
      tools lib traceevent: Harmonize the install messages in lib-traceevent
      perf tools: Add build and install plugins targets
      perf tools: Add filename__read_str util function
      perf tools: Add trace-event object
      perf tools: Add trace-event global object for tracepoint interface
      perf tools: Overload pr_stat traceevent print function
      tools lib traceevent: Add jbd2 plugin
      tools lib traceevent: Add hrtimer plugin
      tools lib traceevent: Add kmem plugin
      tools lib traceevent: Add kvm plugin
      tools lib traceevent: Add mac80211 plugin
      tools lib traceevent: Add sched_switch plugin
      tools lib traceevent: Add function plugin
      tools lib traceevent: Add xen plugin
      tools lib traceevent: Add scsi plugin
      tools lib traceevent: Add cfg80211 plugin
      tools lib traceevent: Remove malloc_or_die from event-plugin.c
      tools lib traceevent: Use static functions in jbd2 plugin
      tools lib traceevent: Use pevent_print_func_field in hrtimer_start handler
      tools lib traceevent: Several cleanups for function plugin
      tools lib traceevent: Remove malloc_or_die from plugin_function.c
      tools lib traceevent: Update kvm plugin with is_writable_pte helper

 tools/lib/traceevent/Makefile                      |  71 +++-
 tools/lib/traceevent/event-parse.c                 |  56 ++-
 tools/lib/traceevent/event-parse.h                 |  19 +-
 tools/lib/traceevent/event-plugin.c                | 215 ++++++++++
 tools/lib/traceevent/plugin_cfg80211.c             |  24 ++
 tools/lib/traceevent/plugin_function.c             | 160 ++++++++
 tools/lib/traceevent/plugin_hrtimer.c              |  78 ++++
 tools/lib/traceevent/plugin_jbd2.c                 |  68 ++++
 tools/lib/traceevent/plugin_kmem.c                 |  72 ++++
 tools/lib/traceevent/plugin_kvm.c                  | 436 +++++++++++++++++++++
 tools/lib/traceevent/plugin_mac80211.c             |  95 +++++
 tools/lib/traceevent/plugin_sched_switch.c         | 148 +++++++
 tools/lib/traceevent/plugin_scsi.c                 | 423 ++++++++++++++++++++
 tools/lib/traceevent/plugin_xen.c                  | 130 ++++++
 tools/perf/Documentation/perf-kvm.txt              |  27 +-
 tools/perf/Makefile.perf                           |  18 +-
 tools/perf/builtin-script.c                        |  13 +-
 tools/perf/builtin-trace.c                         |   5 +-
 tools/perf/config/Makefile                         |  13 +-
 tools/perf/config/feature-checks/Makefile          |   6 +-
 .../config/feature-checks/test-stackprotector.c    |   6 -
 tools/perf/util/debug.c                            |  30 +-
 tools/perf/util/debug.h                            |   2 +
 tools/perf/util/dso.c                              |   3 +
 tools/perf/util/dso.h                              |   5 +
 tools/perf/util/evlist.c                           |   8 +-
 tools/perf/util/evsel.c                            |  44 +--
 tools/perf/util/header.c                           |   8 +-
 tools/perf/util/machine.c                          |  14 +-
 tools/perf/util/python-ext-sources                 |   1 +
 tools/perf/util/session.c                          |  31 +-
 tools/perf/util/session.h                          |   7 +-
 tools/perf/util/srcline.c                          |  66 +++-
 tools/perf/util/symbol-minimal.c                   |   1 +
 tools/perf/util/symbol.c                           |   2 +
 tools/perf/util/target.h                           |  13 +
 tools/perf/util/trace-event-parse.c                |  13 -
 tools/perf/util/trace-event-read.c                 |  20 +-
 tools/perf/util/trace-event.c                      |  82 ++++
 tools/perf/util/trace-event.h                      |  15 +-
 tools/perf/util/util.c                             |  49 +++
 tools/perf/util/util.h                             |   1 +
 42 files changed, 2305 insertions(+), 193 deletions(-)
 create mode 100644 tools/lib/traceevent/event-plugin.c
 create mode 100644 tools/lib/traceevent/plugin_cfg80211.c
 create mode 100644 tools/lib/traceevent/plugin_function.c
 create mode 100644 tools/lib/traceevent/plugin_hrtimer.c
 create mode 100644 tools/lib/traceevent/plugin_jbd2.c
 create mode 100644 tools/lib/traceevent/plugin_kmem.c
 create mode 100644 tools/lib/traceevent/plugin_kvm.c
 create mode 100644 tools/lib/traceevent/plugin_mac80211.c
 create mode 100644 tools/lib/traceevent/plugin_sched_switch.c
 create mode 100644 tools/lib/traceevent/plugin_scsi.c
 create mode 100644 tools/lib/traceevent/plugin_xen.c
 delete mode 100644 tools/perf/config/feature-checks/test-stackprotector.c
 create mode 100644 tools/perf/util/trace-event.c

^ permalink raw reply	[flat|nested] 51+ messages in thread

end of thread, other threads:[~2014-01-14 16:24 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-13 20:47 [GIT PULL 00/38] perf/core improvements and fixes Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 01/38] perf stat: Don't show counter information when workload fails Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 02/38] perf evlist: Send the errno in the signal " Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 03/38] perf evlist: Move the SIGUSR1 error reporting logic to prepare_workload Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 04/38] perf record: Remove old evsel_list usage Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 05/38] perf evlist: Move destruction of maps to evlist destructor Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 06/38] perf evlist: Close fds on destructor Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 07/38] perf evlist: Auto unmap " Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 08/38] perf tests: Fixup leak on error path in parse events test Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 09/38] perf stat: Remove misplaced __maybe_unused Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 10/38] perf tools: Move arch setup into seprate Makefile Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 11/38] perf tests: Fix installation tests path setup Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 12/38] tools lib traceevent: Replace tabs with spaces for all non-commands statements Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 13/38] tools lib traceevent: Shut up plugins make message Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 14/38] perf header: Pack 'struct perf_session_env' Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 15/38] perf trace: Pack 'struct trace' Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 16/38] perf tools: Automate setup of FEATURE_CHECK_(C|LD)FLAGS-all variables Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 17/38] perf machine: Fix id_hdr_size initialization Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 18/38] perf tools: Make perf_event__synthesize_mmap_events global Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 19/38] perf stat: Fix --delay option in man page Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 20/38] tools perf: Comment typo fix Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 21/38] perf report: Move logic to warn about kptr_restrict'ed kernels to separate function Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 22/38] perf report: Move hist browser selection code " Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 23/38] perf report: Move histogram entries collapsing " Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 24/38] perf evlist: Introduce evlist__for_each() & friends Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 25/38] tools include: Move perf's linux/compiler.h to a generic place Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 26/38] tools include: Define likely/unlikely in linux/compiler.h Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 27/38] tools include: Move perf's bug.h to a generic place Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 28/38] perf tools: Include tools/lib/api/ in MANIFEST Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 29/38] perf tools: Add test for building detached source tarballs Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 30/38] perf tools: Use the DWARF unwind info only if loaded Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 31/38] perf record: Add --initial-delay option Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 32/38] tools include: Include <linux/compiler.h> from asm/bug.h Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 33/38] perf tools: Generalize percent_color_snprintf() Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 34/38] perf diff: Color the Delta column Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 35/38] perf diff: Color the Ratio column Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 36/38] perf diff: Color the Weighted Diff column Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 37/38] perf probe: Fix build when DWARF support libraries not present Arnaldo Carvalho de Melo
2014-01-13 20:47 ` [PATCH 38/38] perf tools: Remove unused test-volatile-register-var.c Arnaldo Carvalho de Melo
2014-01-14 13:41 ` [GIT PULL 00/38] perf/core improvements and fixes Ingo Molnar
2014-01-14 14:03   ` Arnaldo Carvalho de Melo
2014-01-14 16:24     ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2013-12-04 20:06 Arnaldo Carvalho de Melo
2013-12-05 10:04 ` Ingo Molnar
2013-12-05 10:37   ` Jiri Olsa
2013-12-05 10:53     ` Ingo Molnar
2013-12-05 10:59       ` Ingo Molnar
2013-12-05 11:13         ` Jiri Olsa
2013-12-05 12:27           ` Ingo Molnar
2013-12-05 12:35             ` Jiri Olsa
2013-12-05 11:05       ` Jiri Olsa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).