All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] perf tools: Assorted fixes
@ 2018-04-23  9:08 Jiri Olsa
  2018-04-23  9:08 ` [PATCH 1/9] perf check-headers.sh: Simplify arguments passing Jiri Olsa
                   ` (9 more replies)
  0 siblings, 10 replies; 30+ messages in thread
From: Jiri Olsa @ 2018-04-23  9:08 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: lkml, Ingo Molnar, Namhyung Kim, David Ahern, Alexander Shishkin,
	Peter Zijlstra

hi,
sending assorted general fixes that queued
up in my other branches.

Arnaldo,
I added wait4 call in the last patch and am wondering
if it will pass your all-distros-docker test ;-)
If not I'll need to put some build detection code.

Also available in here:
  https://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git
  perf/fixes

thanks,
jirka

---
Jiri Olsa (9):
      perf check-headers.sh: Simplify arguments passing
      perf check-headers.sh: Add support to check 2 independent files
      perf stat: Keep the / modifier separator in fallback
      perf tools: Fix pmu events parsing rule
      perf tools: Disable write_backward for leader sampling group events
      perf stat: Display time in precision based on std deviation
      perf stat: Add --table option to display time of each run
      perf stat: Display length strings of each run for --table option
      perf stat: Display user and system time

 tools/perf/builtin-stat.c                        | 120 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
 tools/perf/check-headers.sh                      |  30 +++++++++++++++-------------
 tools/perf/tests/attr/test-record-group-sampling |   3 +++
 tools/perf/util/evsel.c                          |  15 +++++++++++---
 tools/perf/util/parse-events.y                   |   8 ++++----
 tools/perf/util/stat.h                           |   3 +--
 6 files changed, 146 insertions(+), 33 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [PATCH 0/9] perf tools: Assorted fixes
@ 2017-10-13  8:37 Jiri Olsa
  0 siblings, 0 replies; 30+ messages in thread
From: Jiri Olsa @ 2017-10-13  8:37 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: lkml, Ingo Molnar, Namhyung Kim, David Ahern, Peter Zijlstra,
	Andi Kleen, Jin, Yao, Wangnan (F),
	Du, Changbin

hi,
sending few fixes that pilled up.

It's also available at:
  git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git perf/fixes

thanks,
jirka


---
Jiri Olsa (9):
      perf tools: Fix crash in perf_hpp__reset_output_field
      perf tools: Add extra integrity checks to fmt_free
      perf tools: Rename struct perf_data_file to perf_data
      perf tools: Add struct perf_data_file
      perf tools: Add perf_data_file__write function
      perf stat: Move the shadow stats scale computation in perf_stat__update_shadow_stats
      perf stat: Make --per-thread update shadow stats to show metrics
      perf tools: Check wether the eBPF file exists in event parsing
      perf tools: Unwind properly location after REJECT

 tools/perf/builtin-annotate.c      | 10 +++++-----
 tools/perf/builtin-buildid-cache.c |  8 ++++----
 tools/perf/builtin-buildid-list.c  | 16 +++++++++-------
 tools/perf/builtin-c2c.c           | 10 +++++-----
 tools/perf/builtin-diff.c          | 18 +++++++++---------
 tools/perf/builtin-evlist.c        | 12 +++++++-----
 tools/perf/builtin-inject.c        | 36 +++++++++++++++++++-----------------
 tools/perf/builtin-kmem.c          |  8 ++++----
 tools/perf/builtin-kvm.c           | 14 ++++++++------
 tools/perf/builtin-lock.c          | 12 +++++++-----
 tools/perf/builtin-mem.c           | 12 +++++++-----
 tools/perf/builtin-record.c        | 50 +++++++++++++++++++++++++-------------------------
 tools/perf/builtin-report.c        | 14 +++++++-------
 tools/perf/builtin-sched.c         | 24 ++++++++++++++----------
 tools/perf/builtin-script.c        | 20 +++++++++++---------
 tools/perf/builtin-stat.c          | 35 +++++++++++++++++------------------
 tools/perf/builtin-timechart.c     | 14 ++++++++------
 tools/perf/builtin-trace.c         | 12 +++++++-----
 tools/perf/tests/topology.c        | 22 +++++++++++++---------
 tools/perf/ui/hist.c               |  9 ++++++++-
 tools/perf/util/auxtrace.c         |  4 ++--
 tools/perf/util/data-convert-bt.c  | 12 ++++++------
 tools/perf/util/data.c             | 94 ++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------
 tools/perf/util/data.h             | 38 ++++++++++++++++++++++----------------
 tools/perf/util/header.c           | 20 ++++++++++----------
 tools/perf/util/intel-bts.c        |  6 +++---
 tools/perf/util/intel-pt.c         |  6 +++---
 tools/perf/util/jit.h              |  2 +-
 tools/perf/util/jitdump.c          | 10 +++++-----
 tools/perf/util/parse-events.l     | 25 +++++++++++++++++++++----
 tools/perf/util/session.c          | 44 ++++++++++++++++++++++----------------------
 tools/perf/util/session.h          |  4 ++--
 tools/perf/util/stat-shadow.c      | 48 +++++++++++++++++++++++++-----------------------
 tools/perf/util/stat.c             |  8 ++++----
 tools/perf/util/stat.h             |  2 +-
 35 files changed, 371 insertions(+), 308 deletions(-)

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

