* [GIT PULL 00/49] perf/core improvements and fixes
@ 2013-12-27 20:46 Arnaldo Carvalho de Melo
2013-12-27 20:46 ` [PATCH 35/49] perf kvm: Fix kvm report without guestmount Arnaldo Carvalho de Melo
2014-01-12 16:41 ` [GIT PULL 00/49] perf/core improvements and fixes Ingo Molnar
0 siblings, 2 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2013-12-27 20:46 UTC (permalink / raw)
To: Ingo Molnar
Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter,
Arun Sharma, Chunwei Chen, Corey Ashford, David Ahern,
David A. Long, Dongsheng Yang, Frederic Weisbecker, Jiri Olsa,
Masami Hiramatsu, Mike Galbraith, Namhyung Kim, Oleg Nesterov,
Paul Mackerras, Peter Zijlstra, Rodrigo Campos, Srikar Dronamraju,
stable, Stephane Eranian, Steven Rostedt, systemtap,
yrl.pp-manager.tt, Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Hi Ingo,
This one has the 34 out of 35 patches from the previous pull req, removing
the 'perf stat' one about not printing stats for workloads we failed to start, that
requires more thinking and introduced a regression.
I'm suppressing those first 34 patches, they are unchanged from last pull
req.
Please consider pulling, the next one probably will be in 2014 :-)
Best Regards and happy holidays!
- Arnaldo
The following changes since commit fa6e8e5f7cbf85f364ebd5a90525dbbe9de2083b:
Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2013-12-18 14:07:26 +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 74cf249d5cf7de84c88cca69a2f13b13d500ff94:
perf tools: Use zfree to help detect use after free bugs (2013-12-27 17:08:19 -0300)
----------------------------------------------------------------
User visible changes:
Improvements:
. Support showing source code, asking for variables to be collected
at probe time and other 'perf probe' operations that use DWARF information.
This supports only binaries with debugging information at this time, detached
debuginfo (aka debuginfo packages) support should come in later patches.
(Masami Hiramatsu)
. Add a perf.data file header window in the 'perf report' TUI, associated
with the 'i' hotkey, providing a counterpart to the --header option in the
stdio UI. (Namhyung Kim)
. Guest related improvements to 'perf kvm', including allowing to
specify a directory with guest specific /proc information. (Dongsheng Yang)
. Print session information only if --stdio is given (Namhyung Kim)
Developer stuff:
Fixes:
. Get rid of a duplicate va_end() in error reporting (Namhyung Kim)
. If a hist entry doesn't have symbol information, compare it with its
address. Affects upcoming new feature (--cumulate) (Namhyung Kim)
Improvements:
. Make libtraceevent install target quieter (Jiri Olsa)
. Make tests/make output more compact (Jiri Olsa)
. Ignore generated files in feature-checks (Chunwei Chen)
New APIs:
. Introduce pevent_filter_strerror() in libtraceevent, similar in
purpose to libc's strerror() function. (Namhyung Kim)
Refactorings:
. Use perf_data_file methods to write output file in 'record' and
'inject' (Jiri Olsa)
. Use pr_*() functions where applicable in 'report' (Namhyumg Kim)
. Add 'machine' 'addr_location' struct to have full picture (machine,
thread, map, symbol, addr) for a (partially) resolved address, reducing
function signatures (Arnaldo Carvalho de Melo)
. Reduce code duplication in the histogram entry creation/insertion. (Arnaldo Carvalho de Melo)
. Auto allocate annotation histogram data structures, (Arnaldo Carvalho de Melo)
. No need to test against NULL before calling free, also set
freed memory in struct pointers to NULL, to help fixing use after
free bugs. (Arnaldo Carvalho de Melo>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
----------------------------------------------------------------
Arnaldo Carvalho de Melo (19):
perf annotate: Auto allocate symbol per addr hist buckets
perf hists: Leave symbol addr hist bucket auto alloc to symbol layer
perf annotate: Add inc_samples method to addr_map_symbol
perf top: Use hist_entry__inc_addr_sample
perf annotate: Adopt methods from hists
perf annotate: Make symbol__inc_addr_samples private
perf report: Introduce helpers for processing callchains
perf record: Simplify perf_record__write
perf record: Rename 'perf_record' to plain 'record'
perf tools: Rename 'perf_record_opts' to 'record_opts
perf report: Rename 'perf_report' to 'report'
perf ui browser: Remove misplaced __maybe_unused
perf scripting python: Shorten function signatures
perf scripting perl: Shorten function signatures
perf mem: Remove unused parameter from dump_raw_samples()
perf symbols: Add 'machine' member to struct addr_location
perf tools: No need to test against NULL before calling free()
perf tools: Introduce zfree
perf tools: Use zfree to help detect use after free bugs
Chunwei Chen (1):
perf config: Ignore generated files in feature-checks
Dongsheng Yang (6):
perf kvm: Fix kvm report without guestmount.
perf tools: Add support for PERF_RECORD_MISC_GUEST_USER in thread__find_addr_map().
perf tools: Find the proc info under machine->root_dir.
perf tools: Set event->header.misc to PERF_RECORD_MISC_GUEST_USER if machine is guest.
perf tools: Use machine->pid for tgid if machine is guest.
perf tools: Do not synthesize the treads of default guest.
Jiri Olsa (11):
perf inject: Handle output file via perf_data_file object
perf record: Use perf_data_file__write for output file
perf tests: Factor make install tests
perf tools: Making QUIET_(CLEAN|INSTAL) variables global
tools lib traceevent: Remove print_app_build variable
tools lib traceevent: Use global QUIET_CC build output
tools lib traceevent: Add global QUIET_CC_FPIC build output
tools lib traceevent: Use global QUIET_LINK build output
tools lib traceevent: Use global QUIET_INSTALL build output
tools lib traceevent: Use global QUIET_CLEAN build output
tools lib traceevent: Use global 'O' processing code
Masami Hiramatsu (2):
perf probe: Expand given path to absolute path
perf probe: Support basic dwarf-based operations on uprobe events
Namhyung Kim (10):
perf sort: Compare addresses if no symbol info
perf sort: Do not compare dso again
perf hists: Do not pass period and weight to add_hist_entry()
tools lib traceevent: Introduce pevent_filter_strerror()
perf tools: Get rid of a duplicate va_end() in error reporting routine
perf report: Use pr_*() functions where applicable
perf report: Print session information only if --stdio is given
perf ui/tui: Protect windows by ui__lock
perf ui/tui: Split help message for perf top and report
perf ui/tui: Implement header window
tools/lib/traceevent/Makefile | 85 +++----
tools/lib/traceevent/event-parse.c | 17 +-
tools/lib/traceevent/event-parse.h | 7 +-
tools/lib/traceevent/parse-filter.c | 98 ++++----
tools/perf/Makefile.perf | 1 +
tools/perf/arch/common.c | 3 +-
tools/perf/builtin-annotate.c | 13 +-
tools/perf/builtin-diff.c | 2 +-
tools/perf/builtin-inject.c | 65 +++---
tools/perf/builtin-kvm.c | 6 +-
tools/perf/builtin-mem.c | 5 +-
tools/perf/builtin-probe.c | 17 +-
tools/perf/builtin-record.c | 94 ++++----
tools/perf/builtin-report.c | 259 +++++++--------------
tools/perf/builtin-sched.c | 2 +-
tools/perf/builtin-script.c | 22 +-
tools/perf/builtin-stat.c | 6 +-
tools/perf/builtin-timechart.c | 3 +-
tools/perf/builtin-top.c | 23 +-
tools/perf/builtin-trace.c | 14 +-
tools/perf/config/Makefile | 6 +-
tools/perf/config/feature-checks/.gitignore | 2 +
tools/perf/config/feature-checks/Makefile | 110 ++++-----
tools/perf/config/utilities.mak | 7 -
tools/perf/perf.h | 2 +-
tools/perf/tests/code-reading.c | 2 +-
tools/perf/tests/keep-tracking.c | 2 +-
tools/perf/tests/make | 38 ++-
tools/perf/tests/open-syscall-tp-fields.c | 2 +-
tools/perf/tests/perf-record.c | 2 +-
tools/perf/tests/perf-time-to-tsc.c | 2 +-
tools/perf/ui/browser.c | 8 +-
tools/perf/ui/browser.h | 2 +
tools/perf/ui/browsers/header.c | 127 ++++++++++
tools/perf/ui/browsers/hists.c | 63 +++--
tools/perf/ui/browsers/scripts.c | 3 +-
tools/perf/ui/gtk/util.c | 3 +-
tools/perf/ui/stdio/hist.c | 2 +-
tools/perf/ui/tui/util.c | 19 +-
tools/perf/util/alias.c | 6 +-
tools/perf/util/annotate.c | 73 ++++--
tools/perf/util/annotate.h | 9 +-
tools/perf/util/callchain.h | 2 +-
tools/perf/util/cgroup.c | 2 +-
tools/perf/util/comm.c | 2 +-
tools/perf/util/debug.c | 1 -
tools/perf/util/dso.c | 9 +-
tools/perf/util/event.c | 45 ++--
tools/perf/util/evlist.c | 9 +-
tools/perf/util/evlist.h | 7 +-
tools/perf/util/evsel.c | 17 +-
tools/perf/util/evsel.h | 4 +-
tools/perf/util/header.c | 15 +-
tools/perf/util/help.c | 7 +-
tools/perf/util/hist.c | 27 +--
tools/perf/util/hist.h | 3 -
tools/perf/util/machine.c | 12 +-
tools/perf/util/parse-events.c | 8 +-
tools/perf/util/pmu.c | 2 +-
tools/perf/util/probe-event.c | 234 +++++++++++++------
tools/perf/util/probe-event.h | 1 +
tools/perf/util/probe-finder.c | 33 +--
tools/perf/util/record.c | 9 +-
.../perf/util/scripting-engines/trace-event-perl.c | 22 +-
.../util/scripting-engines/trace-event-python.c | 28 +--
tools/perf/util/session.c | 33 +--
tools/perf/util/session.h | 2 +-
tools/perf/util/sort.c | 22 +-
tools/perf/util/srcline.c | 6 +-
tools/perf/util/strbuf.c | 2 +-
tools/perf/util/strfilter.c | 2 +-
tools/perf/util/string.c | 2 +-
tools/perf/util/strlist.c | 3 +-
tools/perf/util/svghelper.c | 5 +-
tools/perf/util/symbol-elf.c | 2 +-
tools/perf/util/symbol-minimal.c | 3 +-
tools/perf/util/symbol.c | 11 +-
tools/perf/util/symbol.h | 1 +
tools/perf/util/thread_map.c | 20 +-
tools/perf/util/top.c | 2 +-
tools/perf/util/top.h | 2 +-
tools/perf/util/trace-event-info.c | 10 +-
tools/perf/util/trace-event-scripting.c | 3 +-
tools/perf/util/trace-event.h | 1 -
tools/perf/util/util.h | 2 +
tools/perf/util/values.c | 14 +-
tools/scripts/Makefile.include | 4 +
87 files changed, 1001 insertions(+), 882 deletions(-)
create mode 100644 tools/perf/config/feature-checks/.gitignore
create mode 100644 tools/perf/ui/browsers/header.c
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 35/49] perf kvm: Fix kvm report without guestmount.
2013-12-27 20:46 [GIT PULL 00/49] perf/core improvements and fixes Arnaldo Carvalho de Melo
@ 2013-12-27 20:46 ` Arnaldo Carvalho de Melo
2014-01-12 16:41 ` [GIT PULL 00/49] perf/core improvements and fixes Ingo Molnar
1 sibling, 0 replies; 3+ messages in thread
From: Arnaldo Carvalho de Melo @ 2013-12-27 20:46 UTC (permalink / raw)
To: Ingo Molnar
Cc: linux-kernel, Dongsheng Yang, stable, #, 3.3+, David Ahern,
Arnaldo Carvalho de Melo
From: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
Currently, if we use perf kvm --guestkallsyms --guestmodules report, we
can not get the perf information from perf data file. All sample are
shown as unknown.
Reproducing steps:
# perf kvm --guestkallsyms /tmp/kallsyms --guestmodules /tmp/modules record -a sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.624 MB perf.data.guest (~27260 samples) ]
# perf kvm --guestkallsyms /tmp/kallsyms --guestmodules /tmp/modules report |grep %
100.00% [guest/6471] [unknown] [g] 0xffffffff8164f330
This bug was introduced by 207b57926 (perf kvm: Fix regression with guest machine creation).
In original code, it uses perf_session__find_machine(), it means we deliver symbol to machine
which has the same pid, if no machine found, deliver it to *default* guest. But if we use
perf_session__findnew_machine() here, if no machine was found, new machine with pid will be built
and added. Then the default guest which with pid == 0 will never get a symbol.
And because the new machine initialized here has no kernel map created, the symbol delivered to
it will be marked as "unknown".
This patch here is to revert commit 207b57926 and fix the SEGFAULT bug in another way.
Verification steps:
# ./perf kvm --guestkallsyms /home/kallsyms --guestmodules /home/modules record -a sleep 1
[ perf record: Woken up 1 times to write data ]
[ perf record: Captured and wrote 0.651 MB perf.data.guest (~28437 samples) ]
# ./perf kvm --guestkallsyms /home/kallsyms --guestmodules /home/modules report |grep %
22.64% :6471 [guest.kernel.kallsyms] [g] update_rq_clock.part.70
19.99% :6471 [guest.kernel.kallsyms] [g] d_free
18.46% :6471 [guest.kernel.kallsyms] [g] bio_phys_segments
16.25% :6471 [guest.kernel.kallsyms] [g] dequeue_task
12.78% :6471 [guest.kernel.kallsyms] [g] __switch_to
7.91% :6471 [guest.kernel.kallsyms] [g] scheduler_tick
1.75% :6471 [guest.kernel.kallsyms] [g] native_apic_mem_write
0.21% :6471 [guest.kernel.kallsyms] [g] apic_timer_interrupt
Signed-off-by: Dongsheng Yang <yangds.fnst@cn.fujitsu.com>
Acked-by: David Ahern <dsahern@gmail.com>
Cc: stable@vger.kernel.org # 3.3+
Cc: David Ahern <dsahern@gmail.com>
Link: http://lkml.kernel.org/r/1387564907-3045-1-git-send-email-yangds.fnst@cn.fujitsu.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
---
tools/perf/util/session.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/tools/perf/util/session.c b/tools/perf/util/session.c
index cbacaab3e9c4..d3a857be9682 100644
--- a/tools/perf/util/session.c
+++ b/tools/perf/util/session.c
@@ -830,6 +830,7 @@ static struct machine *
struct perf_sample *sample)
{
const u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK;
+ struct machine *machine;
if (perf_guest &&
((cpumode == PERF_RECORD_MISC_GUEST_KERNEL) ||
@@ -842,7 +843,11 @@ static struct machine *
else
pid = sample->pid;
- return perf_session__findnew_machine(session, pid);
+ machine = perf_session__find_machine(session, pid);
+ if (!machine)
+ machine = perf_session__findnew_machine(session,
+ DEFAULT_GUEST_KERNEL_ID);
+ return machine;
}
return &session->machines.host;
--
1.8.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [GIT PULL 00/49] perf/core improvements and fixes
2013-12-27 20:46 [GIT PULL 00/49] perf/core improvements and fixes Arnaldo Carvalho de Melo
2013-12-27 20:46 ` [PATCH 35/49] perf kvm: Fix kvm report without guestmount Arnaldo Carvalho de Melo
@ 2014-01-12 16:41 ` Ingo Molnar
1 sibling, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2014-01-12 16:41 UTC (permalink / raw)
To: Arnaldo Carvalho de Melo
Cc: linux-kernel, Arnaldo Carvalho de Melo, Adrian Hunter,
Arun Sharma, Chunwei Chen, Corey Ashford, David Ahern,
David A. Long, Dongsheng Yang, Frederic Weisbecker, Jiri Olsa,
Masami Hiramatsu, Mike Galbraith, Namhyung Kim, Oleg Nesterov,
Paul Mackerras, Peter Zijlstra, Rodrigo Campos, Srikar Dronamraju,
stable, Stephane Eranian, Steven Rostedt, systemtap,
yrl.pp-manager.tt, Arnaldo Carvalho de Melo
* Arnaldo Carvalho de Melo <acme@infradead.org> wrote:
> From: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
>
> Hi Ingo,
>
> This one has the 34 out of 35 patches from the previous pull req, removing
> the 'perf stat' one about not printing stats for workloads we failed to start, that
> requires more thinking and introduced a regression.
>
> I'm suppressing those first 34 patches, they are unchanged from last pull
> req.
>
> Please consider pulling, the next one probably will be in 2014 :-)
>
> Best Regards and happy holidays!
>
> - Arnaldo
>
> The following changes since commit fa6e8e5f7cbf85f364ebd5a90525dbbe9de2083b:
>
> Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2013-12-18 14:07:26 +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 74cf249d5cf7de84c88cca69a2f13b13d500ff94:
>
> perf tools: Use zfree to help detect use after free bugs (2013-12-27 17:08:19 -0300)
>
> ----------------------------------------------------------------
> User visible changes:
>
> Improvements:
>
> . Support showing source code, asking for variables to be collected
> at probe time and other 'perf probe' operations that use DWARF information.
>
> This supports only binaries with debugging information at this time, detached
> debuginfo (aka debuginfo packages) support should come in later patches.
> (Masami Hiramatsu)
>
> . Add a perf.data file header window in the 'perf report' TUI, associated
> with the 'i' hotkey, providing a counterpart to the --header option in the
> stdio UI. (Namhyung Kim)
>
> . Guest related improvements to 'perf kvm', including allowing to
> specify a directory with guest specific /proc information. (Dongsheng Yang)
>
> . Print session information only if --stdio is given (Namhyung Kim)
>
> Developer stuff:
>
> Fixes:
>
> . Get rid of a duplicate va_end() in error reporting (Namhyung Kim)
>
> . If a hist entry doesn't have symbol information, compare it with its
> address. Affects upcoming new feature (--cumulate) (Namhyung Kim)
>
> Improvements:
>
> . Make libtraceevent install target quieter (Jiri Olsa)
>
> . Make tests/make output more compact (Jiri Olsa)
>
> . Ignore generated files in feature-checks (Chunwei Chen)
>
> New APIs:
>
> . Introduce pevent_filter_strerror() in libtraceevent, similar in
> purpose to libc's strerror() function. (Namhyung Kim)
>
> Refactorings:
>
> . Use perf_data_file methods to write output file in 'record' and
> 'inject' (Jiri Olsa)
>
> . Use pr_*() functions where applicable in 'report' (Namhyumg Kim)
>
> . Add 'machine' 'addr_location' struct to have full picture (machine,
> thread, map, symbol, addr) for a (partially) resolved address, reducing
> function signatures (Arnaldo Carvalho de Melo)
>
> . Reduce code duplication in the histogram entry creation/insertion. (Arnaldo Carvalho de Melo)
>
> . Auto allocate annotation histogram data structures, (Arnaldo Carvalho de Melo)
>
> . No need to test against NULL before calling free, also set
> freed memory in struct pointers to NULL, to help fixing use after
> free bugs. (Arnaldo Carvalho de Melo>
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (19):
> perf annotate: Auto allocate symbol per addr hist buckets
> perf hists: Leave symbol addr hist bucket auto alloc to symbol layer
> perf annotate: Add inc_samples method to addr_map_symbol
> perf top: Use hist_entry__inc_addr_sample
> perf annotate: Adopt methods from hists
> perf annotate: Make symbol__inc_addr_samples private
> perf report: Introduce helpers for processing callchains
> perf record: Simplify perf_record__write
> perf record: Rename 'perf_record' to plain 'record'
> perf tools: Rename 'perf_record_opts' to 'record_opts
> perf report: Rename 'perf_report' to 'report'
> perf ui browser: Remove misplaced __maybe_unused
> perf scripting python: Shorten function signatures
> perf scripting perl: Shorten function signatures
> perf mem: Remove unused parameter from dump_raw_samples()
> perf symbols: Add 'machine' member to struct addr_location
> perf tools: No need to test against NULL before calling free()
> perf tools: Introduce zfree
> perf tools: Use zfree to help detect use after free bugs
>
> Chunwei Chen (1):
> perf config: Ignore generated files in feature-checks
>
> Dongsheng Yang (6):
> perf kvm: Fix kvm report without guestmount.
> perf tools: Add support for PERF_RECORD_MISC_GUEST_USER in thread__find_addr_map().
> perf tools: Find the proc info under machine->root_dir.
> perf tools: Set event->header.misc to PERF_RECORD_MISC_GUEST_USER if machine is guest.
> perf tools: Use machine->pid for tgid if machine is guest.
> perf tools: Do not synthesize the treads of default guest.
>
> Jiri Olsa (11):
> perf inject: Handle output file via perf_data_file object
> perf record: Use perf_data_file__write for output file
> perf tests: Factor make install tests
> perf tools: Making QUIET_(CLEAN|INSTAL) variables global
> tools lib traceevent: Remove print_app_build variable
> tools lib traceevent: Use global QUIET_CC build output
> tools lib traceevent: Add global QUIET_CC_FPIC build output
> tools lib traceevent: Use global QUIET_LINK build output
> tools lib traceevent: Use global QUIET_INSTALL build output
> tools lib traceevent: Use global QUIET_CLEAN build output
> tools lib traceevent: Use global 'O' processing code
>
> Masami Hiramatsu (2):
> perf probe: Expand given path to absolute path
> perf probe: Support basic dwarf-based operations on uprobe events
>
> Namhyung Kim (10):
> perf sort: Compare addresses if no symbol info
> perf sort: Do not compare dso again
> perf hists: Do not pass period and weight to add_hist_entry()
> tools lib traceevent: Introduce pevent_filter_strerror()
> perf tools: Get rid of a duplicate va_end() in error reporting routine
> perf report: Use pr_*() functions where applicable
> perf report: Print session information only if --stdio is given
> perf ui/tui: Protect windows by ui__lock
> perf ui/tui: Split help message for perf top and report
> perf ui/tui: Implement header window
>
> tools/lib/traceevent/Makefile | 85 +++----
> tools/lib/traceevent/event-parse.c | 17 +-
> tools/lib/traceevent/event-parse.h | 7 +-
> tools/lib/traceevent/parse-filter.c | 98 ++++----
> tools/perf/Makefile.perf | 1 +
> tools/perf/arch/common.c | 3 +-
> tools/perf/builtin-annotate.c | 13 +-
> tools/perf/builtin-diff.c | 2 +-
> tools/perf/builtin-inject.c | 65 +++---
> tools/perf/builtin-kvm.c | 6 +-
> tools/perf/builtin-mem.c | 5 +-
> tools/perf/builtin-probe.c | 17 +-
> tools/perf/builtin-record.c | 94 ++++----
> tools/perf/builtin-report.c | 259 +++++++--------------
> tools/perf/builtin-sched.c | 2 +-
> tools/perf/builtin-script.c | 22 +-
> tools/perf/builtin-stat.c | 6 +-
> tools/perf/builtin-timechart.c | 3 +-
> tools/perf/builtin-top.c | 23 +-
> tools/perf/builtin-trace.c | 14 +-
> tools/perf/config/Makefile | 6 +-
> tools/perf/config/feature-checks/.gitignore | 2 +
> tools/perf/config/feature-checks/Makefile | 110 ++++-----
> tools/perf/config/utilities.mak | 7 -
> tools/perf/perf.h | 2 +-
> tools/perf/tests/code-reading.c | 2 +-
> tools/perf/tests/keep-tracking.c | 2 +-
> tools/perf/tests/make | 38 ++-
> tools/perf/tests/open-syscall-tp-fields.c | 2 +-
> tools/perf/tests/perf-record.c | 2 +-
> tools/perf/tests/perf-time-to-tsc.c | 2 +-
> tools/perf/ui/browser.c | 8 +-
> tools/perf/ui/browser.h | 2 +
> tools/perf/ui/browsers/header.c | 127 ++++++++++
> tools/perf/ui/browsers/hists.c | 63 +++--
> tools/perf/ui/browsers/scripts.c | 3 +-
> tools/perf/ui/gtk/util.c | 3 +-
> tools/perf/ui/stdio/hist.c | 2 +-
> tools/perf/ui/tui/util.c | 19 +-
> tools/perf/util/alias.c | 6 +-
> tools/perf/util/annotate.c | 73 ++++--
> tools/perf/util/annotate.h | 9 +-
> tools/perf/util/callchain.h | 2 +-
> tools/perf/util/cgroup.c | 2 +-
> tools/perf/util/comm.c | 2 +-
> tools/perf/util/debug.c | 1 -
> tools/perf/util/dso.c | 9 +-
> tools/perf/util/event.c | 45 ++--
> tools/perf/util/evlist.c | 9 +-
> tools/perf/util/evlist.h | 7 +-
> tools/perf/util/evsel.c | 17 +-
> tools/perf/util/evsel.h | 4 +-
> tools/perf/util/header.c | 15 +-
> tools/perf/util/help.c | 7 +-
> tools/perf/util/hist.c | 27 +--
> tools/perf/util/hist.h | 3 -
> tools/perf/util/machine.c | 12 +-
> tools/perf/util/parse-events.c | 8 +-
> tools/perf/util/pmu.c | 2 +-
> tools/perf/util/probe-event.c | 234 +++++++++++++------
> tools/perf/util/probe-event.h | 1 +
> tools/perf/util/probe-finder.c | 33 +--
> tools/perf/util/record.c | 9 +-
> .../perf/util/scripting-engines/trace-event-perl.c | 22 +-
> .../util/scripting-engines/trace-event-python.c | 28 +--
> tools/perf/util/session.c | 33 +--
> tools/perf/util/session.h | 2 +-
> tools/perf/util/sort.c | 22 +-
> tools/perf/util/srcline.c | 6 +-
> tools/perf/util/strbuf.c | 2 +-
> tools/perf/util/strfilter.c | 2 +-
> tools/perf/util/string.c | 2 +-
> tools/perf/util/strlist.c | 3 +-
> tools/perf/util/svghelper.c | 5 +-
> tools/perf/util/symbol-elf.c | 2 +-
> tools/perf/util/symbol-minimal.c | 3 +-
> tools/perf/util/symbol.c | 11 +-
> tools/perf/util/symbol.h | 1 +
> tools/perf/util/thread_map.c | 20 +-
> tools/perf/util/top.c | 2 +-
> tools/perf/util/top.h | 2 +-
> tools/perf/util/trace-event-info.c | 10 +-
> tools/perf/util/trace-event-scripting.c | 3 +-
> tools/perf/util/trace-event.h | 1 -
> tools/perf/util/util.h | 2 +
> tools/perf/util/values.c | 14 +-
> tools/scripts/Makefile.include | 4 +
> 87 files changed, 1001 insertions(+), 882 deletions(-)
> create mode 100644 tools/perf/config/feature-checks/.gitignore
> create mode 100644 tools/perf/ui/browsers/header.c
Pulled, thanks a lot Arnaldo!
Ingo
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-01-12 16:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-27 20:46 [GIT PULL 00/49] perf/core improvements and fixes Arnaldo Carvalho de Melo
2013-12-27 20:46 ` [PATCH 35/49] perf kvm: Fix kvm report without guestmount Arnaldo Carvalho de Melo
2014-01-12 16:41 ` [GIT PULL 00/49] perf/core improvements and fixes Ingo Molnar
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).