Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1344955
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [GIT PULL 00/19] perf/core improvements and fixes |
| Date | 2016-02-27 10:40 +0100 |
| Message-ID | <r6JvY-TH-11@gated-at.bofh.it> (permalink) |
| References | <r6zPY-26L-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote: > Hi Ingo, > > Please consider pulling, > > - Arnaldo > > The following changes since commit 06466212a69c0511c5dcff7363c207ffc8913731: > > Merge tag 'perf-core-for-mingo-20160224' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-02-25 08:20:56 +0100) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo-20160226 > > for you to fetch changes up to 1d6c9407d45dd622b277ca9f725da3cc9e95b5de: > > perf trace: Print content of bpf-output event (2016-02-26 19:57:07 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > User visible: > > - Show extra line telling no entries below --percent-limit are > at that --hierarchy level (Namhyung Kim) > > - 'perf report/top --hierarchy' assorted alignment fixes (Namhyung Kim) > > - Handle empty print fmts in 'perf script -s' i.e. when running > python or perl scripts (Taeung Song) > > - Improve support for bpf-output events in 'perf trace' (Wang Nan) > > - Fix parsing of pmu events with empty list of modifiers, this > cures a perf/core-only regression where '-e intel_pt//' got > broken (Arnaldo Carvalho de Melo) > > Infrastructure: > > - Improve missing OpenJDK devel files error message in jvmti > Makefile (Stephane Eranian) > > - Remove duplicated code and needless script_spec__findnew() (Taeung Song) > > - Bring perf_default_config to the very beginning at main(), removing > the need for each subcommand to do this (Wang Nan) > > Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (2): > perf tools: Use asprintf() for simple string formatting/allocation > perf tools: Fix parsing of pmu events with empty list of modifiers > > Namhyung Kim (10): > perf hists: Add more helper functions for the hierarchy mode > perf report: Show message for percent limit on stdio > perf hists browser: Cleanup hist_browser__update_percent_limit() > perf hists browser: Show message for percent limit > perf report: Show message for percent limit on gtk > perf hists: Fix comparing of dynamic entries > perf report: Fix indentation of dynamic entries in hierarchy > perf report: Left align dynamic entries in hierarchy > perf hists: Fix dynamic entry display in hierarchy > perf report: Update column width of dynamic entries > > Stephane Eranian (1): > perf jvmti: improve error message in Makefile > > Taeung Song (2): > perf script: Exception handling when the print fmt is empty > perf script: Remove duplicated code and needless script_spec__findnew() > > Wang Nan (4): > perf config: Bring perf_default_config to the very beginning at main() > perf tools: Only set filter for tracepoints events > perf trace: Call bpf__apply_obj_config in 'perf trace' > perf trace: Print content of bpf-output event > > tools/perf/builtin-diff.c | 2 - > tools/perf/builtin-help.c | 2 +- > tools/perf/builtin-kmem.c | 4 +- > tools/perf/builtin-report.c | 2 +- > tools/perf/builtin-script.c | 21 +--- > tools/perf/builtin-top.c | 4 +- > tools/perf/builtin-trace.c | 46 +++++++- > tools/perf/jvmti/Makefile | 17 ++- > tools/perf/perf.c | 16 ++- > tools/perf/tests/llvm.c | 8 -- > tools/perf/ui/browsers/hists.c | 128 +++++++++++++++++++-- > tools/perf/ui/gtk/hists.c | 11 ++ > tools/perf/ui/hist.c | 22 ++++ > tools/perf/ui/stdio/hist.c | 49 ++++++-- > tools/perf/util/color.c | 5 +- > tools/perf/util/data-convert-bt.c | 2 +- > tools/perf/util/evlist.c | 3 + > tools/perf/util/help-unknown-cmd.c | 5 +- > tools/perf/util/hist.c | 48 +++++++- > tools/perf/util/hist.h | 4 + > tools/perf/util/parse-events.y | 6 +- > .../perf/util/scripting-engines/trace-event-perl.c | 3 + > .../util/scripting-engines/trace-event-python.c | 3 + > tools/perf/util/sort.c | 30 ++++- > tools/perf/util/sort.h | 1 + > 25 files changed, 363 insertions(+), 79 deletions(-) Pulled, thanks a lot Arnaldo! Ingo
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[GIT PULL 00/19] perf/core improvements and fixes Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:20 +0100 [PATCH 04/19] perf script: Exception handling when the print fmt is empty Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:20 +0100 [PATCH 13/19] perf report: Left align dynamic entries in hierarchy Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:20 +0100 [PATCH 11/19] perf hists: Fix comparing of dynamic entries Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:20 +0100 [PATCH 15/19] perf report: Update column width of dynamic entries Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 10/19] perf report: Show message for percent limit on gtk Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 06/19] perf hists: Add more helper functions for the hierarchy mode Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 18/19] perf trace: Call bpf__apply_obj_config in 'perf trace' Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 14/19] perf hists: Fix dynamic entry display in hierarchy Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 03/19] perf tools: Fix parsing of pmu events with empty list of modifiers Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 16/19] perf config: Bring perf_default_config to the very beginning at main() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 08/19] perf hists browser: Cleanup hist_browser__update_percent_limit() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 01/19] perf tools: Use asprintf() for simple string formatting/allocation Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 02/19] perf jvmti: improve error message in Makefile Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 19/19] perf trace: Print content of bpf-output event Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 09/19] perf hists browser: Show message for percent limit Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 05/19] perf script: Remove duplicated code and needless script_spec__findnew() Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 [PATCH 07/19] perf report: Show message for percent limit on stdio Arnaldo Carvalho de Melo <acme@kernel.org> - 2016-02-27 00:30 +0100 Re: [GIT PULL 00/19] perf/core improvements and fixes Ingo Molnar <mingo@kernel.org> - 2016-02-27 10:40 +0100
csiph-web