end of thread, other threads:[~2018-05-02 17:43 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-23  9:08 [PATCH 0/9] perf tools: Assorted fixes Jiri Olsa
2018-04-23  9:08 ` [PATCH 1/9] perf check-headers.sh: Simplify arguments passing Jiri Olsa
2018-05-02 17:40   ` [tip:perf/core] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 2/9] perf check-headers.sh: Add support to check 2 independent files Jiri Olsa
2018-04-23 14:28   ` Arnaldo Carvalho de Melo
2018-05-02 17:41   ` [tip:perf/core] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 3/9] perf stat: Keep the / modifier separator in fallback Jiri Olsa
2018-04-23 14:16   ` Arnaldo Carvalho de Melo
2018-04-26  5:53   ` [tip:perf/urgent] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 4/9] perf tools: Fix pmu events parsing rule Jiri Olsa
2018-04-23 14:20   ` Arnaldo Carvalho de Melo
2018-04-23 14:25     ` Jiri Olsa
2018-04-26  5:54   ` [tip:perf/urgent] perf pmu: " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 5/9] perf tools: Disable write_backward for leader sampling group events Jiri Olsa
2018-04-23 14:23   ` Arnaldo Carvalho de Melo
2018-04-26  5:54   ` [tip:perf/urgent] perf evsel: " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 6/9] perf stat: Display time in precision based on std deviation Jiri Olsa
2018-04-23 14:40   ` Arnaldo Carvalho de Melo
2018-05-02 17:41   ` [tip:perf/core] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 7/9] perf stat: Add --table option to display time of each run Jiri Olsa
2018-04-23 14:41   ` Arnaldo Carvalho de Melo
2018-04-23 15:29     ` Jiri Olsa
2018-05-02 17:42   ` [tip:perf/core] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 8/9] perf stat: Display length strings of each run for --table option Jiri Olsa
2018-05-02 17:42   ` [tip:perf/core] " tip-bot for Jiri Olsa
2018-04-23  9:08 ` [PATCH 9/9] perf stat: Display user and system time Jiri Olsa
2018-04-23 14:51   ` Arnaldo Carvalho de Melo
2018-04-23 15:30     ` Jiri Olsa
2018-04-23 18:48 ` [PATCH 0/9] perf tools: Assorted fixes Arnaldo Carvalho de Melo
  -- strict thread matches above, loose matches on Subject: below --
2017-10-13  8:37 Jiri Olsa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.