Re: [GIT PULL 00/11] perf/core improvements and fixes

2018-05-16 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, more to come as I go thru Adrian's x86
> PTI series and the C++ support improvements to 'perf probe', from
> Holger,
> 
> Best Regards,
> 
> - Arnaldo
> 
> Test results at the end of this message, as usual.
>   
> The following changes since commit 291c161f6c65530092903fbea58eb07a62b220ba:
> 
>   Merge remote-tracking branch 'tip/perf/urgent' into perf/core (2018-05-15 
> 10:30:17 -0300)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-4.18-20180516
> 
> for you to fetch changes up to 7a36a287de9fbb1ba906e70573d3f2315f7fd609:
> 
>   perf bpf: Fix NULL return handling in bpf__prepare_load() (2018-05-16 
> 10:01:55 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - Add '-e intel_pt//u' test to the 'parse-events' 'perf test' entry,
>   to help avoiding regressions in the events parser such as one
>   that caused a revert in v4.17-rc (Arnaldo Carvalho de Melo)
> 
> - Fix NULL return handling in bpf__prepare_load() (YueHaibing)
> 
> - Warn about 'perf buildid-cache --purge-all' failures (Ravi Bangoria)
> 
> - Add infrastructure to help in writing eBPF C programs to be used
>   with '-e name.c' type events in tools such as 'record' and 'trace',
>   with headers for common constructs and an examples directory that
>   will get populated as we add more such helpers and the 'perf bpf'
>   branch that Jiri Olsa has been working on (Arnaldo Carvalho de Melo)
> 
> - Handle uncore event aliases in small groups properly (Kan Liang)
> 
> - Use the "_stest" symbol to identify the kernel map when loading kcore 
> (Adrian Hunter)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (1):
>   perf tools: Use the "_stest" symbol to identify the kernel map when 
> loading kcore
> 
> Arnaldo Carvalho de Melo (7):
>   perf tests parse-events: Add intel_pt parse test
>   perf llvm-utils: Add bpf include path to clang command line
>   perf bpf: Add 'examples' directories
>   perf bpf: Add bpf.h to be used in eBPF proggies
>   perf bpf: Add kprobe example to catch 5s naps
>   perf bpf: Add license(NAME) helper
>   perf bpf: Add probe() helper to reduce kprobes boilerplate
> 
> Kan Liang (1):
>   perf parse-events: Handle uncore event aliases in small groups properly
> 
> Ravi Bangoria (1):
>   perf buildid-cache: Warn --purge-all failures
> 
> YueHaibing (1):
>   perf bpf: Fix NULL return handling in bpf__prepare_load()
> 
>  tools/perf/Makefile.config |  14 
>  tools/perf/Makefile.perf   |   8 +++
>  tools/perf/builtin-buildid-cache.c |   8 ++-
>  tools/perf/examples/bpf/5sec.c |  49 ++
>  tools/perf/examples/bpf/empty.c|   3 +
>  tools/perf/include/bpf/bpf.h   |  13 
>  tools/perf/tests/parse-events.c|  13 
>  tools/perf/util/Build  |   2 +
>  tools/perf/util/bpf-loader.c   |   6 +-
>  tools/perf/util/evsel.h|   1 +
>  tools/perf/util/llvm-utils.c   |  19 --
>  tools/perf/util/parse-events.c | 130 
> -
>  tools/perf/util/parse-events.h |   7 +-
>  tools/perf/util/parse-events.y |   8 +--
>  tools/perf/util/symbol.c   |  16 ++---
>  15 files changed, 270 insertions(+), 27 deletions(-)
>  create mode 100644 tools/perf/examples/bpf/5sec.c
>  create mode 100644 tools/perf/examples/bpf/empty.c
>  create mode 100644 tools/perf/include/bpf/bpf.h

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2018-05-16 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, more to come as I go thru Adrian's x86
> PTI series and the C++ support improvements to 'perf probe', from
> Holger,
> 
> Best Regards,
> 
> - Arnaldo
> 
> Test results at the end of this message, as usual.
>   
> The following changes since commit 291c161f6c65530092903fbea58eb07a62b220ba:
> 
>   Merge remote-tracking branch 'tip/perf/urgent' into perf/core (2018-05-15 
> 10:30:17 -0300)
> 
> are available in the Git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-4.18-20180516
> 
> for you to fetch changes up to 7a36a287de9fbb1ba906e70573d3f2315f7fd609:
> 
>   perf bpf: Fix NULL return handling in bpf__prepare_load() (2018-05-16 
> 10:01:55 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - Add '-e intel_pt//u' test to the 'parse-events' 'perf test' entry,
>   to help avoiding regressions in the events parser such as one
>   that caused a revert in v4.17-rc (Arnaldo Carvalho de Melo)
> 
> - Fix NULL return handling in bpf__prepare_load() (YueHaibing)
> 
> - Warn about 'perf buildid-cache --purge-all' failures (Ravi Bangoria)
> 
> - Add infrastructure to help in writing eBPF C programs to be used
>   with '-e name.c' type events in tools such as 'record' and 'trace',
>   with headers for common constructs and an examples directory that
>   will get populated as we add more such helpers and the 'perf bpf'
>   branch that Jiri Olsa has been working on (Arnaldo Carvalho de Melo)
> 
> - Handle uncore event aliases in small groups properly (Kan Liang)
> 
> - Use the "_stest" symbol to identify the kernel map when loading kcore 
> (Adrian Hunter)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (1):
>   perf tools: Use the "_stest" symbol to identify the kernel map when 
> loading kcore
> 
> Arnaldo Carvalho de Melo (7):
>   perf tests parse-events: Add intel_pt parse test
>   perf llvm-utils: Add bpf include path to clang command line
>   perf bpf: Add 'examples' directories
>   perf bpf: Add bpf.h to be used in eBPF proggies
>   perf bpf: Add kprobe example to catch 5s naps
>   perf bpf: Add license(NAME) helper
>   perf bpf: Add probe() helper to reduce kprobes boilerplate
> 
> Kan Liang (1):
>   perf parse-events: Handle uncore event aliases in small groups properly
> 
> Ravi Bangoria (1):
>   perf buildid-cache: Warn --purge-all failures
> 
> YueHaibing (1):
>   perf bpf: Fix NULL return handling in bpf__prepare_load()
> 
>  tools/perf/Makefile.config |  14 
>  tools/perf/Makefile.perf   |   8 +++
>  tools/perf/builtin-buildid-cache.c |   8 ++-
>  tools/perf/examples/bpf/5sec.c |  49 ++
>  tools/perf/examples/bpf/empty.c|   3 +
>  tools/perf/include/bpf/bpf.h   |  13 
>  tools/perf/tests/parse-events.c|  13 
>  tools/perf/util/Build  |   2 +
>  tools/perf/util/bpf-loader.c   |   6 +-
>  tools/perf/util/evsel.h|   1 +
>  tools/perf/util/llvm-utils.c   |  19 --
>  tools/perf/util/parse-events.c | 130 
> -
>  tools/perf/util/parse-events.h |   7 +-
>  tools/perf/util/parse-events.y |   8 +--
>  tools/perf/util/symbol.c   |  16 ++---
>  15 files changed, 270 insertions(+), 27 deletions(-)
>  create mode 100644 tools/perf/examples/bpf/5sec.c
>  create mode 100644 tools/perf/examples/bpf/empty.c
>  create mode 100644 tools/perf/include/bpf/bpf.h

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2018-05-16 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, more to come as I go thru Adrian's x86
PTI series and the C++ support improvements to 'perf probe', from
Holger,

Best Regards,

- Arnaldo

Test results at the end of this message, as usual.
  
The following changes since commit 291c161f6c65530092903fbea58eb07a62b220ba:

  Merge remote-tracking branch 'tip/perf/urgent' into perf/core (2018-05-15 
10:30:17 -0300)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-4.18-20180516

for you to fetch changes up to 7a36a287de9fbb1ba906e70573d3f2315f7fd609:

  perf bpf: Fix NULL return handling in bpf__prepare_load() (2018-05-16 
10:01:55 -0300)


perf/core improvements and fixes:

- Add '-e intel_pt//u' test to the 'parse-events' 'perf test' entry,
  to help avoiding regressions in the events parser such as one
  that caused a revert in v4.17-rc (Arnaldo Carvalho de Melo)

- Fix NULL return handling in bpf__prepare_load() (YueHaibing)

- Warn about 'perf buildid-cache --purge-all' failures (Ravi Bangoria)

- Add infrastructure to help in writing eBPF C programs to be used
  with '-e name.c' type events in tools such as 'record' and 'trace',
  with headers for common constructs and an examples directory that
  will get populated as we add more such helpers and the 'perf bpf'
  branch that Jiri Olsa has been working on (Arnaldo Carvalho de Melo)

- Handle uncore event aliases in small groups properly (Kan Liang)

- Use the "_stest" symbol to identify the kernel map when loading kcore (Adrian 
Hunter)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (1):
  perf tools: Use the "_stest" symbol to identify the kernel map when 
loading kcore

Arnaldo Carvalho de Melo (7):
  perf tests parse-events: Add intel_pt parse test
  perf llvm-utils: Add bpf include path to clang command line
  perf bpf: Add 'examples' directories
  perf bpf: Add bpf.h to be used in eBPF proggies
  perf bpf: Add kprobe example to catch 5s naps
  perf bpf: Add license(NAME) helper
  perf bpf: Add probe() helper to reduce kprobes boilerplate

Kan Liang (1):
  perf parse-events: Handle uncore event aliases in small groups properly

Ravi Bangoria (1):
  perf buildid-cache: Warn --purge-all failures

YueHaibing (1):
  perf bpf: Fix NULL return handling in bpf__prepare_load()

 tools/perf/Makefile.config |  14 
 tools/perf/Makefile.perf   |   8 +++
 tools/perf/builtin-buildid-cache.c |   8 ++-
 tools/perf/examples/bpf/5sec.c |  49 ++
 tools/perf/examples/bpf/empty.c|   3 +
 tools/perf/include/bpf/bpf.h   |  13 
 tools/perf/tests/parse-events.c|  13 
 tools/perf/util/Build  |   2 +
 tools/perf/util/bpf-loader.c   |   6 +-
 tools/perf/util/evsel.h|   1 +
 tools/perf/util/llvm-utils.c   |  19 --
 tools/perf/util/parse-events.c | 130 -
 tools/perf/util/parse-events.h |   7 +-
 tools/perf/util/parse-events.y |   8 +--
 tools/perf/util/symbol.c   |  16 ++---
 15 files changed, 270 insertions(+), 27 deletions(-)
 create mode 100644 tools/perf/examples/bpf/5sec.c
 create mode 100644 tools/perf/examples/bpf/empty.c
 create mode 100644 tools/perf/include/bpf/bpf.h

Test results:

The first ones are container (docker) based builds of tools/perf with
and without libelf support.  Where clang is available, it is also used
to build perf with/without libelf, and building with LIBCLANGLLVM=1
(built-in clang) with gcc and clang when clang and its devel libraries
are installed.

The objtool and samples/bpf/ builds are disabled now that I'm switching from
using the sources in a local volume to fetching them from a http server to
build it inside the container, to make it easier to build in a container 
cluster.
Those will come back later.

Several are cross builds, the ones with -x-ARCH and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested 

[GIT PULL 00/11] perf/core improvements and fixes

2018-05-16 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, more to come as I go thru Adrian's x86
PTI series and the C++ support improvements to 'perf probe', from
Holger,

Best Regards,

- Arnaldo

Test results at the end of this message, as usual.
  
The following changes since commit 291c161f6c65530092903fbea58eb07a62b220ba:

  Merge remote-tracking branch 'tip/perf/urgent' into perf/core (2018-05-15 
10:30:17 -0300)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-4.18-20180516

for you to fetch changes up to 7a36a287de9fbb1ba906e70573d3f2315f7fd609:

  perf bpf: Fix NULL return handling in bpf__prepare_load() (2018-05-16 
10:01:55 -0300)


perf/core improvements and fixes:

- Add '-e intel_pt//u' test to the 'parse-events' 'perf test' entry,
  to help avoiding regressions in the events parser such as one
  that caused a revert in v4.17-rc (Arnaldo Carvalho de Melo)

- Fix NULL return handling in bpf__prepare_load() (YueHaibing)

- Warn about 'perf buildid-cache --purge-all' failures (Ravi Bangoria)

- Add infrastructure to help in writing eBPF C programs to be used
  with '-e name.c' type events in tools such as 'record' and 'trace',
  with headers for common constructs and an examples directory that
  will get populated as we add more such helpers and the 'perf bpf'
  branch that Jiri Olsa has been working on (Arnaldo Carvalho de Melo)

- Handle uncore event aliases in small groups properly (Kan Liang)

- Use the "_stest" symbol to identify the kernel map when loading kcore (Adrian 
Hunter)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (1):
  perf tools: Use the "_stest" symbol to identify the kernel map when 
loading kcore

Arnaldo Carvalho de Melo (7):
  perf tests parse-events: Add intel_pt parse test
  perf llvm-utils: Add bpf include path to clang command line
  perf bpf: Add 'examples' directories
  perf bpf: Add bpf.h to be used in eBPF proggies
  perf bpf: Add kprobe example to catch 5s naps
  perf bpf: Add license(NAME) helper
  perf bpf: Add probe() helper to reduce kprobes boilerplate

Kan Liang (1):
  perf parse-events: Handle uncore event aliases in small groups properly

Ravi Bangoria (1):
  perf buildid-cache: Warn --purge-all failures

YueHaibing (1):
  perf bpf: Fix NULL return handling in bpf__prepare_load()

 tools/perf/Makefile.config |  14 
 tools/perf/Makefile.perf   |   8 +++
 tools/perf/builtin-buildid-cache.c |   8 ++-
 tools/perf/examples/bpf/5sec.c |  49 ++
 tools/perf/examples/bpf/empty.c|   3 +
 tools/perf/include/bpf/bpf.h   |  13 
 tools/perf/tests/parse-events.c|  13 
 tools/perf/util/Build  |   2 +
 tools/perf/util/bpf-loader.c   |   6 +-
 tools/perf/util/evsel.h|   1 +
 tools/perf/util/llvm-utils.c   |  19 --
 tools/perf/util/parse-events.c | 130 -
 tools/perf/util/parse-events.h |   7 +-
 tools/perf/util/parse-events.y |   8 +--
 tools/perf/util/symbol.c   |  16 ++---
 15 files changed, 270 insertions(+), 27 deletions(-)
 create mode 100644 tools/perf/examples/bpf/5sec.c
 create mode 100644 tools/perf/examples/bpf/empty.c
 create mode 100644 tools/perf/include/bpf/bpf.h

Test results:

The first ones are container (docker) based builds of tools/perf with
and without libelf support.  Where clang is available, it is also used
to build perf with/without libelf, and building with LIBCLANGLLVM=1
(built-in clang) with gcc and clang when clang and its devel libraries
are installed.

The objtool and samples/bpf/ builds are disabled now that I'm switching from
using the sources in a local volume to fetching them from a http server to
build it inside the container, to make it easier to build in a container 
cluster.
Those will come back later.

Several are cross builds, the ones with -x-ARCH and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested in helping 

[GIT PULL 00/11] perf/core improvements and fixes

2017-11-24 Thread Arnaldo Carvalho de Melo
Hi Ingo,

There are some 'perf test' and container failures, but those
don't seem to have been introduced by patches in this series and are
being investigated.

Please consider pulling,

- Arnaldo

Test results at the end of this message, as usual.

The following changes since commit f6751f178eeaf3da8c156d2a2fd7a0feccfab5ae:

  tools/headers: Synchronize kernel x86 UAPI headers (2017-11-18 09:00:46 +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-4.15-20171124

for you to fetch changes up to 92f4ad912df4ac63f53ed0e95a7e0f51ef6eddfe:

  perf intel-pt: Bring instruction decoder files into line with the kernel 
(2017-11-23 15:40:48 -0300)


perf/core improvements and fixes:

- Improve build messages for Intel PT related files that differ
  from the kernel (Adrian Hunter)

- Bring instruction decoder files into line with the kernel (Adrian Hunter)

- Allow computing 'perf stat' style metrics in 'perf script' (Andi Kleen)

- Fix -D output for user metadata events (Arnaldo Carvalho de Melo)

- Add perf tools tip for using 'perf buildid-cache' to add the Node.js
  USDT probes and have them usable via 'perf probe' (Hansuk Hong)

- Follow the upstream kernel UAPI header version 100% (Ingo Molnar)

- Fixup discontiguous/sparse numa nodes in 'perf bench numa' (Satheesh 
Rajendran)

- Fix a 'perf test' case and disable one, both for s390x (Thomas Richter)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (2):
  perf intel-pt: Improve build messages for files that differ from the 
kernel
  perf intel-pt: Bring instruction decoder files into line with the kernel

Andi Kleen (3):
  perf record: Synthesize unit/scale/... in event update
  perf record: Synthesize thread map and cpu map
  perf script: Allow computing 'perf stat' style metrics

Arnaldo Carvalho de Melo (1):
  perf report: Fix -D output for user metadata events

Hansuk Hong (1):
  perf buildid-cache: Document for Node.js USDT

Ingo Molnar (1):
  tools headers: Follow the upstream UAPI header version 100% differ from 
the kernel

Satheesh Rajendran (1):
  perf bench numa: Fixup discontiguous/sparse numa nodes

Thomas Richter (2):
  perf test: Disable test cases 19 and 20 on s390x
  perf test: Fix test 21 for s390x

 tools/perf/Documentation/perf-script.txt | 10 +++-
 tools/perf/Documentation/tips.txt|  1 +
 tools/perf/bench/numa.c  | 56 --
 tools/perf/builtin-record.c  | 24 
 tools/perf/builtin-script.c  | 97 +++-
 tools/perf/builtin-stat.c| 62 ++--
 tools/perf/check-headers.sh  |  1 -
 tools/perf/tests/bp_signal.c |  2 +-
 tools/perf/tests/task-exit.c |  4 ++
 tools/perf/util/header.c | 68 ++
 tools/perf/util/header.h |  5 ++
 tools/perf/util/intel-pt-decoder/Build   | 24 +---
 tools/perf/util/intel-pt-decoder/inat.h  | 10 
 tools/perf/util/metricgroup.c|  4 ++
 tools/perf/util/session.c|  3 +-
 15 files changed, 293 insertions(+), 78 deletions(-)

Test results:

The first ones are container (docker) based builds of tools/perf with and
without libelf support.  Where clang is available, it is also used to build
perf with/without libelf.

The objtool and samples/bpf/ builds are disabled now that I'm switching from
using the sources in a local volume to fetching them from a http server to
build it inside the container, to make it easier to build in a container 
cluster.
Those will come back later.

Several are cross builds, the ones with -x-ARCH and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested in helping having this in place.


  # dm
   1 alpine:3.4: Okgcc (Alpine 5.3.0) 5.3.0
   2 alpine:3.5: Okgcc (Alpine 6.2.1) 6.2.1 20160822
   3 alpine:3.6: 

[GIT PULL 00/11] perf/core improvements and fixes

2017-11-24 Thread Arnaldo Carvalho de Melo
Hi Ingo,

There are some 'perf test' and container failures, but those
don't seem to have been introduced by patches in this series and are
being investigated.

Please consider pulling,

- Arnaldo

Test results at the end of this message, as usual.

The following changes since commit f6751f178eeaf3da8c156d2a2fd7a0feccfab5ae:

  tools/headers: Synchronize kernel x86 UAPI headers (2017-11-18 09:00:46 +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-4.15-20171124

for you to fetch changes up to 92f4ad912df4ac63f53ed0e95a7e0f51ef6eddfe:

  perf intel-pt: Bring instruction decoder files into line with the kernel 
(2017-11-23 15:40:48 -0300)


perf/core improvements and fixes:

- Improve build messages for Intel PT related files that differ
  from the kernel (Adrian Hunter)

- Bring instruction decoder files into line with the kernel (Adrian Hunter)

- Allow computing 'perf stat' style metrics in 'perf script' (Andi Kleen)

- Fix -D output for user metadata events (Arnaldo Carvalho de Melo)

- Add perf tools tip for using 'perf buildid-cache' to add the Node.js
  USDT probes and have them usable via 'perf probe' (Hansuk Hong)

- Follow the upstream kernel UAPI header version 100% (Ingo Molnar)

- Fixup discontiguous/sparse numa nodes in 'perf bench numa' (Satheesh 
Rajendran)

- Fix a 'perf test' case and disable one, both for s390x (Thomas Richter)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (2):
  perf intel-pt: Improve build messages for files that differ from the 
kernel
  perf intel-pt: Bring instruction decoder files into line with the kernel

Andi Kleen (3):
  perf record: Synthesize unit/scale/... in event update
  perf record: Synthesize thread map and cpu map
  perf script: Allow computing 'perf stat' style metrics

Arnaldo Carvalho de Melo (1):
  perf report: Fix -D output for user metadata events

Hansuk Hong (1):
  perf buildid-cache: Document for Node.js USDT

Ingo Molnar (1):
  tools headers: Follow the upstream UAPI header version 100% differ from 
the kernel

Satheesh Rajendran (1):
  perf bench numa: Fixup discontiguous/sparse numa nodes

Thomas Richter (2):
  perf test: Disable test cases 19 and 20 on s390x
  perf test: Fix test 21 for s390x

 tools/perf/Documentation/perf-script.txt | 10 +++-
 tools/perf/Documentation/tips.txt|  1 +
 tools/perf/bench/numa.c  | 56 --
 tools/perf/builtin-record.c  | 24 
 tools/perf/builtin-script.c  | 97 +++-
 tools/perf/builtin-stat.c| 62 ++--
 tools/perf/check-headers.sh  |  1 -
 tools/perf/tests/bp_signal.c |  2 +-
 tools/perf/tests/task-exit.c |  4 ++
 tools/perf/util/header.c | 68 ++
 tools/perf/util/header.h |  5 ++
 tools/perf/util/intel-pt-decoder/Build   | 24 +---
 tools/perf/util/intel-pt-decoder/inat.h  | 10 
 tools/perf/util/metricgroup.c|  4 ++
 tools/perf/util/session.c|  3 +-
 15 files changed, 293 insertions(+), 78 deletions(-)

Test results:

The first ones are container (docker) based builds of tools/perf with and
without libelf support.  Where clang is available, it is also used to build
perf with/without libelf.

The objtool and samples/bpf/ builds are disabled now that I'm switching from
using the sources in a local volume to fetching them from a http server to
build it inside the container, to make it easier to build in a container 
cluster.
Those will come back later.

Several are cross builds, the ones with -x-ARCH and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested in helping having this in place.


  # dm
   1 alpine:3.4: Okgcc (Alpine 5.3.0) 5.3.0
   2 alpine:3.5: Okgcc (Alpine 6.2.1) 6.2.1 20160822
   3 alpine:3.6: Ok   

Re: [GIT PULL 00/11] perf/core improvements and fixes

2017-03-21 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> Test results at the end of this message, as usual.
> 
> The following changes since commit 61f63e383784bd0ab6529cfc95ddc59c713afcc9:
> 
>   Merge tag 'perf-core-for-mingo-4.12-20170316' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2017-03-16 17:29:23 +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-4.12-20170320
> 
> for you to fetch changes up to affa6c169bae8dc9cb1a2d070c7cd2fe1939c5b8:
> 
>   tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h 
> (2017-03-20 15:02:29 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> Fixes:
> 
> - Fix concat_probe_trace_events() in 'perf probe', it should dereference a
>   pointer, not test its value (Ravi Bangoria)
> 
> User visible:
> 
> - Handle partial AUX records, checking if 'kvm_intel.ko' is loaded and
>   if its 'vmm_exclusive' parameter is set to 0, suggesting tweaking
>   it to reduce gaps (Alexander Shishkin)
> 
> Infrastructure:
> 
> - Sync the kvm.h, cpufeatures.h and perf_event.h tools/ headers copies
>   with the kernel (Arnaldo Carvalho de Melo, Alexander Shishkin)
> 
> - 'perf lock' subcommands should include common options, using
>   OPT_PARENT() (Changbin Du)
> 
> - Ditto for 'perf timechart' (Arnaldo Carvalho de Melo)
> 
> Documentation:
> 
>   Correct 'perf stat --no-aggr' description (Ravi Bangoria)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Alexander Shishkin (3):
>   tools lib api fs: Introduce sysfs__read_bool
>   tools include: Sync {,tools/}include/uapi/linux/perf_event.h
>   perf tools: Handle partial AUX records and print a warning
> 
> Arnaldo Carvalho de Melo (5):
>   perf lock: Make 'f' part of the common 'lock_options'
>   perf timechart: Use OPT_PARENT for common options
>   tools headers: Sync {tools/,}arch/x86/include/asm/cpufeatures.h
>   tools headers: Sync {tools/,}arch/arm{64}/include/uapi/asm/kvm.h
>   tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h
> 
> Changbin Du (1):
>   perf lock: Subcommands should include common options
> 
> Ravi Bangoria (2):
>   perf stat: Correct --no-aggr description
>   perf probe: Fix concat_probe_trace_events
> 
>  tools/arch/arm/include/uapi/asm/kvm.h | 13 +
>  tools/arch/arm64/include/uapi/asm/kvm.h   | 13 +
>  tools/arch/powerpc/include/uapi/asm/kvm.h | 22 ++
>  tools/arch/x86/include/asm/cpufeatures.h  |  3 ++-
>  tools/include/uapi/linux/perf_event.h |  1 +
>  tools/lib/api/fs/fs.c | 29 +
>  tools/lib/api/fs/fs.h |  1 +
>  tools/perf/Documentation/perf-stat.txt|  3 +--
>  tools/perf/builtin-lock.c | 22 --
>  tools/perf/builtin-timechart.c| 16 +++-
>  tools/perf/util/event.c   |  5 +++--
>  tools/perf/util/event.h   |  1 +
>  tools/perf/util/probe-event.c |  2 +-
>  tools/perf/util/session.c | 27 ---
>  14 files changed, 130 insertions(+), 28 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2017-03-21 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> Test results at the end of this message, as usual.
> 
> The following changes since commit 61f63e383784bd0ab6529cfc95ddc59c713afcc9:
> 
>   Merge tag 'perf-core-for-mingo-4.12-20170316' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2017-03-16 17:29:23 +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-4.12-20170320
> 
> for you to fetch changes up to affa6c169bae8dc9cb1a2d070c7cd2fe1939c5b8:
> 
>   tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h 
> (2017-03-20 15:02:29 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> Fixes:
> 
> - Fix concat_probe_trace_events() in 'perf probe', it should dereference a
>   pointer, not test its value (Ravi Bangoria)
> 
> User visible:
> 
> - Handle partial AUX records, checking if 'kvm_intel.ko' is loaded and
>   if its 'vmm_exclusive' parameter is set to 0, suggesting tweaking
>   it to reduce gaps (Alexander Shishkin)
> 
> Infrastructure:
> 
> - Sync the kvm.h, cpufeatures.h and perf_event.h tools/ headers copies
>   with the kernel (Arnaldo Carvalho de Melo, Alexander Shishkin)
> 
> - 'perf lock' subcommands should include common options, using
>   OPT_PARENT() (Changbin Du)
> 
> - Ditto for 'perf timechart' (Arnaldo Carvalho de Melo)
> 
> Documentation:
> 
>   Correct 'perf stat --no-aggr' description (Ravi Bangoria)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Alexander Shishkin (3):
>   tools lib api fs: Introduce sysfs__read_bool
>   tools include: Sync {,tools/}include/uapi/linux/perf_event.h
>   perf tools: Handle partial AUX records and print a warning
> 
> Arnaldo Carvalho de Melo (5):
>   perf lock: Make 'f' part of the common 'lock_options'
>   perf timechart: Use OPT_PARENT for common options
>   tools headers: Sync {tools/,}arch/x86/include/asm/cpufeatures.h
>   tools headers: Sync {tools/,}arch/arm{64}/include/uapi/asm/kvm.h
>   tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h
> 
> Changbin Du (1):
>   perf lock: Subcommands should include common options
> 
> Ravi Bangoria (2):
>   perf stat: Correct --no-aggr description
>   perf probe: Fix concat_probe_trace_events
> 
>  tools/arch/arm/include/uapi/asm/kvm.h | 13 +
>  tools/arch/arm64/include/uapi/asm/kvm.h   | 13 +
>  tools/arch/powerpc/include/uapi/asm/kvm.h | 22 ++
>  tools/arch/x86/include/asm/cpufeatures.h  |  3 ++-
>  tools/include/uapi/linux/perf_event.h |  1 +
>  tools/lib/api/fs/fs.c | 29 +
>  tools/lib/api/fs/fs.h |  1 +
>  tools/perf/Documentation/perf-stat.txt|  3 +--
>  tools/perf/builtin-lock.c | 22 --
>  tools/perf/builtin-timechart.c| 16 +++-
>  tools/perf/util/event.c   |  5 +++--
>  tools/perf/util/event.h   |  1 +
>  tools/perf/util/probe-event.c |  2 +-
>  tools/perf/util/session.c | 27 ---
>  14 files changed, 130 insertions(+), 28 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2017-03-20 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

Test results at the end of this message, as usual.

The following changes since commit 61f63e383784bd0ab6529cfc95ddc59c713afcc9:

  Merge tag 'perf-core-for-mingo-4.12-20170316' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2017-03-16 17:29:23 +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-4.12-20170320

for you to fetch changes up to affa6c169bae8dc9cb1a2d070c7cd2fe1939c5b8:

  tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h (2017-03-20 
15:02:29 -0300)


perf/core improvements and fixes:

Fixes:

- Fix concat_probe_trace_events() in 'perf probe', it should dereference a
  pointer, not test its value (Ravi Bangoria)

User visible:

- Handle partial AUX records, checking if 'kvm_intel.ko' is loaded and
  if its 'vmm_exclusive' parameter is set to 0, suggesting tweaking
  it to reduce gaps (Alexander Shishkin)

Infrastructure:

- Sync the kvm.h, cpufeatures.h and perf_event.h tools/ headers copies
  with the kernel (Arnaldo Carvalho de Melo, Alexander Shishkin)

- 'perf lock' subcommands should include common options, using
  OPT_PARENT() (Changbin Du)

- Ditto for 'perf timechart' (Arnaldo Carvalho de Melo)

Documentation:

  Correct 'perf stat --no-aggr' description (Ravi Bangoria)

Signed-off-by: Arnaldo Carvalho de Melo 


Alexander Shishkin (3):
  tools lib api fs: Introduce sysfs__read_bool
  tools include: Sync {,tools/}include/uapi/linux/perf_event.h
  perf tools: Handle partial AUX records and print a warning

Arnaldo Carvalho de Melo (5):
  perf lock: Make 'f' part of the common 'lock_options'
  perf timechart: Use OPT_PARENT for common options
  tools headers: Sync {tools/,}arch/x86/include/asm/cpufeatures.h
  tools headers: Sync {tools/,}arch/arm{64}/include/uapi/asm/kvm.h
  tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h

Changbin Du (1):
  perf lock: Subcommands should include common options

Ravi Bangoria (2):
  perf stat: Correct --no-aggr description
  perf probe: Fix concat_probe_trace_events

 tools/arch/arm/include/uapi/asm/kvm.h | 13 +
 tools/arch/arm64/include/uapi/asm/kvm.h   | 13 +
 tools/arch/powerpc/include/uapi/asm/kvm.h | 22 ++
 tools/arch/x86/include/asm/cpufeatures.h  |  3 ++-
 tools/include/uapi/linux/perf_event.h |  1 +
 tools/lib/api/fs/fs.c | 29 +
 tools/lib/api/fs/fs.h |  1 +
 tools/perf/Documentation/perf-stat.txt|  3 +--
 tools/perf/builtin-lock.c | 22 --
 tools/perf/builtin-timechart.c| 16 +++-
 tools/perf/util/event.c   |  5 +++--
 tools/perf/util/event.h   |  1 +
 tools/perf/util/probe-event.c |  2 +-
 tools/perf/util/session.c | 27 ---
 14 files changed, 130 insertions(+), 28 deletions(-)

Test results:

The first ones are container (docker) based builds of tools/perf with and
without libelf support, objtool where it is supported and samples/bpf/, ditto.
Where clang is available, it is also used to build perf with/without libelf.

Several are cross builds, the ones with -x-ARCH, and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested in helping having this in place.

  # dm
   1 alpine:3.4: Ok
   2 alpine:3.5: Ok
   3 alpine:edge: Ok
   4 android-ndk:r12b-arm: Ok
   5 archlinux:latest: Ok
   6 centos:5: Ok
   7 centos:6: Ok
   8 centos:7: Ok
   9 debian:7: Ok
  10 debian:8: Ok
  11 debian:experimental: Ok
  12 debian:experimental-x-arm64: Ok
  13 debian:experimental-x-mips: Ok
  14 debian:experimental-x-mips64: Ok
  15 debian:experimental-x-mipsel: Ok
  16 fedora:20: Ok
  17 fedora:21: Ok
  18 fedora:22: Ok
  19 fedora:23: Ok
  20 fedora:24: Ok
  21 fedora:24-x-ARC-uClibc: Ok
  22 

[GIT PULL 00/11] perf/core improvements and fixes

2017-03-20 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

Test results at the end of this message, as usual.

The following changes since commit 61f63e383784bd0ab6529cfc95ddc59c713afcc9:

  Merge tag 'perf-core-for-mingo-4.12-20170316' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2017-03-16 17:29:23 +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-4.12-20170320

for you to fetch changes up to affa6c169bae8dc9cb1a2d070c7cd2fe1939c5b8:

  tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h (2017-03-20 
15:02:29 -0300)


perf/core improvements and fixes:

Fixes:

- Fix concat_probe_trace_events() in 'perf probe', it should dereference a
  pointer, not test its value (Ravi Bangoria)

User visible:

- Handle partial AUX records, checking if 'kvm_intel.ko' is loaded and
  if its 'vmm_exclusive' parameter is set to 0, suggesting tweaking
  it to reduce gaps (Alexander Shishkin)

Infrastructure:

- Sync the kvm.h, cpufeatures.h and perf_event.h tools/ headers copies
  with the kernel (Arnaldo Carvalho de Melo, Alexander Shishkin)

- 'perf lock' subcommands should include common options, using
  OPT_PARENT() (Changbin Du)

- Ditto for 'perf timechart' (Arnaldo Carvalho de Melo)

Documentation:

  Correct 'perf stat --no-aggr' description (Ravi Bangoria)

Signed-off-by: Arnaldo Carvalho de Melo 


Alexander Shishkin (3):
  tools lib api fs: Introduce sysfs__read_bool
  tools include: Sync {,tools/}include/uapi/linux/perf_event.h
  perf tools: Handle partial AUX records and print a warning

Arnaldo Carvalho de Melo (5):
  perf lock: Make 'f' part of the common 'lock_options'
  perf timechart: Use OPT_PARENT for common options
  tools headers: Sync {tools/,}arch/x86/include/asm/cpufeatures.h
  tools headers: Sync {tools/,}arch/arm{64}/include/uapi/asm/kvm.h
  tools headers: Sync {tools/,}arch/powerpc/include/uapi/asm/kvm.h

Changbin Du (1):
  perf lock: Subcommands should include common options

Ravi Bangoria (2):
  perf stat: Correct --no-aggr description
  perf probe: Fix concat_probe_trace_events

 tools/arch/arm/include/uapi/asm/kvm.h | 13 +
 tools/arch/arm64/include/uapi/asm/kvm.h   | 13 +
 tools/arch/powerpc/include/uapi/asm/kvm.h | 22 ++
 tools/arch/x86/include/asm/cpufeatures.h  |  3 ++-
 tools/include/uapi/linux/perf_event.h |  1 +
 tools/lib/api/fs/fs.c | 29 +
 tools/lib/api/fs/fs.h |  1 +
 tools/perf/Documentation/perf-stat.txt|  3 +--
 tools/perf/builtin-lock.c | 22 --
 tools/perf/builtin-timechart.c| 16 +++-
 tools/perf/util/event.c   |  5 +++--
 tools/perf/util/event.h   |  1 +
 tools/perf/util/probe-event.c |  2 +-
 tools/perf/util/session.c | 27 ---
 14 files changed, 130 insertions(+), 28 deletions(-)

Test results:

The first ones are container (docker) based builds of tools/perf with and
without libelf support, objtool where it is supported and samples/bpf/, ditto.
Where clang is available, it is also used to build perf with/without libelf.

Several are cross builds, the ones with -x-ARCH, and the android one, and those
may not have all the features built, due to lack of multi-arch devel packages,
available and being used so far on just a few, like
debian:experimental-x-{arm64,mipsel}.

The 'perf test' one will perform a variety of tests exercising
tools/perf/util/, tools/lib/{bpf,traceevent,etc}, as well as run perf commands
with a variety of command line event specifications to then intercept the
sys_perf_event syscall to check that the perf_event_attr fields are set up as
expected, among a variety of other unit tests.

Then there is the 'make -C tools/perf build-test' ones, that build tools/perf/
with a variety of feature sets, exercising the build with an incomplete set of
features as well as with a complete one. It is planned to have it run on each
of the containers mentioned above, using some container orchestration
infrastructure. Get in contact if interested in helping having this in place.

  # dm
   1 alpine:3.4: Ok
   2 alpine:3.5: Ok
   3 alpine:edge: Ok
   4 android-ndk:r12b-arm: Ok
   5 archlinux:latest: Ok
   6 centos:5: Ok
   7 centos:6: Ok
   8 centos:7: Ok
   9 debian:7: Ok
  10 debian:8: Ok
  11 debian:experimental: Ok
  12 debian:experimental-x-arm64: Ok
  13 debian:experimental-x-mips: Ok
  14 debian:experimental-x-mips64: Ok
  15 debian:experimental-x-mipsel: Ok
  16 fedora:20: Ok
  17 fedora:21: Ok
  18 fedora:22: Ok
  19 fedora:23: Ok
  20 fedora:24: Ok
  21 fedora:24-x-ARC-uClibc: Ok
  22 fedora:25: Ok
  23 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-25 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> Build news:
> 
> Now the 16.04-x-armhf and 16.04-x-powerpc64 cross build docker images have 
> libz
> and libelf cross built from sources, so that we can cover cross build testing
> more of the codebase.
> 
> In those images objtool is not built, as checking powerpc and arm binaries is
> not supported, so trying to build it will end up in linker errors.
> 
> Build stats:
> 
>   # perf stat dm
>   alpine:3.4: Ok
>   android-ndk:r12b: Ok
>   centos:5: Ok
>   centos:6: Ok
>   centos:7: Ok
>   debian:7: Ok
>   debian:8: Ok
>   debian:experimental: Ok
>   fedora:21: Ok
>   fedora:22: Ok
>   fedora:23: Ok
>   fedora:24: Ok
>   fedora:rawhide: Ok
>   mageia:5: Ok
>   opensuse:13.2: Ok
>   opensuse:42.1: Ok
>   ubuntu:14.04.4: Ok
>   ubuntu:15.10: Ok
>   ubuntu:16.04: Ok
>   ubuntu:16.04-x-armhf: Ok
>   ubuntu:16.04-x-powerpc64: Ok
> 
>Performance counter stats for 'dm':
> 
>1940.152756  task-clock (msec) #0.002 CPUs utilized
>   
> 76,985  context-switches  #0.040 M/sec
>   
>  9,189  cpu-migrations#0.005 M/sec
>   
> 56,641  page-faults   #0.029 M/sec
>   
>  5,631,722,319  cycles#2.903 GHz  
>   
>  5,382,953,696  instructions  #0.96  insn per cycle   
>   
>998,621,403  branches  #  514.713 M/sec
>   
> 17,532,943  branch-misses #1.76% of all branches  
>   
> 
>  817.896638265 seconds time elapsed
> 
>   # 
> 
> The following changes since commit 5048c2af078d5976895d521262a8802ea791f3b0:
> 
>   Merge tag 'perf-core-for-mingo-20160718' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-07-19 08:44:38 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160725
> 
> for you to fetch changes up to 4e3ba8af21b00b91b451e7c4a9fa3a63b025dd56:
> 
>   Revert "perf tools: event.h needs asm/perf_regs.h" (2016-07-25 11:58:56 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - Add AVX-512 support to the instruction decoder, used by Intel PT,
>   fix vcvtph2ps instruction decoding (Adrian Hunter)
> 
> - Make objtool and vdso2c use the right arch header search path
>   (Stephen Rothwell, Josh Poimboeuf, Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (4):
>   x86/insn: perf tools: Fix vcvtph2ps instruction decoding
>   x86/insn: Add AVX-512 support to the instruction decoder
>   perf tools: Add AVX-512 support to the instruction decoder used by 
> Intel PT
>   perf tools: Add AVX-512 instructions to the new instructions test
> 
> Arnaldo Carvalho de Melo (5):
>   perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf
>   tools build: Add HOSTARCH Makefile variable
>   objtool: Use tools/scripts/Makefile.arch to get ARCH and HOSTARCH
>   objtool: Always use host headers
>   Revert "perf tools: event.h needs asm/perf_regs.h"
> 
> Josh Poimboeuf (1):
>   tools build: Fix objtool build with ARCH=x86_64
> 
> Stephen Rothwell (1):
>   x86: Make the vdso2c compiler use the host architecture headers
> 
>  arch/x86/entry/vdso/Makefile   |2 +-
>  arch/x86/include/asm/inat.h|   17 +-
>  arch/x86/include/asm/insn.h|   12 +-
>  arch/x86/lib/insn.c|   18 +-
>  arch/x86/lib/x86-opcode-map.txt|  263 ++-
>  arch/x86/tools/gen-insn-attr-x86.awk   |   11 +-
>  tools/objtool/Build|2 +-
>  tools/objtool/Makefile |8 +-
>  tools/perf/arch/x86/tests/insn-x86-dat-32.c| 1018 ++-
>  tools/perf/arch/x86/tests/insn-x86-dat-64.c|  940 +-
>  tools/perf/arch/x86/tests/insn-x86-dat-src.c   | 1789 
> 
>  tools/perf/tests/kmod-path.c   |1 +
>  tools/perf/util/event.h|1 -
>  .../util/intel-pt-decoder/gen-insn-attr-x86.awk|   11 +-
>  tools/perf/util/intel-pt-decoder/inat.h|   17 +-
>  tools/perf/util/intel-pt-decoder/insn.c|   18 +-
>  tools/perf/util/intel-pt-decoder/insn.h|   12 +-
>  .../perf/util/intel-pt-decoder/x86-opcode-map.txt  |  263 ++-
>  tools/scripts/Makefile.arch|   41 +-
>  19 files changed, 4221 insertions(+), 223 deletions(-)

Pulled, thanks a lot Arnaldo!

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-25 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> Build news:
> 
> Now the 16.04-x-armhf and 16.04-x-powerpc64 cross build docker images have 
> libz
> and libelf cross built from sources, so that we can cover cross build testing
> more of the codebase.
> 
> In those images objtool is not built, as checking powerpc and arm binaries is
> not supported, so trying to build it will end up in linker errors.
> 
> Build stats:
> 
>   # perf stat dm
>   alpine:3.4: Ok
>   android-ndk:r12b: Ok
>   centos:5: Ok
>   centos:6: Ok
>   centos:7: Ok
>   debian:7: Ok
>   debian:8: Ok
>   debian:experimental: Ok
>   fedora:21: Ok
>   fedora:22: Ok
>   fedora:23: Ok
>   fedora:24: Ok
>   fedora:rawhide: Ok
>   mageia:5: Ok
>   opensuse:13.2: Ok
>   opensuse:42.1: Ok
>   ubuntu:14.04.4: Ok
>   ubuntu:15.10: Ok
>   ubuntu:16.04: Ok
>   ubuntu:16.04-x-armhf: Ok
>   ubuntu:16.04-x-powerpc64: Ok
> 
>Performance counter stats for 'dm':
> 
>1940.152756  task-clock (msec) #0.002 CPUs utilized
>   
> 76,985  context-switches  #0.040 M/sec
>   
>  9,189  cpu-migrations#0.005 M/sec
>   
> 56,641  page-faults   #0.029 M/sec
>   
>  5,631,722,319  cycles#2.903 GHz  
>   
>  5,382,953,696  instructions  #0.96  insn per cycle   
>   
>998,621,403  branches  #  514.713 M/sec
>   
> 17,532,943  branch-misses #1.76% of all branches  
>   
> 
>  817.896638265 seconds time elapsed
> 
>   # 
> 
> The following changes since commit 5048c2af078d5976895d521262a8802ea791f3b0:
> 
>   Merge tag 'perf-core-for-mingo-20160718' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-07-19 08:44:38 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160725
> 
> for you to fetch changes up to 4e3ba8af21b00b91b451e7c4a9fa3a63b025dd56:
> 
>   Revert "perf tools: event.h needs asm/perf_regs.h" (2016-07-25 11:58:56 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - Add AVX-512 support to the instruction decoder, used by Intel PT,
>   fix vcvtph2ps instruction decoding (Adrian Hunter)
> 
> - Make objtool and vdso2c use the right arch header search path
>   (Stephen Rothwell, Josh Poimboeuf, Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (4):
>   x86/insn: perf tools: Fix vcvtph2ps instruction decoding
>   x86/insn: Add AVX-512 support to the instruction decoder
>   perf tools: Add AVX-512 support to the instruction decoder used by 
> Intel PT
>   perf tools: Add AVX-512 instructions to the new instructions test
> 
> Arnaldo Carvalho de Melo (5):
>   perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf
>   tools build: Add HOSTARCH Makefile variable
>   objtool: Use tools/scripts/Makefile.arch to get ARCH and HOSTARCH
>   objtool: Always use host headers
>   Revert "perf tools: event.h needs asm/perf_regs.h"
> 
> Josh Poimboeuf (1):
>   tools build: Fix objtool build with ARCH=x86_64
> 
> Stephen Rothwell (1):
>   x86: Make the vdso2c compiler use the host architecture headers
> 
>  arch/x86/entry/vdso/Makefile   |2 +-
>  arch/x86/include/asm/inat.h|   17 +-
>  arch/x86/include/asm/insn.h|   12 +-
>  arch/x86/lib/insn.c|   18 +-
>  arch/x86/lib/x86-opcode-map.txt|  263 ++-
>  arch/x86/tools/gen-insn-attr-x86.awk   |   11 +-
>  tools/objtool/Build|2 +-
>  tools/objtool/Makefile |8 +-
>  tools/perf/arch/x86/tests/insn-x86-dat-32.c| 1018 ++-
>  tools/perf/arch/x86/tests/insn-x86-dat-64.c|  940 +-
>  tools/perf/arch/x86/tests/insn-x86-dat-src.c   | 1789 
> 
>  tools/perf/tests/kmod-path.c   |1 +
>  tools/perf/util/event.h|1 -
>  .../util/intel-pt-decoder/gen-insn-attr-x86.awk|   11 +-
>  tools/perf/util/intel-pt-decoder/inat.h|   17 +-
>  tools/perf/util/intel-pt-decoder/insn.c|   18 +-
>  tools/perf/util/intel-pt-decoder/insn.h|   12 +-
>  .../perf/util/intel-pt-decoder/x86-opcode-map.txt  |  263 ++-
>  tools/scripts/Makefile.arch|   41 +-
>  19 files changed, 4221 insertions(+), 223 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-07-25 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

Build news:

Now the 16.04-x-armhf and 16.04-x-powerpc64 cross build docker images have libz
and libelf cross built from sources, so that we can cover cross build testing
more of the codebase.

In those images objtool is not built, as checking powerpc and arm binaries is
not supported, so trying to build it will end up in linker errors.

Build stats:

  # perf stat dm
  alpine:3.4: Ok
  android-ndk:r12b: Ok
  centos:5: Ok
  centos:6: Ok
  centos:7: Ok
  debian:7: Ok
  debian:8: Ok
  debian:experimental: Ok
  fedora:21: Ok
  fedora:22: Ok
  fedora:23: Ok
  fedora:24: Ok
  fedora:rawhide: Ok
  mageia:5: Ok
  opensuse:13.2: Ok
  opensuse:42.1: Ok
  ubuntu:14.04.4: Ok
  ubuntu:15.10: Ok
  ubuntu:16.04: Ok
  ubuntu:16.04-x-armhf: Ok
  ubuntu:16.04-x-powerpc64: Ok

   Performance counter stats for 'dm':

   1940.152756  task-clock (msec) #0.002 CPUs utilized  

76,985  context-switches  #0.040 M/sec  

 9,189  cpu-migrations#0.005 M/sec  

56,641  page-faults   #0.029 M/sec  

 5,631,722,319  cycles#2.903 GHz

 5,382,953,696  instructions  #0.96  insn per cycle 

   998,621,403  branches  #  514.713 M/sec  

17,532,943  branch-misses #1.76% of all branches


 817.896638265 seconds time elapsed

  # 

The following changes since commit 5048c2af078d5976895d521262a8802ea791f3b0:

  Merge tag 'perf-core-for-mingo-20160718' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-07-19 08:44:38 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160725

for you to fetch changes up to 4e3ba8af21b00b91b451e7c4a9fa3a63b025dd56:

  Revert "perf tools: event.h needs asm/perf_regs.h" (2016-07-25 11:58:56 -0300)


perf/core improvements and fixes:

- Add AVX-512 support to the instruction decoder, used by Intel PT,
  fix vcvtph2ps instruction decoding (Adrian Hunter)

- Make objtool and vdso2c use the right arch header search path
  (Stephen Rothwell, Josh Poimboeuf, Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (4):
  x86/insn: perf tools: Fix vcvtph2ps instruction decoding
  x86/insn: Add AVX-512 support to the instruction decoder
  perf tools: Add AVX-512 support to the instruction decoder used by Intel 
PT
  perf tools: Add AVX-512 instructions to the new instructions test

Arnaldo Carvalho de Melo (5):
  perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf
  tools build: Add HOSTARCH Makefile variable
  objtool: Use tools/scripts/Makefile.arch to get ARCH and HOSTARCH
  objtool: Always use host headers
  Revert "perf tools: event.h needs asm/perf_regs.h"

Josh Poimboeuf (1):
  tools build: Fix objtool build with ARCH=x86_64

Stephen Rothwell (1):
  x86: Make the vdso2c compiler use the host architecture headers

 arch/x86/entry/vdso/Makefile   |2 +-
 arch/x86/include/asm/inat.h|   17 +-
 arch/x86/include/asm/insn.h|   12 +-
 arch/x86/lib/insn.c|   18 +-
 arch/x86/lib/x86-opcode-map.txt|  263 ++-
 arch/x86/tools/gen-insn-attr-x86.awk   |   11 +-
 tools/objtool/Build|2 +-
 tools/objtool/Makefile |8 +-
 tools/perf/arch/x86/tests/insn-x86-dat-32.c| 1018 ++-
 tools/perf/arch/x86/tests/insn-x86-dat-64.c|  940 +-
 tools/perf/arch/x86/tests/insn-x86-dat-src.c   | 1789 
 tools/perf/tests/kmod-path.c   |1 +
 tools/perf/util/event.h|1 -
 .../util/intel-pt-decoder/gen-insn-attr-x86.awk|   11 +-
 tools/perf/util/intel-pt-decoder/inat.h|   17 +-
 tools/perf/util/intel-pt-decoder/insn.c|   18 +-
 tools/perf/util/intel-pt-decoder/insn.h|   12 +-
 .../perf/util/intel-pt-decoder/x86-opcode-map.txt  |  263 ++-
 tools/scripts/Makefile.arch|   41 +-
 19 files changed, 4221 insertions(+), 223 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-07-25 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

Build news:

Now the 16.04-x-armhf and 16.04-x-powerpc64 cross build docker images have libz
and libelf cross built from sources, so that we can cover cross build testing
more of the codebase.

In those images objtool is not built, as checking powerpc and arm binaries is
not supported, so trying to build it will end up in linker errors.

Build stats:

  # perf stat dm
  alpine:3.4: Ok
  android-ndk:r12b: Ok
  centos:5: Ok
  centos:6: Ok
  centos:7: Ok
  debian:7: Ok
  debian:8: Ok
  debian:experimental: Ok
  fedora:21: Ok
  fedora:22: Ok
  fedora:23: Ok
  fedora:24: Ok
  fedora:rawhide: Ok
  mageia:5: Ok
  opensuse:13.2: Ok
  opensuse:42.1: Ok
  ubuntu:14.04.4: Ok
  ubuntu:15.10: Ok
  ubuntu:16.04: Ok
  ubuntu:16.04-x-armhf: Ok
  ubuntu:16.04-x-powerpc64: Ok

   Performance counter stats for 'dm':

   1940.152756  task-clock (msec) #0.002 CPUs utilized  

76,985  context-switches  #0.040 M/sec  

 9,189  cpu-migrations#0.005 M/sec  

56,641  page-faults   #0.029 M/sec  

 5,631,722,319  cycles#2.903 GHz

 5,382,953,696  instructions  #0.96  insn per cycle 

   998,621,403  branches  #  514.713 M/sec  

17,532,943  branch-misses #1.76% of all branches


 817.896638265 seconds time elapsed

  # 

The following changes since commit 5048c2af078d5976895d521262a8802ea791f3b0:

  Merge tag 'perf-core-for-mingo-20160718' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-07-19 08:44:38 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160725

for you to fetch changes up to 4e3ba8af21b00b91b451e7c4a9fa3a63b025dd56:

  Revert "perf tools: event.h needs asm/perf_regs.h" (2016-07-25 11:58:56 -0300)


perf/core improvements and fixes:

- Add AVX-512 support to the instruction decoder, used by Intel PT,
  fix vcvtph2ps instruction decoding (Adrian Hunter)

- Make objtool and vdso2c use the right arch header search path
  (Stephen Rothwell, Josh Poimboeuf, Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (4):
  x86/insn: perf tools: Fix vcvtph2ps instruction decoding
  x86/insn: Add AVX-512 support to the instruction decoder
  perf tools: Add AVX-512 support to the instruction decoder used by Intel 
PT
  perf tools: Add AVX-512 instructions to the new instructions test

Arnaldo Carvalho de Melo (5):
  perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf
  tools build: Add HOSTARCH Makefile variable
  objtool: Use tools/scripts/Makefile.arch to get ARCH and HOSTARCH
  objtool: Always use host headers
  Revert "perf tools: event.h needs asm/perf_regs.h"

Josh Poimboeuf (1):
  tools build: Fix objtool build with ARCH=x86_64

Stephen Rothwell (1):
  x86: Make the vdso2c compiler use the host architecture headers

 arch/x86/entry/vdso/Makefile   |2 +-
 arch/x86/include/asm/inat.h|   17 +-
 arch/x86/include/asm/insn.h|   12 +-
 arch/x86/lib/insn.c|   18 +-
 arch/x86/lib/x86-opcode-map.txt|  263 ++-
 arch/x86/tools/gen-insn-attr-x86.awk   |   11 +-
 tools/objtool/Build|2 +-
 tools/objtool/Makefile |8 +-
 tools/perf/arch/x86/tests/insn-x86-dat-32.c| 1018 ++-
 tools/perf/arch/x86/tests/insn-x86-dat-64.c|  940 +-
 tools/perf/arch/x86/tests/insn-x86-dat-src.c   | 1789 
 tools/perf/tests/kmod-path.c   |1 +
 tools/perf/util/event.h|1 -
 .../util/intel-pt-decoder/gen-insn-attr-x86.awk|   11 +-
 tools/perf/util/intel-pt-decoder/inat.h|   17 +-
 tools/perf/util/intel-pt-decoder/insn.c|   18 +-
 tools/perf/util/intel-pt-decoder/insn.h|   12 +-
 .../perf/util/intel-pt-decoder/x86-opcode-map.txt  |  263 ++-
 tools/scripts/Makefile.arch|   41 +-
 19 files changed, 4221 insertions(+), 223 deletions(-)


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-01 Thread Arnaldo Carvalho de Melo
Em Fri, Jul 01, 2016 at 08:43:15AM +0200, Ingo Molnar escreveu:
> 
> * Arnaldo Carvalho de Melo  wrote:
> > Please consider pulling,

> Pulled, thanks a lot Arnaldo!
 
> Btw., the build started generating:
 
>  Warning: x86_64's syscall_64.tbl differs from kernel

Yeah, I noticed that, that is a compat one (the non-compat ones are
already in sync), which is something 'perf trace' needs to support but
can't right now due to raw_syscalls:sys_{enter,exit} limitations, so not
that important right now, will fix it anyway to remove the warning,

Thanks!

- Arnaldo
 
> Due to:
> 
> triton:~/tip> diff -up ./arch/x86/entry/syscalls/syscall_64.tbl 
> ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl
> --- ./arch/x86/entry/syscalls/syscall_64.tbl2016-06-30 08:33:35.272016286 
> +0200
> +++ ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl 2016-06-30 
> 08:33:36.596018485 +0200
> @@ -374,5 +374,3 @@
>  543x32 io_setupcompat_sys_io_setup
>  544x32 io_submit   compat_sys_io_submit
>  545x32 execveatcompat_sys_execveat/ptregs
> -534x32 preadv2 compat_sys_preadv2
> -535x32 pwritev2compat_sys_pwritev2
> 
>   Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-01 Thread Arnaldo Carvalho de Melo
Em Fri, Jul 01, 2016 at 08:43:15AM +0200, Ingo Molnar escreveu:
> 
> * Arnaldo Carvalho de Melo  wrote:
> > Please consider pulling,

> Pulled, thanks a lot Arnaldo!
 
> Btw., the build started generating:
 
>  Warning: x86_64's syscall_64.tbl differs from kernel

Yeah, I noticed that, that is a compat one (the non-compat ones are
already in sync), which is something 'perf trace' needs to support but
can't right now due to raw_syscalls:sys_{enter,exit} limitations, so not
that important right now, will fix it anyway to remove the warning,

Thanks!

- Arnaldo
 
> Due to:
> 
> triton:~/tip> diff -up ./arch/x86/entry/syscalls/syscall_64.tbl 
> ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl
> --- ./arch/x86/entry/syscalls/syscall_64.tbl2016-06-30 08:33:35.272016286 
> +0200
> +++ ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl 2016-06-30 
> 08:33:36.596018485 +0200
> @@ -374,5 +374,3 @@
>  543x32 io_setupcompat_sys_io_setup
>  544x32 io_submit   compat_sys_io_submit
>  545x32 execveatcompat_sys_execveat/ptregs
> -534x32 preadv2 compat_sys_preadv2
> -535x32 pwritev2compat_sys_pwritev2
> 
>   Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-01 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit d905768c9e1addfa35d9731dbaa9242e8991f6ac:
> 
>   Merge tag 'perf-core-for-mingo-20160628' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-06-29 11:34:41 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160630
> 
> for you to fetch changes up to a24020e6b7cf6eb8b75d8bca6b89870b1cee6ba7:
> 
>   perf tools: Change cpu_map__fprintf output (2016-06-30 18:27:45 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> New features:
> 
> - Allow running 'perf test' entries in the same process, not forking to
>   test each testcase, useful for debugging (Jiri Olsa)
> 
> - Show number of samples in the stdio annotate header (Peter Zijlstra)
> 
> Documentation:
> 
> - Add documentation for perf.data on disk format (Andi Kleen)
> 
> Build fixes:
> 
> - Fix 'perf trace' build on old systems wrt missing SCHED_RESET_ON_FORK and
>   eventfd.h (Arnaldo Carvalho de Melo)
> 
> Infrastructure:
> 
> - Utility function to fetch arch from evsel/evlist (Ravi Bangoria)
> 
> Trivial:
> 
> - Fix spelling mistake: "missmatch" -> "mismatch" in libbpf (Colin Ian King)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf tools: Add documentation for perf.data on disk format
> 
> Arnaldo Carvalho de Melo (2):
>   perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older 
> systems
>   perf trace beauty eventfd: No need to include eventfd.h
> 
> Colin Ian King (1):
>   tools lib bpf: Fix spelling mistake: "missmatch" -> "mismatch"
> 
> Jiri Olsa (4):
>   perf tools: Allow to reset open files counter
>   perf tests: Fix thread map test for -F option
>   perf test: Add -F/--dont-fork option
>   perf tools: Change cpu_map__fprintf output
> 
> Peter Zijlstra (Intel) (2):
>   perf annotate: Simplify header dotted line sizing
>   perf annotate: Add number of samples to the header
> 
> Ravi Bangoria (1):
>   perf evsel: Utility function to fetch arch
> 
>  tools/lib/bpf/libbpf.c |   2 +-
>  tools/lib/bpf/libbpf.h |   2 +-
>  tools/perf/Documentation/perf-test.txt |   4 +
>  tools/perf/Documentation/perf.data-file-format.txt | 442 
> +
>  tools/perf/tests/builtin-test.c|  59 ++-
>  tools/perf/tests/cpumap.c  |  24 ++
>  tools/perf/tests/dso-data.c|   6 +
>  tools/perf/tests/tests.h   |   1 +
>  tools/perf/tests/thread-map.c  |  16 +-
>  tools/perf/trace/beauty/eventfd.c  |   2 -
>  tools/perf/trace/beauty/sched_policy.c |   3 +
>  tools/perf/util/annotate.c |  12 +-
>  tools/perf/util/cpumap.c   |  54 ++-
>  tools/perf/util/cpumap.h   |   1 +
>  tools/perf/util/dso.c  |  22 +-
>  tools/perf/util/dso.h  |   2 +
>  tools/perf/util/event.c|   2 +-
>  tools/perf/util/evsel.c|   7 +
>  tools/perf/util/evsel.h|   2 +
>  19 files changed, 614 insertions(+), 49 deletions(-)
>  create mode 100644 tools/perf/Documentation/perf.data-file-format.txt

Pulled, thanks a lot Arnaldo!

Btw., the build started generating:

 Warning: x86_64's syscall_64.tbl differs from kernel

Due to:

triton:~/tip> diff -up ./arch/x86/entry/syscalls/syscall_64.tbl 
./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl
--- ./arch/x86/entry/syscalls/syscall_64.tbl2016-06-30 08:33:35.272016286 
+0200
+++ ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl 2016-06-30 
08:33:36.596018485 +0200
@@ -374,5 +374,3 @@
 543x32 io_setupcompat_sys_io_setup
 544x32 io_submit   compat_sys_io_submit
 545x32 execveatcompat_sys_execveat/ptregs
-534x32 preadv2 compat_sys_preadv2
-535x32 pwritev2compat_sys_pwritev2

Ingo



Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-07-01 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit d905768c9e1addfa35d9731dbaa9242e8991f6ac:
> 
>   Merge tag 'perf-core-for-mingo-20160628' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-06-29 11:34:41 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160630
> 
> for you to fetch changes up to a24020e6b7cf6eb8b75d8bca6b89870b1cee6ba7:
> 
>   perf tools: Change cpu_map__fprintf output (2016-06-30 18:27:45 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> New features:
> 
> - Allow running 'perf test' entries in the same process, not forking to
>   test each testcase, useful for debugging (Jiri Olsa)
> 
> - Show number of samples in the stdio annotate header (Peter Zijlstra)
> 
> Documentation:
> 
> - Add documentation for perf.data on disk format (Andi Kleen)
> 
> Build fixes:
> 
> - Fix 'perf trace' build on old systems wrt missing SCHED_RESET_ON_FORK and
>   eventfd.h (Arnaldo Carvalho de Melo)
> 
> Infrastructure:
> 
> - Utility function to fetch arch from evsel/evlist (Ravi Bangoria)
> 
> Trivial:
> 
> - Fix spelling mistake: "missmatch" -> "mismatch" in libbpf (Colin Ian King)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf tools: Add documentation for perf.data on disk format
> 
> Arnaldo Carvalho de Melo (2):
>   perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older 
> systems
>   perf trace beauty eventfd: No need to include eventfd.h
> 
> Colin Ian King (1):
>   tools lib bpf: Fix spelling mistake: "missmatch" -> "mismatch"
> 
> Jiri Olsa (4):
>   perf tools: Allow to reset open files counter
>   perf tests: Fix thread map test for -F option
>   perf test: Add -F/--dont-fork option
>   perf tools: Change cpu_map__fprintf output
> 
> Peter Zijlstra (Intel) (2):
>   perf annotate: Simplify header dotted line sizing
>   perf annotate: Add number of samples to the header
> 
> Ravi Bangoria (1):
>   perf evsel: Utility function to fetch arch
> 
>  tools/lib/bpf/libbpf.c |   2 +-
>  tools/lib/bpf/libbpf.h |   2 +-
>  tools/perf/Documentation/perf-test.txt |   4 +
>  tools/perf/Documentation/perf.data-file-format.txt | 442 
> +
>  tools/perf/tests/builtin-test.c|  59 ++-
>  tools/perf/tests/cpumap.c  |  24 ++
>  tools/perf/tests/dso-data.c|   6 +
>  tools/perf/tests/tests.h   |   1 +
>  tools/perf/tests/thread-map.c  |  16 +-
>  tools/perf/trace/beauty/eventfd.c  |   2 -
>  tools/perf/trace/beauty/sched_policy.c |   3 +
>  tools/perf/util/annotate.c |  12 +-
>  tools/perf/util/cpumap.c   |  54 ++-
>  tools/perf/util/cpumap.h   |   1 +
>  tools/perf/util/dso.c  |  22 +-
>  tools/perf/util/dso.h  |   2 +
>  tools/perf/util/event.c|   2 +-
>  tools/perf/util/evsel.c|   7 +
>  tools/perf/util/evsel.h|   2 +
>  19 files changed, 614 insertions(+), 49 deletions(-)
>  create mode 100644 tools/perf/Documentation/perf.data-file-format.txt

Pulled, thanks a lot Arnaldo!

Btw., the build started generating:

 Warning: x86_64's syscall_64.tbl differs from kernel

Due to:

triton:~/tip> diff -up ./arch/x86/entry/syscalls/syscall_64.tbl 
./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl
--- ./arch/x86/entry/syscalls/syscall_64.tbl2016-06-30 08:33:35.272016286 
+0200
+++ ./tools/perf/arch/x86/entry/syscalls/syscall_64.tbl 2016-06-30 
08:33:36.596018485 +0200
@@ -374,5 +374,3 @@
 543x32 io_setupcompat_sys_io_setup
 544x32 io_submit   compat_sys_io_submit
 545x32 execveatcompat_sys_execveat/ptregs
-534x32 preadv2 compat_sys_preadv2
-535x32 pwritev2compat_sys_pwritev2

Ingo



[GIT PULL 00/11] perf/core improvements and fixes

2016-06-30 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d905768c9e1addfa35d9731dbaa9242e8991f6ac:

  Merge tag 'perf-core-for-mingo-20160628' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-06-29 11:34:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160630

for you to fetch changes up to a24020e6b7cf6eb8b75d8bca6b89870b1cee6ba7:

  perf tools: Change cpu_map__fprintf output (2016-06-30 18:27:45 -0300)


perf/core improvements and fixes:

New features:

- Allow running 'perf test' entries in the same process, not forking to
  test each testcase, useful for debugging (Jiri Olsa)

- Show number of samples in the stdio annotate header (Peter Zijlstra)

Documentation:

- Add documentation for perf.data on disk format (Andi Kleen)

Build fixes:

- Fix 'perf trace' build on old systems wrt missing SCHED_RESET_ON_FORK and
  eventfd.h (Arnaldo Carvalho de Melo)

Infrastructure:

- Utility function to fetch arch from evsel/evlist (Ravi Bangoria)

Trivial:

- Fix spelling mistake: "missmatch" -> "mismatch" in libbpf (Colin Ian King)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf tools: Add documentation for perf.data on disk format

Arnaldo Carvalho de Melo (2):
  perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older 
systems
  perf trace beauty eventfd: No need to include eventfd.h

Colin Ian King (1):
  tools lib bpf: Fix spelling mistake: "missmatch" -> "mismatch"

Jiri Olsa (4):
  perf tools: Allow to reset open files counter
  perf tests: Fix thread map test for -F option
  perf test: Add -F/--dont-fork option
  perf tools: Change cpu_map__fprintf output

Peter Zijlstra (Intel) (2):
  perf annotate: Simplify header dotted line sizing
  perf annotate: Add number of samples to the header

Ravi Bangoria (1):
  perf evsel: Utility function to fetch arch

 tools/lib/bpf/libbpf.c |   2 +-
 tools/lib/bpf/libbpf.h |   2 +-
 tools/perf/Documentation/perf-test.txt |   4 +
 tools/perf/Documentation/perf.data-file-format.txt | 442 +
 tools/perf/tests/builtin-test.c|  59 ++-
 tools/perf/tests/cpumap.c  |  24 ++
 tools/perf/tests/dso-data.c|   6 +
 tools/perf/tests/tests.h   |   1 +
 tools/perf/tests/thread-map.c  |  16 +-
 tools/perf/trace/beauty/eventfd.c  |   2 -
 tools/perf/trace/beauty/sched_policy.c |   3 +
 tools/perf/util/annotate.c |  12 +-
 tools/perf/util/cpumap.c   |  54 ++-
 tools/perf/util/cpumap.h   |   1 +
 tools/perf/util/dso.c  |  22 +-
 tools/perf/util/dso.h  |   2 +
 tools/perf/util/event.c|   2 +-
 tools/perf/util/evsel.c|   7 +
 tools/perf/util/evsel.h|   2 +
 19 files changed, 614 insertions(+), 49 deletions(-)
 create mode 100644 tools/perf/Documentation/perf.data-file-format.txt


[GIT PULL 00/11] perf/core improvements and fixes

2016-06-30 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d905768c9e1addfa35d9731dbaa9242e8991f6ac:

  Merge tag 'perf-core-for-mingo-20160628' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-06-29 11:34:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160630

for you to fetch changes up to a24020e6b7cf6eb8b75d8bca6b89870b1cee6ba7:

  perf tools: Change cpu_map__fprintf output (2016-06-30 18:27:45 -0300)


perf/core improvements and fixes:

New features:

- Allow running 'perf test' entries in the same process, not forking to
  test each testcase, useful for debugging (Jiri Olsa)

- Show number of samples in the stdio annotate header (Peter Zijlstra)

Documentation:

- Add documentation for perf.data on disk format (Andi Kleen)

Build fixes:

- Fix 'perf trace' build on old systems wrt missing SCHED_RESET_ON_FORK and
  eventfd.h (Arnaldo Carvalho de Melo)

Infrastructure:

- Utility function to fetch arch from evsel/evlist (Ravi Bangoria)

Trivial:

- Fix spelling mistake: "missmatch" -> "mismatch" in libbpf (Colin Ian King)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf tools: Add documentation for perf.data on disk format

Arnaldo Carvalho de Melo (2):
  perf trace beauty sched_policy: Define SCHED_RESET_ON_FORK for older 
systems
  perf trace beauty eventfd: No need to include eventfd.h

Colin Ian King (1):
  tools lib bpf: Fix spelling mistake: "missmatch" -> "mismatch"

Jiri Olsa (4):
  perf tools: Allow to reset open files counter
  perf tests: Fix thread map test for -F option
  perf test: Add -F/--dont-fork option
  perf tools: Change cpu_map__fprintf output

Peter Zijlstra (Intel) (2):
  perf annotate: Simplify header dotted line sizing
  perf annotate: Add number of samples to the header

Ravi Bangoria (1):
  perf evsel: Utility function to fetch arch

 tools/lib/bpf/libbpf.c |   2 +-
 tools/lib/bpf/libbpf.h |   2 +-
 tools/perf/Documentation/perf-test.txt |   4 +
 tools/perf/Documentation/perf.data-file-format.txt | 442 +
 tools/perf/tests/builtin-test.c|  59 ++-
 tools/perf/tests/cpumap.c  |  24 ++
 tools/perf/tests/dso-data.c|   6 +
 tools/perf/tests/tests.h   |   1 +
 tools/perf/tests/thread-map.c  |  16 +-
 tools/perf/trace/beauty/eventfd.c  |   2 -
 tools/perf/trace/beauty/sched_policy.c |   3 +
 tools/perf/util/annotate.c |  12 +-
 tools/perf/util/cpumap.c   |  54 ++-
 tools/perf/util/cpumap.h   |   1 +
 tools/perf/util/dso.c  |  22 +-
 tools/perf/util/dso.h  |   2 +
 tools/perf/util/event.c|   2 +-
 tools/perf/util/evsel.c|   7 +
 tools/perf/util/evsel.h|   2 +
 19 files changed, 614 insertions(+), 49 deletions(-)
 create mode 100644 tools/perf/Documentation/perf.data-file-format.txt


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-06-08 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 030ba6cd105c68ce919c5e239853b567490cd059:
> 
>   perf/x86/intel: Use new topology_max_smt_threads() in HT leak workaround 
> (2016-06-03 09:41:25 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160606
> 
> for you to fetch changes up to 7db91f251056f90fec4121f028680ab3153a0f3c:
> 
>   perf config: Handle the error when config set is NULL at collect_config() 
> (2016-06-06 17:43:19 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Tooling support for TopDown counters, recently added to the kernel (Andi 
> Kleen)
> 
> - Show call graphs in 'perf script' when 1st event doesn't have it but some 
> other has (He Kuang)
> 
> - Fix terminal cleanup when handling invalid .perfconfig files in 'perf top' 
> (Taeung Song)
> 
> Build fixes:
> 
> - Respect CROSS_COMPILE for the linker in libapi (Lucas Stach)
> 
> Infrastructure:
> 
> - Fix perf_evlist__alloc_mmap() failure path (Wang Nan)
> 
> - Provide way to extract integer value from format_field (Arnaldo Carvalho de 
> Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (5):
>   perf test: Ignore .scale and other special files
>   perf stat: Basic support for TopDown in perf stat
>   perf stat: Add computation of TopDown formulas
>   perf stat: Print topology/time headers with --metric-only
>   perf stat: Add missing aggregation headers for --metric-only CSV
> 
> Arnaldo Carvalho de Melo (1):
>   perf evsel: Provide way to extract integer value from format_field
> 
> He Kuang (1):
>   perf script: Show call graphs when 1st event doesn't have it but some 
> other has
> 
> Lucas Stach (1):
>   tools lib api: Respect CROSS_COMPILE for the linker
> 
> Taeung Song (2):
>   perf config: Fix abnormal termination at perf_parse_file()
>   perf config: Handle the error when config set is NULL at 
> collect_config()
> 
> Wang Nan (1):
>   perf evlist: Fix alloc_mmap() failure path
> 
>  tools/lib/api/Makefile |   1 +
>  tools/perf/Documentation/perf-stat.txt |  32 +++
>  tools/perf/arch/x86/util/Build |   1 +
>  tools/perf/arch/x86/util/group.c   |  27 ++
>  tools/perf/builtin-script.c|  23 +++--
>  tools/perf/builtin-stat.c  | 165 
> ++---
>  tools/perf/tests/parse-events.c|   4 +-
>  tools/perf/util/config.c   |  22 +++--
>  tools/perf/util/evlist.c   |   5 +-
>  tools/perf/util/evsel.c|  25 +++--
>  tools/perf/util/evsel.h|   2 +
>  tools/perf/util/group.h|   7 ++
>  tools/perf/util/parse-events.l |   1 +
>  tools/perf/util/stat-shadow.c  | 162 
>  tools/perf/util/stat.c |   5 +
>  tools/perf/util/stat.h |   5 +
>  16 files changed, 441 insertions(+), 46 deletions(-)
>  create mode 100644 tools/perf/arch/x86/util/group.c
>  create mode 100644 tools/perf/util/group.h

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-06-08 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 030ba6cd105c68ce919c5e239853b567490cd059:
> 
>   perf/x86/intel: Use new topology_max_smt_threads() in HT leak workaround 
> (2016-06-03 09:41:25 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160606
> 
> for you to fetch changes up to 7db91f251056f90fec4121f028680ab3153a0f3c:
> 
>   perf config: Handle the error when config set is NULL at collect_config() 
> (2016-06-06 17:43:19 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Tooling support for TopDown counters, recently added to the kernel (Andi 
> Kleen)
> 
> - Show call graphs in 'perf script' when 1st event doesn't have it but some 
> other has (He Kuang)
> 
> - Fix terminal cleanup when handling invalid .perfconfig files in 'perf top' 
> (Taeung Song)
> 
> Build fixes:
> 
> - Respect CROSS_COMPILE for the linker in libapi (Lucas Stach)
> 
> Infrastructure:
> 
> - Fix perf_evlist__alloc_mmap() failure path (Wang Nan)
> 
> - Provide way to extract integer value from format_field (Arnaldo Carvalho de 
> Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (5):
>   perf test: Ignore .scale and other special files
>   perf stat: Basic support for TopDown in perf stat
>   perf stat: Add computation of TopDown formulas
>   perf stat: Print topology/time headers with --metric-only
>   perf stat: Add missing aggregation headers for --metric-only CSV
> 
> Arnaldo Carvalho de Melo (1):
>   perf evsel: Provide way to extract integer value from format_field
> 
> He Kuang (1):
>   perf script: Show call graphs when 1st event doesn't have it but some 
> other has
> 
> Lucas Stach (1):
>   tools lib api: Respect CROSS_COMPILE for the linker
> 
> Taeung Song (2):
>   perf config: Fix abnormal termination at perf_parse_file()
>   perf config: Handle the error when config set is NULL at 
> collect_config()
> 
> Wang Nan (1):
>   perf evlist: Fix alloc_mmap() failure path
> 
>  tools/lib/api/Makefile |   1 +
>  tools/perf/Documentation/perf-stat.txt |  32 +++
>  tools/perf/arch/x86/util/Build |   1 +
>  tools/perf/arch/x86/util/group.c   |  27 ++
>  tools/perf/builtin-script.c|  23 +++--
>  tools/perf/builtin-stat.c  | 165 
> ++---
>  tools/perf/tests/parse-events.c|   4 +-
>  tools/perf/util/config.c   |  22 +++--
>  tools/perf/util/evlist.c   |   5 +-
>  tools/perf/util/evsel.c|  25 +++--
>  tools/perf/util/evsel.h|   2 +
>  tools/perf/util/group.h|   7 ++
>  tools/perf/util/parse-events.l |   1 +
>  tools/perf/util/stat-shadow.c  | 162 
>  tools/perf/util/stat.c |   5 +
>  tools/perf/util/stat.h |   5 +
>  16 files changed, 441 insertions(+), 46 deletions(-)
>  create mode 100644 tools/perf/arch/x86/util/group.c
>  create mode 100644 tools/perf/util/group.h

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-06-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 030ba6cd105c68ce919c5e239853b567490cd059:

  perf/x86/intel: Use new topology_max_smt_threads() in HT leak workaround 
(2016-06-03 09:41:25 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160606

for you to fetch changes up to 7db91f251056f90fec4121f028680ab3153a0f3c:

  perf config: Handle the error when config set is NULL at collect_config() 
(2016-06-06 17:43:19 -0300)


perf/core improvements and fixes:

User visible:

- Tooling support for TopDown counters, recently added to the kernel (Andi 
Kleen)

- Show call graphs in 'perf script' when 1st event doesn't have it but some 
other has (He Kuang)

- Fix terminal cleanup when handling invalid .perfconfig files in 'perf top' 
(Taeung Song)

Build fixes:

- Respect CROSS_COMPILE for the linker in libapi (Lucas Stach)

Infrastructure:

- Fix perf_evlist__alloc_mmap() failure path (Wang Nan)

- Provide way to extract integer value from format_field (Arnaldo Carvalho de 
Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (5):
  perf test: Ignore .scale and other special files
  perf stat: Basic support for TopDown in perf stat
  perf stat: Add computation of TopDown formulas
  perf stat: Print topology/time headers with --metric-only
  perf stat: Add missing aggregation headers for --metric-only CSV

Arnaldo Carvalho de Melo (1):
  perf evsel: Provide way to extract integer value from format_field

He Kuang (1):
  perf script: Show call graphs when 1st event doesn't have it but some 
other has

Lucas Stach (1):
  tools lib api: Respect CROSS_COMPILE for the linker

Taeung Song (2):
  perf config: Fix abnormal termination at perf_parse_file()
  perf config: Handle the error when config set is NULL at collect_config()

Wang Nan (1):
  perf evlist: Fix alloc_mmap() failure path

 tools/lib/api/Makefile |   1 +
 tools/perf/Documentation/perf-stat.txt |  32 +++
 tools/perf/arch/x86/util/Build |   1 +
 tools/perf/arch/x86/util/group.c   |  27 ++
 tools/perf/builtin-script.c|  23 +++--
 tools/perf/builtin-stat.c  | 165 ++---
 tools/perf/tests/parse-events.c|   4 +-
 tools/perf/util/config.c   |  22 +++--
 tools/perf/util/evlist.c   |   5 +-
 tools/perf/util/evsel.c|  25 +++--
 tools/perf/util/evsel.h|   2 +
 tools/perf/util/group.h|   7 ++
 tools/perf/util/parse-events.l |   1 +
 tools/perf/util/stat-shadow.c  | 162 
 tools/perf/util/stat.c |   5 +
 tools/perf/util/stat.h |   5 +
 16 files changed, 441 insertions(+), 46 deletions(-)
 create mode 100644 tools/perf/arch/x86/util/group.c
 create mode 100644 tools/perf/util/group.h


[GIT PULL 00/11] perf/core improvements and fixes

2016-06-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 030ba6cd105c68ce919c5e239853b567490cd059:

  perf/x86/intel: Use new topology_max_smt_threads() in HT leak workaround 
(2016-06-03 09:41:25 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160606

for you to fetch changes up to 7db91f251056f90fec4121f028680ab3153a0f3c:

  perf config: Handle the error when config set is NULL at collect_config() 
(2016-06-06 17:43:19 -0300)


perf/core improvements and fixes:

User visible:

- Tooling support for TopDown counters, recently added to the kernel (Andi 
Kleen)

- Show call graphs in 'perf script' when 1st event doesn't have it but some 
other has (He Kuang)

- Fix terminal cleanup when handling invalid .perfconfig files in 'perf top' 
(Taeung Song)

Build fixes:

- Respect CROSS_COMPILE for the linker in libapi (Lucas Stach)

Infrastructure:

- Fix perf_evlist__alloc_mmap() failure path (Wang Nan)

- Provide way to extract integer value from format_field (Arnaldo Carvalho de 
Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (5):
  perf test: Ignore .scale and other special files
  perf stat: Basic support for TopDown in perf stat
  perf stat: Add computation of TopDown formulas
  perf stat: Print topology/time headers with --metric-only
  perf stat: Add missing aggregation headers for --metric-only CSV

Arnaldo Carvalho de Melo (1):
  perf evsel: Provide way to extract integer value from format_field

He Kuang (1):
  perf script: Show call graphs when 1st event doesn't have it but some 
other has

Lucas Stach (1):
  tools lib api: Respect CROSS_COMPILE for the linker

Taeung Song (2):
  perf config: Fix abnormal termination at perf_parse_file()
  perf config: Handle the error when config set is NULL at collect_config()

Wang Nan (1):
  perf evlist: Fix alloc_mmap() failure path

 tools/lib/api/Makefile |   1 +
 tools/perf/Documentation/perf-stat.txt |  32 +++
 tools/perf/arch/x86/util/Build |   1 +
 tools/perf/arch/x86/util/group.c   |  27 ++
 tools/perf/builtin-script.c|  23 +++--
 tools/perf/builtin-stat.c  | 165 ++---
 tools/perf/tests/parse-events.c|   4 +-
 tools/perf/util/config.c   |  22 +++--
 tools/perf/util/evlist.c   |   5 +-
 tools/perf/util/evsel.c|  25 +++--
 tools/perf/util/evsel.h|   2 +
 tools/perf/util/group.h|   7 ++
 tools/perf/util/parse-events.l |   1 +
 tools/perf/util/stat-shadow.c  | 162 
 tools/perf/util/stat.c |   5 +
 tools/perf/util/stat.h |   5 +
 16 files changed, 441 insertions(+), 46 deletions(-)
 create mode 100644 tools/perf/arch/x86/util/group.c
 create mode 100644 tools/perf/util/group.h


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-20 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Em Thu, May 19, 2016 at 07:21:22PM -0300, Arnaldo Carvalho de Melo escreveu:
> > Hi Ingo,
> > 
> > Please consider pulling, this is on top of my previous pull
> > request (perf-core-for-mingo-20160516).
>
> The new tag is perf-core-for-mingo-20160520.

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-20 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Em Thu, May 19, 2016 at 07:21:22PM -0300, Arnaldo Carvalho de Melo escreveu:
> > Hi Ingo,
> > 
> > Please consider pulling, this is on top of my previous pull
> > request (perf-core-for-mingo-20160516).
>
> The new tag is perf-core-for-mingo-20160520.

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-20 Thread Arnaldo Carvalho de Melo
Em Thu, May 19, 2016 at 07:21:22PM -0300, Arnaldo Carvalho de Melo escreveu:
> Hi Ingo,
> 
>   Please consider pulling, this is on top of my previous pull
> request (perf-core-for-mingo-20160516).

So, here is a new pull req, removing the following patch, due to that
segfault you noticed while testing 'perf top' on an ubuntu system:
 
> He Kuang (2):
>   perf tools: Find vdso supporting cross-platform analysis

The new tag is perf-core-for-mingo-20160520.

Kuang, Ingo proposed the patch below to fix the problem he noticed
(notice the 'dso && ' part, as __dsos__find() may return NULL), but he
had several other issues with code touched by this patch, I'll try to
address those, please check the patch below and resubmit. 

- Arnaldo

 tools/perf/util/vdso.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools/perf/util/vdso.c b/tools/perf/util/vdso.c
index 8f81c415723d..3a9321f83d00 100644
--- a/tools/perf/util/vdso.c
+++ b/tools/perf/util/vdso.c
@@ -293,12 +293,12 @@ static struct dso *machine__find_vdso(struct machine 
*machine,
switch (dso_type) {
case DSO__TYPE_32BIT:
dso = __dsos__find(>dsos, DSO__NAME_VDSO32, true);
-   if (!dso) {
-   dso = __dsos__find(>dsos, DSO__NAME_VDSO,
-  true);
-   if (dso_type != dso__type(dso, machine))
-   dso = NULL;
-   }
+   if (dso)
+   break;
+
+   dso = __dsos__find(>dsos, DSO__NAME_VDSO, true);
+   if (dso && dso_type != dso__type(dso, machine))
+   dso = NULL;
break;
case DSO__TYPE_X32BIT:
dso = __dsos__find(>dsos, DSO__NAME_VDSOX32, true);


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-20 Thread Arnaldo Carvalho de Melo
Em Thu, May 19, 2016 at 07:21:22PM -0300, Arnaldo Carvalho de Melo escreveu:
> Hi Ingo,
> 
>   Please consider pulling, this is on top of my previous pull
> request (perf-core-for-mingo-20160516).

So, here is a new pull req, removing the following patch, due to that
segfault you noticed while testing 'perf top' on an ubuntu system:
 
> He Kuang (2):
>   perf tools: Find vdso supporting cross-platform analysis

The new tag is perf-core-for-mingo-20160520.

Kuang, Ingo proposed the patch below to fix the problem he noticed
(notice the 'dso && ' part, as __dsos__find() may return NULL), but he
had several other issues with code touched by this patch, I'll try to
address those, please check the patch below and resubmit. 

- Arnaldo

 tools/perf/util/vdso.c | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/tools/perf/util/vdso.c b/tools/perf/util/vdso.c
index 8f81c415723d..3a9321f83d00 100644
--- a/tools/perf/util/vdso.c
+++ b/tools/perf/util/vdso.c
@@ -293,12 +293,12 @@ static struct dso *machine__find_vdso(struct machine 
*machine,
switch (dso_type) {
case DSO__TYPE_32BIT:
dso = __dsos__find(>dsos, DSO__NAME_VDSO32, true);
-   if (!dso) {
-   dso = __dsos__find(>dsos, DSO__NAME_VDSO,
-  true);
-   if (dso_type != dso__type(dso, machine))
-   dso = NULL;
-   }
+   if (dso)
+   break;
+
+   dso = __dsos__find(>dsos, DSO__NAME_VDSO, true);
+   if (dso && dso_type != dso__type(dso, machine))
+   dso = NULL;
break;
case DSO__TYPE_X32BIT:
dso = __dsos__find(>dsos, DSO__NAME_VDSOX32, true);


[GIT PULL 00/11] perf/core improvements and fixes

2016-05-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of my previous pull
request (perf-core-for-mingo-20160516).

- Arnaldo

The following changes since commit a29d5c9b8167dbc21a7ca8c0302e3799f9063b4e:

  perf tools: Separate accounting of contexts and real addresses in a stack 
trace (2016-05-16 23:11:54 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160519

for you to fetch changes up to f978a7b47e5a31d4057187153f71e95b24455e54:

  perf tools: Set buildid dir under symfs when --symfs is provided (2016-05-19 
19:04:36 -0300)


perf/core improvements and fixes:

User visible:

- We should not use the current value of the kernel.perf_event_max_stack as the
  default value for --max-stack in tools that can process perf.data files, they
  will only match if that sysctl wasn't changed from its default value at the
  time the perf.data file was recorded, fix it.

  This fixes a bug where a 'perf record -a --call-graph dwarf ; perf report'
  produces a glibc invalid free backtrace (Arnaldo Carvalho de Melo)

- Provide a better warning when running 'perf trace' on a system where the
  kernel.kptr_restrict is set to 1, similar to the one produced by 'perf 
record',
  noticed on ubuntu 16.04 where this is the default kptr_restrict setting.
  (Arnaldo Carvalho de Melo)

- Fix ordering of instructions in the annotation code, noticed when annotating
  ARM binaries, now that table is auto-ordered at first use, to avoid more such
  problems (Chris Ryder)

- Fix searching the vdso image to support cross-platform analysis (He Kuang)

- Set buildid dir under symfs when --symfs is provided (He Kuang)

- Fix the 'exit_group()' syscall output in 'perf trace' (Arnaldo Carvalho de 
Melo)

- Only auto set call-graph to "dwarf" in 'perf trace' when syscalls are being
  traced (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (7):
  perf machine: Do not bail out if not managing to read ref reloc symbol
  perf trace: Warn when trying to resolve kernel addresses with 
kptr_restrict=1
  perf top: Use machine->kptr_restrict_warned
  perf trace: Fix exit_group() formatting
  perf callchain: Stop validating callchains by the max_stack sysctl
  perf tools: Fix usage of max_stack sysctl
  perf trace: Only auto set call-graph to "dwarf" when syscalls are being 
traced

Chris Ryder (2):
  perf annotate: Fix identification of ARM blt and bls instructions
  perf annotate: Sort list of recognised instructions

He Kuang (2):
  perf tools: Find vdso supporting cross-platform analysis
  perf tools: Set buildid dir under symfs when --symfs is provided

 tools/perf/Documentation/perf-report.txt   |  2 +-
 tools/perf/Documentation/perf-script.txt   |  2 +-
 tools/perf/Documentation/perf-trace.txt|  3 +-
 tools/perf/builtin-annotate.c  |  5 +--
 tools/perf/builtin-diff.c  |  5 +--
 tools/perf/builtin-report.c|  7 ++--
 tools/perf/builtin-script.c|  7 ++--
 tools/perf/builtin-timechart.c |  5 +--
 tools/perf/builtin-top.c   |  6 ++--
 tools/perf/builtin-trace.c | 26 +++---
 tools/perf/util/annotate.c | 30 
 tools/perf/util/db-export.c|  3 +-
 tools/perf/util/dso.c  |  4 +--
 tools/perf/util/machine.c  | 35 ++-
 tools/perf/util/machine.h  |  1 +
 .../perf/util/scripting-engines/trace-event-perl.c |  3 +-
 tools/perf/util/symbol.c   | 23 +
 tools/perf/util/symbol.h   |  2 ++
 tools/perf/util/top.h  |  1 -
 tools/perf/util/vdso.c | 40 --
 20 files changed, 146 insertions(+), 64 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-05-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of my previous pull
request (perf-core-for-mingo-20160516).

- Arnaldo

The following changes since commit a29d5c9b8167dbc21a7ca8c0302e3799f9063b4e:

  perf tools: Separate accounting of contexts and real addresses in a stack 
trace (2016-05-16 23:11:54 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160519

for you to fetch changes up to f978a7b47e5a31d4057187153f71e95b24455e54:

  perf tools: Set buildid dir under symfs when --symfs is provided (2016-05-19 
19:04:36 -0300)


perf/core improvements and fixes:

User visible:

- We should not use the current value of the kernel.perf_event_max_stack as the
  default value for --max-stack in tools that can process perf.data files, they
  will only match if that sysctl wasn't changed from its default value at the
  time the perf.data file was recorded, fix it.

  This fixes a bug where a 'perf record -a --call-graph dwarf ; perf report'
  produces a glibc invalid free backtrace (Arnaldo Carvalho de Melo)

- Provide a better warning when running 'perf trace' on a system where the
  kernel.kptr_restrict is set to 1, similar to the one produced by 'perf 
record',
  noticed on ubuntu 16.04 where this is the default kptr_restrict setting.
  (Arnaldo Carvalho de Melo)

- Fix ordering of instructions in the annotation code, noticed when annotating
  ARM binaries, now that table is auto-ordered at first use, to avoid more such
  problems (Chris Ryder)

- Fix searching the vdso image to support cross-platform analysis (He Kuang)

- Set buildid dir under symfs when --symfs is provided (He Kuang)

- Fix the 'exit_group()' syscall output in 'perf trace' (Arnaldo Carvalho de 
Melo)

- Only auto set call-graph to "dwarf" in 'perf trace' when syscalls are being
  traced (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (7):
  perf machine: Do not bail out if not managing to read ref reloc symbol
  perf trace: Warn when trying to resolve kernel addresses with 
kptr_restrict=1
  perf top: Use machine->kptr_restrict_warned
  perf trace: Fix exit_group() formatting
  perf callchain: Stop validating callchains by the max_stack sysctl
  perf tools: Fix usage of max_stack sysctl
  perf trace: Only auto set call-graph to "dwarf" when syscalls are being 
traced

Chris Ryder (2):
  perf annotate: Fix identification of ARM blt and bls instructions
  perf annotate: Sort list of recognised instructions

He Kuang (2):
  perf tools: Find vdso supporting cross-platform analysis
  perf tools: Set buildid dir under symfs when --symfs is provided

 tools/perf/Documentation/perf-report.txt   |  2 +-
 tools/perf/Documentation/perf-script.txt   |  2 +-
 tools/perf/Documentation/perf-trace.txt|  3 +-
 tools/perf/builtin-annotate.c  |  5 +--
 tools/perf/builtin-diff.c  |  5 +--
 tools/perf/builtin-report.c|  7 ++--
 tools/perf/builtin-script.c|  7 ++--
 tools/perf/builtin-timechart.c |  5 +--
 tools/perf/builtin-top.c   |  6 ++--
 tools/perf/builtin-trace.c | 26 +++---
 tools/perf/util/annotate.c | 30 
 tools/perf/util/db-export.c|  3 +-
 tools/perf/util/dso.c  |  4 +--
 tools/perf/util/machine.c  | 35 ++-
 tools/perf/util/machine.h  |  1 +
 .../perf/util/scripting-engines/trace-event-perl.c |  3 +-
 tools/perf/util/symbol.c   | 23 +
 tools/perf/util/symbol.h   |  2 ++
 tools/perf/util/top.h  |  1 -
 tools/perf/util/vdso.c | 40 --
 20 files changed, 146 insertions(+), 64 deletions(-)


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-06 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit c0edb7467c3d21b213ff734bfe810d81d2c6ed61:
> 
>   Merge tag 'perf-core-for-mingo-20160505' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-05-06 08:35:14 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160506
> 
> for you to fetch changes up to d5d71e86d226abe7e08df5763127ed2bd07649a1:
> 
>   perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ 
> (2016-05-06 13:00:59 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Fix ordering of kernel/user entries in 'caller' mode, where the kernel and
>   user parts were being correctly inverted but kept in place wrt each other,
>   i.e. 'callee' (k1, k2, u3, u4) became 'caller' (k2, k1, u4, u3) when it
>   should be 'caller' (u4, u3, k2, k1) (Chris Phlipot)
> 
> - In 'perf trace' don't print the raw arg syscall args for a syscall that has
>   no arguments, like gettid(). This was happening because just checking if
>   the syscall args list is NULL may mean that there are no args (e.g.: gettid)
>   or that there is no tracepoint info (e.g.: clone) (Arnaldo Carvalho de Melo)
> 
> - Add extra output of counter values with 'perf stat -vv' (Andi Kleen)
> 
> Infrastructure:
> 
> - Expose callchain db export via the python API (Chris Phlipot)
> 
> Code reorganization:
> 
> - Move some more syscall arg beautifiers from the 'perf trace' main file to
>   separate files in tools/perf/trace/beauty/, to reduce the main file line
>   count (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf stat: Add extra output of counter values with -vv
> 
> Arnaldo Carvalho de Melo (4):
>   perf trace: Do not print raw args list for syscalls with no args
>   perf trace: Move signum beautifier to tools/perf/trace/beauty/
>   perf trace: Move open_flags beautifier to tools/perf/trace/beauty/
>   perf trace: Move futex_op beautifier to tools/perf/trace/beauty/
> 
> Chris Phlipot (6):
>   perf callchain: Fix incorrect ordering of entries
>   perf tools: Refactor code to move call path handling out of thread-stack
>   perf script: Enable db export to output sampled callchains
>   perf script: Add call path id to exported sample in db export
>   perf script: Expose usage of the callchain db export via the python api
>   perf script: Update export-to-postgresql to support callchain export
> 
>  tools/perf/builtin-stat.c  |   8 +
>  tools/perf/builtin-trace.c | 165 
> ++---
>  tools/perf/scripts/python/export-to-postgresql.py  |  47 +++---
>  tools/perf/trace/beauty/futex_op.c |  44 ++
>  tools/perf/trace/beauty/open_flags.c   |  56 +++
>  tools/perf/trace/beauty/signum.c   |  53 +++
>  tools/perf/util/Build  |   1 +
>  tools/perf/util/call-path.c| 122 +++
>  tools/perf/util/call-path.h|  77 ++
>  tools/perf/util/db-export.c|  85 +++
>  tools/perf/util/db-export.h|   3 +
>  tools/perf/util/machine.c  |  56 +--
>  .../util/scripting-engines/trace-event-python.c|  36 -
>  tools/perf/util/thread-stack.c | 139 +
>  tools/perf/util/thread-stack.h |  31 ++--
>  15 files changed, 575 insertions(+), 348 deletions(-)
>  create mode 100644 tools/perf/trace/beauty/futex_op.c
>  create mode 100644 tools/perf/trace/beauty/open_flags.c
>  create mode 100644 tools/perf/trace/beauty/signum.c
>  create mode 100644 tools/perf/util/call-path.c
>  create mode 100644 tools/perf/util/call-path.h

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-05-06 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit c0edb7467c3d21b213ff734bfe810d81d2c6ed61:
> 
>   Merge tag 'perf-core-for-mingo-20160505' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-05-06 08:35:14 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160506
> 
> for you to fetch changes up to d5d71e86d226abe7e08df5763127ed2bd07649a1:
> 
>   perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ 
> (2016-05-06 13:00:59 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Fix ordering of kernel/user entries in 'caller' mode, where the kernel and
>   user parts were being correctly inverted but kept in place wrt each other,
>   i.e. 'callee' (k1, k2, u3, u4) became 'caller' (k2, k1, u4, u3) when it
>   should be 'caller' (u4, u3, k2, k1) (Chris Phlipot)
> 
> - In 'perf trace' don't print the raw arg syscall args for a syscall that has
>   no arguments, like gettid(). This was happening because just checking if
>   the syscall args list is NULL may mean that there are no args (e.g.: gettid)
>   or that there is no tracepoint info (e.g.: clone) (Arnaldo Carvalho de Melo)
> 
> - Add extra output of counter values with 'perf stat -vv' (Andi Kleen)
> 
> Infrastructure:
> 
> - Expose callchain db export via the python API (Chris Phlipot)
> 
> Code reorganization:
> 
> - Move some more syscall arg beautifiers from the 'perf trace' main file to
>   separate files in tools/perf/trace/beauty/, to reduce the main file line
>   count (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf stat: Add extra output of counter values with -vv
> 
> Arnaldo Carvalho de Melo (4):
>   perf trace: Do not print raw args list for syscalls with no args
>   perf trace: Move signum beautifier to tools/perf/trace/beauty/
>   perf trace: Move open_flags beautifier to tools/perf/trace/beauty/
>   perf trace: Move futex_op beautifier to tools/perf/trace/beauty/
> 
> Chris Phlipot (6):
>   perf callchain: Fix incorrect ordering of entries
>   perf tools: Refactor code to move call path handling out of thread-stack
>   perf script: Enable db export to output sampled callchains
>   perf script: Add call path id to exported sample in db export
>   perf script: Expose usage of the callchain db export via the python api
>   perf script: Update export-to-postgresql to support callchain export
> 
>  tools/perf/builtin-stat.c  |   8 +
>  tools/perf/builtin-trace.c | 165 
> ++---
>  tools/perf/scripts/python/export-to-postgresql.py  |  47 +++---
>  tools/perf/trace/beauty/futex_op.c |  44 ++
>  tools/perf/trace/beauty/open_flags.c   |  56 +++
>  tools/perf/trace/beauty/signum.c   |  53 +++
>  tools/perf/util/Build  |   1 +
>  tools/perf/util/call-path.c| 122 +++
>  tools/perf/util/call-path.h|  77 ++
>  tools/perf/util/db-export.c|  85 +++
>  tools/perf/util/db-export.h|   3 +
>  tools/perf/util/machine.c  |  56 +--
>  .../util/scripting-engines/trace-event-python.c|  36 -
>  tools/perf/util/thread-stack.c | 139 +
>  tools/perf/util/thread-stack.h |  31 ++--
>  15 files changed, 575 insertions(+), 348 deletions(-)
>  create mode 100644 tools/perf/trace/beauty/futex_op.c
>  create mode 100644 tools/perf/trace/beauty/open_flags.c
>  create mode 100644 tools/perf/trace/beauty/signum.c
>  create mode 100644 tools/perf/util/call-path.c
>  create mode 100644 tools/perf/util/call-path.h

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-05-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit c0edb7467c3d21b213ff734bfe810d81d2c6ed61:

  Merge tag 'perf-core-for-mingo-20160505' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-05-06 08:35:14 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160506

for you to fetch changes up to d5d71e86d226abe7e08df5763127ed2bd07649a1:

  perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ (2016-05-06 
13:00:59 -0300)


perf/core improvements and fixes:

User visible:

- Fix ordering of kernel/user entries in 'caller' mode, where the kernel and
  user parts were being correctly inverted but kept in place wrt each other,
  i.e. 'callee' (k1, k2, u3, u4) became 'caller' (k2, k1, u4, u3) when it
  should be 'caller' (u4, u3, k2, k1) (Chris Phlipot)

- In 'perf trace' don't print the raw arg syscall args for a syscall that has
  no arguments, like gettid(). This was happening because just checking if
  the syscall args list is NULL may mean that there are no args (e.g.: gettid)
  or that there is no tracepoint info (e.g.: clone) (Arnaldo Carvalho de Melo)

- Add extra output of counter values with 'perf stat -vv' (Andi Kleen)

Infrastructure:

- Expose callchain db export via the python API (Chris Phlipot)

Code reorganization:

- Move some more syscall arg beautifiers from the 'perf trace' main file to
  separate files in tools/perf/trace/beauty/, to reduce the main file line
  count (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf stat: Add extra output of counter values with -vv

Arnaldo Carvalho de Melo (4):
  perf trace: Do not print raw args list for syscalls with no args
  perf trace: Move signum beautifier to tools/perf/trace/beauty/
  perf trace: Move open_flags beautifier to tools/perf/trace/beauty/
  perf trace: Move futex_op beautifier to tools/perf/trace/beauty/

Chris Phlipot (6):
  perf callchain: Fix incorrect ordering of entries
  perf tools: Refactor code to move call path handling out of thread-stack
  perf script: Enable db export to output sampled callchains
  perf script: Add call path id to exported sample in db export
  perf script: Expose usage of the callchain db export via the python api
  perf script: Update export-to-postgresql to support callchain export

 tools/perf/builtin-stat.c  |   8 +
 tools/perf/builtin-trace.c | 165 ++---
 tools/perf/scripts/python/export-to-postgresql.py  |  47 +++---
 tools/perf/trace/beauty/futex_op.c |  44 ++
 tools/perf/trace/beauty/open_flags.c   |  56 +++
 tools/perf/trace/beauty/signum.c   |  53 +++
 tools/perf/util/Build  |   1 +
 tools/perf/util/call-path.c| 122 +++
 tools/perf/util/call-path.h|  77 ++
 tools/perf/util/db-export.c|  85 +++
 tools/perf/util/db-export.h|   3 +
 tools/perf/util/machine.c  |  56 +--
 .../util/scripting-engines/trace-event-python.c|  36 -
 tools/perf/util/thread-stack.c | 139 +
 tools/perf/util/thread-stack.h |  31 ++--
 15 files changed, 575 insertions(+), 348 deletions(-)
 create mode 100644 tools/perf/trace/beauty/futex_op.c
 create mode 100644 tools/perf/trace/beauty/open_flags.c
 create mode 100644 tools/perf/trace/beauty/signum.c
 create mode 100644 tools/perf/util/call-path.c
 create mode 100644 tools/perf/util/call-path.h


[GIT PULL 00/11] perf/core improvements and fixes

2016-05-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit c0edb7467c3d21b213ff734bfe810d81d2c6ed61:

  Merge tag 'perf-core-for-mingo-20160505' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-05-06 08:35:14 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160506

for you to fetch changes up to d5d71e86d226abe7e08df5763127ed2bd07649a1:

  perf trace: Move futex_op beautifier to tools/perf/trace/beauty/ (2016-05-06 
13:00:59 -0300)


perf/core improvements and fixes:

User visible:

- Fix ordering of kernel/user entries in 'caller' mode, where the kernel and
  user parts were being correctly inverted but kept in place wrt each other,
  i.e. 'callee' (k1, k2, u3, u4) became 'caller' (k2, k1, u4, u3) when it
  should be 'caller' (u4, u3, k2, k1) (Chris Phlipot)

- In 'perf trace' don't print the raw arg syscall args for a syscall that has
  no arguments, like gettid(). This was happening because just checking if
  the syscall args list is NULL may mean that there are no args (e.g.: gettid)
  or that there is no tracepoint info (e.g.: clone) (Arnaldo Carvalho de Melo)

- Add extra output of counter values with 'perf stat -vv' (Andi Kleen)

Infrastructure:

- Expose callchain db export via the python API (Chris Phlipot)

Code reorganization:

- Move some more syscall arg beautifiers from the 'perf trace' main file to
  separate files in tools/perf/trace/beauty/, to reduce the main file line
  count (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf stat: Add extra output of counter values with -vv

Arnaldo Carvalho de Melo (4):
  perf trace: Do not print raw args list for syscalls with no args
  perf trace: Move signum beautifier to tools/perf/trace/beauty/
  perf trace: Move open_flags beautifier to tools/perf/trace/beauty/
  perf trace: Move futex_op beautifier to tools/perf/trace/beauty/

Chris Phlipot (6):
  perf callchain: Fix incorrect ordering of entries
  perf tools: Refactor code to move call path handling out of thread-stack
  perf script: Enable db export to output sampled callchains
  perf script: Add call path id to exported sample in db export
  perf script: Expose usage of the callchain db export via the python api
  perf script: Update export-to-postgresql to support callchain export

 tools/perf/builtin-stat.c  |   8 +
 tools/perf/builtin-trace.c | 165 ++---
 tools/perf/scripts/python/export-to-postgresql.py  |  47 +++---
 tools/perf/trace/beauty/futex_op.c |  44 ++
 tools/perf/trace/beauty/open_flags.c   |  56 +++
 tools/perf/trace/beauty/signum.c   |  53 +++
 tools/perf/util/Build  |   1 +
 tools/perf/util/call-path.c| 122 +++
 tools/perf/util/call-path.h|  77 ++
 tools/perf/util/db-export.c|  85 +++
 tools/perf/util/db-export.h|   3 +
 tools/perf/util/machine.c  |  56 +--
 .../util/scripting-engines/trace-event-python.c|  36 -
 tools/perf/util/thread-stack.c | 139 +
 tools/perf/util/thread-stack.h |  31 ++--
 15 files changed, 575 insertions(+), 348 deletions(-)
 create mode 100644 tools/perf/trace/beauty/futex_op.c
 create mode 100644 tools/perf/trace/beauty/open_flags.c
 create mode 100644 tools/perf/trace/beauty/signum.c
 create mode 100644 tools/perf/util/call-path.c
 create mode 100644 tools/perf/util/call-path.h


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-04-14 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> From: Arnaldo Carvalho de Melo 
> 
> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit c5ab6ad7f627f031e2bbde575c7e6e27ea36da55:
> 
>   Merge tag 'perf-core-for-mingo-20160413' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-04-13 20:27:58 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160414
> 
> for you to fetch changes up to 860b8d4b3f893c97f905b978ecf62f48816dc5de:
> 
>   perf config: Make show_config() use perf_config_set (2016-04-14 09:15:47 
> -0300)
> 
> 
> perf/core improvements:
> 
> User visible:
> 
> - Introduce 'perf record --timestamp-filename', to add a timestamp
>   at the end of the 'perf data' file. Will get added value when
>   the patch to make 'perf.data' file snapshots gets merged (Wang Nan)
> 
> - Fix display of variables present in both --config and --user in
>   'perf list' (Taeung Song)
> 
> Build fixes:
> 
> - Add seccomp and getradom beautifier related defines to fix
>   the build in older systems where those definitions are not
>   available (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (4):
>   perf trace: Add seccomp beautifier related defines for older systems
>   perf trace: Add getrandom beautifier related defines for older systems
>   perf trace: Move mmap beautifiers to trace/beauty/ directory
>   perf trace: Move eventfd beautifiers to trace/beauty/ directory
> 
> Taeung Song (2):
>   perf config: Introduce perf_config_set class
>   perf config: Make show_config() use perf_config_set
> 
> Wang Nan (5):
>   perf ordered_events: Introduce reinit()
>   perf session: Make ordered_events reusable
>   perf data: Add perf_data_file__switch() helper
>   perf record: Turns auxtrace_snapshot_enable into 3 states
>   perf record: Add '--timestamp-filename' option to append timestamp to 
> output file name
> 
>  tools/perf/builtin-config.c   |  39 +--
>  tools/perf/builtin-record.c   | 112 +---
>  tools/perf/builtin-trace.c| 218 
> --
>  tools/perf/trace/beauty/eventfd.c |  38 +++
>  tools/perf/trace/beauty/mmap.c| 158 +++
>  tools/perf/util/config.c  | 173 ++
>  tools/perf/util/config.h  |  26 +
>  tools/perf/util/data.c|  41 +++
>  tools/perf/util/data.h|  11 +-
>  tools/perf/util/ordered-events.c  |   9 ++
>  tools/perf/util/ordered-events.h  |   1 +
>  tools/perf/util/session.c |   6 +-
>  12 files changed, 611 insertions(+), 221 deletions(-)
>  create mode 100644 tools/perf/trace/beauty/eventfd.c
>  create mode 100644 tools/perf/trace/beauty/mmap.c
>  create mode 100644 tools/perf/util/config.h

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-04-14 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> From: Arnaldo Carvalho de Melo 
> 
> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit c5ab6ad7f627f031e2bbde575c7e6e27ea36da55:
> 
>   Merge tag 'perf-core-for-mingo-20160413' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2016-04-13 20:27:58 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160414
> 
> for you to fetch changes up to 860b8d4b3f893c97f905b978ecf62f48816dc5de:
> 
>   perf config: Make show_config() use perf_config_set (2016-04-14 09:15:47 
> -0300)
> 
> 
> perf/core improvements:
> 
> User visible:
> 
> - Introduce 'perf record --timestamp-filename', to add a timestamp
>   at the end of the 'perf data' file. Will get added value when
>   the patch to make 'perf.data' file snapshots gets merged (Wang Nan)
> 
> - Fix display of variables present in both --config and --user in
>   'perf list' (Taeung Song)
> 
> Build fixes:
> 
> - Add seccomp and getradom beautifier related defines to fix
>   the build in older systems where those definitions are not
>   available (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (4):
>   perf trace: Add seccomp beautifier related defines for older systems
>   perf trace: Add getrandom beautifier related defines for older systems
>   perf trace: Move mmap beautifiers to trace/beauty/ directory
>   perf trace: Move eventfd beautifiers to trace/beauty/ directory
> 
> Taeung Song (2):
>   perf config: Introduce perf_config_set class
>   perf config: Make show_config() use perf_config_set
> 
> Wang Nan (5):
>   perf ordered_events: Introduce reinit()
>   perf session: Make ordered_events reusable
>   perf data: Add perf_data_file__switch() helper
>   perf record: Turns auxtrace_snapshot_enable into 3 states
>   perf record: Add '--timestamp-filename' option to append timestamp to 
> output file name
> 
>  tools/perf/builtin-config.c   |  39 +--
>  tools/perf/builtin-record.c   | 112 +---
>  tools/perf/builtin-trace.c| 218 
> --
>  tools/perf/trace/beauty/eventfd.c |  38 +++
>  tools/perf/trace/beauty/mmap.c| 158 +++
>  tools/perf/util/config.c  | 173 ++
>  tools/perf/util/config.h  |  26 +
>  tools/perf/util/data.c|  41 +++
>  tools/perf/util/data.h|  11 +-
>  tools/perf/util/ordered-events.c  |   9 ++
>  tools/perf/util/ordered-events.h  |   1 +
>  tools/perf/util/session.c |   6 +-
>  12 files changed, 611 insertions(+), 221 deletions(-)
>  create mode 100644 tools/perf/trace/beauty/eventfd.c
>  create mode 100644 tools/perf/trace/beauty/mmap.c
>  create mode 100644 tools/perf/util/config.h

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-04-14 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo 

Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit c5ab6ad7f627f031e2bbde575c7e6e27ea36da55:

  Merge tag 'perf-core-for-mingo-20160413' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-04-13 20:27:58 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160414

for you to fetch changes up to 860b8d4b3f893c97f905b978ecf62f48816dc5de:

  perf config: Make show_config() use perf_config_set (2016-04-14 09:15:47 
-0300)


perf/core improvements:

User visible:

- Introduce 'perf record --timestamp-filename', to add a timestamp
  at the end of the 'perf data' file. Will get added value when
  the patch to make 'perf.data' file snapshots gets merged (Wang Nan)

- Fix display of variables present in both --config and --user in
  'perf list' (Taeung Song)

Build fixes:

- Add seccomp and getradom beautifier related defines to fix
  the build in older systems where those definitions are not
  available (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (4):
  perf trace: Add seccomp beautifier related defines for older systems
  perf trace: Add getrandom beautifier related defines for older systems
  perf trace: Move mmap beautifiers to trace/beauty/ directory
  perf trace: Move eventfd beautifiers to trace/beauty/ directory

Taeung Song (2):
  perf config: Introduce perf_config_set class
  perf config: Make show_config() use perf_config_set

Wang Nan (5):
  perf ordered_events: Introduce reinit()
  perf session: Make ordered_events reusable
  perf data: Add perf_data_file__switch() helper
  perf record: Turns auxtrace_snapshot_enable into 3 states
  perf record: Add '--timestamp-filename' option to append timestamp to 
output file name

 tools/perf/builtin-config.c   |  39 +--
 tools/perf/builtin-record.c   | 112 +---
 tools/perf/builtin-trace.c| 218 --
 tools/perf/trace/beauty/eventfd.c |  38 +++
 tools/perf/trace/beauty/mmap.c| 158 +++
 tools/perf/util/config.c  | 173 ++
 tools/perf/util/config.h  |  26 +
 tools/perf/util/data.c|  41 +++
 tools/perf/util/data.h|  11 +-
 tools/perf/util/ordered-events.c  |   9 ++
 tools/perf/util/ordered-events.h  |   1 +
 tools/perf/util/session.c |   6 +-
 12 files changed, 611 insertions(+), 221 deletions(-)
 create mode 100644 tools/perf/trace/beauty/eventfd.c
 create mode 100644 tools/perf/trace/beauty/mmap.c
 create mode 100644 tools/perf/util/config.h


[GIT PULL 00/11] perf/core improvements and fixes

2016-04-14 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo 

Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit c5ab6ad7f627f031e2bbde575c7e6e27ea36da55:

  Merge tag 'perf-core-for-mingo-20160413' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2016-04-13 20:27:58 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160414

for you to fetch changes up to 860b8d4b3f893c97f905b978ecf62f48816dc5de:

  perf config: Make show_config() use perf_config_set (2016-04-14 09:15:47 
-0300)


perf/core improvements:

User visible:

- Introduce 'perf record --timestamp-filename', to add a timestamp
  at the end of the 'perf data' file. Will get added value when
  the patch to make 'perf.data' file snapshots gets merged (Wang Nan)

- Fix display of variables present in both --config and --user in
  'perf list' (Taeung Song)

Build fixes:

- Add seccomp and getradom beautifier related defines to fix
  the build in older systems where those definitions are not
  available (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (4):
  perf trace: Add seccomp beautifier related defines for older systems
  perf trace: Add getrandom beautifier related defines for older systems
  perf trace: Move mmap beautifiers to trace/beauty/ directory
  perf trace: Move eventfd beautifiers to trace/beauty/ directory

Taeung Song (2):
  perf config: Introduce perf_config_set class
  perf config: Make show_config() use perf_config_set

Wang Nan (5):
  perf ordered_events: Introduce reinit()
  perf session: Make ordered_events reusable
  perf data: Add perf_data_file__switch() helper
  perf record: Turns auxtrace_snapshot_enable into 3 states
  perf record: Add '--timestamp-filename' option to append timestamp to 
output file name

 tools/perf/builtin-config.c   |  39 +--
 tools/perf/builtin-record.c   | 112 +---
 tools/perf/builtin-trace.c| 218 --
 tools/perf/trace/beauty/eventfd.c |  38 +++
 tools/perf/trace/beauty/mmap.c| 158 +++
 tools/perf/util/config.c  | 173 ++
 tools/perf/util/config.h  |  26 +
 tools/perf/util/data.c|  41 +++
 tools/perf/util/data.h|  11 +-
 tools/perf/util/ordered-events.c  |   9 ++
 tools/perf/util/ordered-events.h  |   1 +
 tools/perf/util/session.c |   6 +-
 12 files changed, 611 insertions(+), 221 deletions(-)
 create mode 100644 tools/perf/trace/beauty/eventfd.c
 create mode 100644 tools/perf/trace/beauty/mmap.c
 create mode 100644 tools/perf/util/config.h


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-04-13 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 31d50c551e30923b86a1b5b420920dd1927fa63b:
> 
>   perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (2016-04-13 
> 11:56:36 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160413
> 
> for you to fetch changes up to 59247e33ff494e3643cdff54b64bf72575052b76:
> 
>   perf trace: Do not accept --no-syscalls together with -e (2016-04-13 
> 10:11:52 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Print callchains asked for events requested via 'perf trace --event' too:
>   (Arnaldo Carvalho de Melo)
> 
>   # trace -e nanosleep --call dwarf --event sched:sched_switch/call-graph=fp/ 
> usleep 1
>0.346 (0.005 ms): usleep/24428 nanosleep(rqtp: 0x7fffa15a0540) ...
>0.346 (): sched:sched_switch:usleep:24428 [120] S ==> swapper/3:0 
> [120])
> __schedule+0xfe200402 ([kernel.kallsyms])
> schedule+0xfe200035 ([kernel.kallsyms])
> do_nanosleep+0xfe20006f 
> ([kernel.kallsyms])
> hrtimer_nanosleep+0xfe2000dc 
> ([kernel.kallsyms])
> sys_nanosleep+0xfe20007a 
> ([kernel.kallsyms])
> do_syscall_64+0xfe200062 
> ([kernel.kallsyms])
> return_from_SYSCALL_64+0xfe20 
> ([kernel.kallsyms])
> __nanosleep+0x005b8d602010 
> (/usr/lib64/libc-2.22.so)
>0.400 (0.059 ms): usleep/24428  ... [continued]: nanosleep()) = 0
> __nanosleep+0x10 (/usr/lib64/libc-2.22.so)
> usleep+0x34 (/usr/lib64/libc-2.22.so)
> main+0x1eb (/usr/bin/usleep)
> __libc_start_main+0xf0 
> (/usr/lib64/libc-2.22.so)
> _start+0x29 (/usr/bin/usleep)
> 
> - Allow requesting that some CPUs or PIDs be highlighted in 'perf sched map' 
> (Jiri Olsa)
> 
> - Compact 'perf sched map' to show just CPUs with activity, improving the 
> output
>   in high core count systems (Jiri Olsa)
> 
> - Fix segfault with 'perf trace --no-syscalls -e syscall-names' by bailing out
>   such request, doesn't make sense to ask for no syscalls and then specify 
> which
>   ones should be printed (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (3):
>   perf trace: Support callchains for --event too
>   perf evsel: Move some methods from session.[ch] to evsel.[ch]
>   perf trace: Do not accept --no-syscalls together with -e
> 
> Jiri Olsa (8):
>   perf thread_map: Add has() method
>   perf cpu_map: Add has() method
>   perf sched: Add compact display option
>   perf sched: Use color_fprintf for output
>   perf thread_map: Make new_by_tid_str constructor public
>   perf sched map: Color given pids
>   perf sched map: Color given cpus
>   perf sched map: Display only given cpus
> 
>  tools/perf/Documentation/perf-sched.txt |  16 +++
>  tools/perf/builtin-sched.c  | 198 
> ++--
>  tools/perf/builtin-script.c |  14 +--
>  tools/perf/builtin-trace.c  |  48 +---
>  tools/perf/util/cpumap.c|  12 ++
>  tools/perf/util/cpumap.h|   2 +
>  tools/perf/util/evsel.c | 131 +
>  tools/perf/util/evsel.h |  13 +++
>  tools/perf/util/session.c   | 130 -
>  tools/perf/util/session.h   |  13 ---
>  tools/perf/util/thread_map.c|  14 ++-
>  tools/perf/util/thread_map.h|   3 +
>  12 files changed, 416 insertions(+), 178 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-04-13 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 31d50c551e30923b86a1b5b420920dd1927fa63b:
> 
>   perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (2016-04-13 
> 11:56:36 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-20160413
> 
> for you to fetch changes up to 59247e33ff494e3643cdff54b64bf72575052b76:
> 
>   perf trace: Do not accept --no-syscalls together with -e (2016-04-13 
> 10:11:52 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Print callchains asked for events requested via 'perf trace --event' too:
>   (Arnaldo Carvalho de Melo)
> 
>   # trace -e nanosleep --call dwarf --event sched:sched_switch/call-graph=fp/ 
> usleep 1
>0.346 (0.005 ms): usleep/24428 nanosleep(rqtp: 0x7fffa15a0540) ...
>0.346 (): sched:sched_switch:usleep:24428 [120] S ==> swapper/3:0 
> [120])
> __schedule+0xfe200402 ([kernel.kallsyms])
> schedule+0xfe200035 ([kernel.kallsyms])
> do_nanosleep+0xfe20006f 
> ([kernel.kallsyms])
> hrtimer_nanosleep+0xfe2000dc 
> ([kernel.kallsyms])
> sys_nanosleep+0xfe20007a 
> ([kernel.kallsyms])
> do_syscall_64+0xfe200062 
> ([kernel.kallsyms])
> return_from_SYSCALL_64+0xfe20 
> ([kernel.kallsyms])
> __nanosleep+0x005b8d602010 
> (/usr/lib64/libc-2.22.so)
>0.400 (0.059 ms): usleep/24428  ... [continued]: nanosleep()) = 0
> __nanosleep+0x10 (/usr/lib64/libc-2.22.so)
> usleep+0x34 (/usr/lib64/libc-2.22.so)
> main+0x1eb (/usr/bin/usleep)
> __libc_start_main+0xf0 
> (/usr/lib64/libc-2.22.so)
> _start+0x29 (/usr/bin/usleep)
> 
> - Allow requesting that some CPUs or PIDs be highlighted in 'perf sched map' 
> (Jiri Olsa)
> 
> - Compact 'perf sched map' to show just CPUs with activity, improving the 
> output
>   in high core count systems (Jiri Olsa)
> 
> - Fix segfault with 'perf trace --no-syscalls -e syscall-names' by bailing out
>   such request, doesn't make sense to ask for no syscalls and then specify 
> which
>   ones should be printed (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (3):
>   perf trace: Support callchains for --event too
>   perf evsel: Move some methods from session.[ch] to evsel.[ch]
>   perf trace: Do not accept --no-syscalls together with -e
> 
> Jiri Olsa (8):
>   perf thread_map: Add has() method
>   perf cpu_map: Add has() method
>   perf sched: Add compact display option
>   perf sched: Use color_fprintf for output
>   perf thread_map: Make new_by_tid_str constructor public
>   perf sched map: Color given pids
>   perf sched map: Color given cpus
>   perf sched map: Display only given cpus
> 
>  tools/perf/Documentation/perf-sched.txt |  16 +++
>  tools/perf/builtin-sched.c  | 198 
> ++--
>  tools/perf/builtin-script.c |  14 +--
>  tools/perf/builtin-trace.c  |  48 +---
>  tools/perf/util/cpumap.c|  12 ++
>  tools/perf/util/cpumap.h|   2 +
>  tools/perf/util/evsel.c | 131 +
>  tools/perf/util/evsel.h |  13 +++
>  tools/perf/util/session.c   | 130 -
>  tools/perf/util/session.h   |  13 ---
>  tools/perf/util/thread_map.c|  14 ++-
>  tools/perf/util/thread_map.h|   3 +
>  12 files changed, 416 insertions(+), 178 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-04-13 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 31d50c551e30923b86a1b5b420920dd1927fa63b:

  perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (2016-04-13 
11:56:36 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160413

for you to fetch changes up to 59247e33ff494e3643cdff54b64bf72575052b76:

  perf trace: Do not accept --no-syscalls together with -e (2016-04-13 10:11:52 
-0300)


perf/core improvements and fixes:

User visible:

- Print callchains asked for events requested via 'perf trace --event' too:
  (Arnaldo Carvalho de Melo)

  # trace -e nanosleep --call dwarf --event sched:sched_switch/call-graph=fp/ 
usleep 1
   0.346 (0.005 ms): usleep/24428 nanosleep(rqtp: 0x7fffa15a0540) ...
   0.346 (): sched:sched_switch:usleep:24428 [120] S ==> swapper/3:0 
[120])
__schedule+0xfe200402 ([kernel.kallsyms])
schedule+0xfe200035 ([kernel.kallsyms])
do_nanosleep+0xfe20006f ([kernel.kallsyms])
hrtimer_nanosleep+0xfe2000dc 
([kernel.kallsyms])
sys_nanosleep+0xfe20007a ([kernel.kallsyms])
do_syscall_64+0xfe200062 ([kernel.kallsyms])
return_from_SYSCALL_64+0xfe20 
([kernel.kallsyms])
__nanosleep+0x005b8d602010 
(/usr/lib64/libc-2.22.so)
   0.400 (0.059 ms): usleep/24428  ... [continued]: nanosleep()) = 0
__nanosleep+0x10 (/usr/lib64/libc-2.22.so)
usleep+0x34 (/usr/lib64/libc-2.22.so)
main+0x1eb (/usr/bin/usleep)
__libc_start_main+0xf0 
(/usr/lib64/libc-2.22.so)
_start+0x29 (/usr/bin/usleep)

- Allow requesting that some CPUs or PIDs be highlighted in 'perf sched map' 
(Jiri Olsa)

- Compact 'perf sched map' to show just CPUs with activity, improving the output
  in high core count systems (Jiri Olsa)

- Fix segfault with 'perf trace --no-syscalls -e syscall-names' by bailing out
  such request, doesn't make sense to ask for no syscalls and then specify which
  ones should be printed (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (3):
  perf trace: Support callchains for --event too
  perf evsel: Move some methods from session.[ch] to evsel.[ch]
  perf trace: Do not accept --no-syscalls together with -e

Jiri Olsa (8):
  perf thread_map: Add has() method
  perf cpu_map: Add has() method
  perf sched: Add compact display option
  perf sched: Use color_fprintf for output
  perf thread_map: Make new_by_tid_str constructor public
  perf sched map: Color given pids
  perf sched map: Color given cpus
  perf sched map: Display only given cpus

 tools/perf/Documentation/perf-sched.txt |  16 +++
 tools/perf/builtin-sched.c  | 198 ++--
 tools/perf/builtin-script.c |  14 +--
 tools/perf/builtin-trace.c  |  48 +---
 tools/perf/util/cpumap.c|  12 ++
 tools/perf/util/cpumap.h|   2 +
 tools/perf/util/evsel.c | 131 +
 tools/perf/util/evsel.h |  13 +++
 tools/perf/util/session.c   | 130 -
 tools/perf/util/session.h   |  13 ---
 tools/perf/util/thread_map.c|  14 ++-
 tools/perf/util/thread_map.h|   3 +
 12 files changed, 416 insertions(+), 178 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-04-13 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 31d50c551e30923b86a1b5b420920dd1927fa63b:

  perf/x86/amd/uncore: Do not register a task ctx for uncore PMUs (2016-04-13 
11:56:36 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160413

for you to fetch changes up to 59247e33ff494e3643cdff54b64bf72575052b76:

  perf trace: Do not accept --no-syscalls together with -e (2016-04-13 10:11:52 
-0300)


perf/core improvements and fixes:

User visible:

- Print callchains asked for events requested via 'perf trace --event' too:
  (Arnaldo Carvalho de Melo)

  # trace -e nanosleep --call dwarf --event sched:sched_switch/call-graph=fp/ 
usleep 1
   0.346 (0.005 ms): usleep/24428 nanosleep(rqtp: 0x7fffa15a0540) ...
   0.346 (): sched:sched_switch:usleep:24428 [120] S ==> swapper/3:0 
[120])
__schedule+0xfe200402 ([kernel.kallsyms])
schedule+0xfe200035 ([kernel.kallsyms])
do_nanosleep+0xfe20006f ([kernel.kallsyms])
hrtimer_nanosleep+0xfe2000dc 
([kernel.kallsyms])
sys_nanosleep+0xfe20007a ([kernel.kallsyms])
do_syscall_64+0xfe200062 ([kernel.kallsyms])
return_from_SYSCALL_64+0xfe20 
([kernel.kallsyms])
__nanosleep+0x005b8d602010 
(/usr/lib64/libc-2.22.so)
   0.400 (0.059 ms): usleep/24428  ... [continued]: nanosleep()) = 0
__nanosleep+0x10 (/usr/lib64/libc-2.22.so)
usleep+0x34 (/usr/lib64/libc-2.22.so)
main+0x1eb (/usr/bin/usleep)
__libc_start_main+0xf0 
(/usr/lib64/libc-2.22.so)
_start+0x29 (/usr/bin/usleep)

- Allow requesting that some CPUs or PIDs be highlighted in 'perf sched map' 
(Jiri Olsa)

- Compact 'perf sched map' to show just CPUs with activity, improving the output
  in high core count systems (Jiri Olsa)

- Fix segfault with 'perf trace --no-syscalls -e syscall-names' by bailing out
  such request, doesn't make sense to ask for no syscalls and then specify which
  ones should be printed (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (3):
  perf trace: Support callchains for --event too
  perf evsel: Move some methods from session.[ch] to evsel.[ch]
  perf trace: Do not accept --no-syscalls together with -e

Jiri Olsa (8):
  perf thread_map: Add has() method
  perf cpu_map: Add has() method
  perf sched: Add compact display option
  perf sched: Use color_fprintf for output
  perf thread_map: Make new_by_tid_str constructor public
  perf sched map: Color given pids
  perf sched map: Color given cpus
  perf sched map: Display only given cpus

 tools/perf/Documentation/perf-sched.txt |  16 +++
 tools/perf/builtin-sched.c  | 198 ++--
 tools/perf/builtin-script.c |  14 +--
 tools/perf/builtin-trace.c  |  48 +---
 tools/perf/util/cpumap.c|  12 ++
 tools/perf/util/cpumap.h|   2 +
 tools/perf/util/evsel.c | 131 +
 tools/perf/util/evsel.h |  13 +++
 tools/perf/util/session.c   | 130 -
 tools/perf/util/session.h   |  13 ---
 tools/perf/util/thread_map.c|  14 ++-
 tools/perf/util/thread_map.h|   3 +
 12 files changed, 416 insertions(+), 178 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-03-29 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of my previously submitted
acme/perf/urgent, so that we can test Andi's udis86 work on 'perf script'.

This is now test built in several more docker images, including
minimal feature cross-compiler builds ones:

  # dm
  minimal-debian-experimental-x-mips64: Ok
  minimal-debian-experimental-x-mips64el: Ok
  minimal-debian-experimental-x-mipsel: Ok
  minimal-ubuntu-x-arm: Ok
  minimal-ubuntu-x-arm64: Ok
  minimal-ubuntu-x-ppc64: Ok
  minimal-ubuntu-x-ppc64el: Ok
  alldeps-debian: Ok
  alldeps-mageia: Ok
  alldeps-rhel7: Ok
  alldeps-centos: Ok
  alldeps-opensuse: Ok
  alldeps-ubuntu: Ok
  #

Those x-arch cross docker images already allow me to avoid introducing
bugs like the powerpc one Sukadev spotted.

I need to figure out how to install more devel packages for things like
libelf-devel:arch in debian/ubuntu, I almost got there with 'dpkg
--add-architecture arch', but I still need to figure out  how to find the list
of multilib enabled devel packages to allow me to have devel packages for other
arches than the native one...

- Arnaldo

The following changes since commit 3ea223adcb0c5893a6dc8ed3a84dce264cbb61d6:

  perf tools: Add missing initialization of perf_sample.cpumode in synthesized 
samples (2016-03-29 20:03:56 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160329

for you to fetch changes up to 7c2927ccf0daf630cf66570f061c860c73df23c7:

  perf script: Add support for printing assembler (2016-03-29 20:15:16 -0300)


perf/core improvements and fixes:

User visible:

- Add support for printing assembler using the udis86 library (Andi Kleen)

  E.g.:

  # perf record -e intel_pt// true
  # perf script -F ip,sym,asm
  
  8106399d native_write_msr_safe
ret
  81013728 pt_config
ret $0x5b81
  810139e0 pt_event_start
ret
  810144c3 pt_event_add
jnz 0x81014489
  81014491 pt_event_add
ret
  8119df62 event_sched_in.isra.93
jz 0x8119df69
  8119df78 event_sched_in.isra.93
jz event_sched_in.isra.93+506
  8119e069 event_sched_in.isra.93
call 0x81c29600
  

- Add support for skipping itrace instructions, useful to fast forward
  processor trace (Intel PT, BTS) to right after initialization code at the 
start
  of a workload (Andi Kleen)

- Add support for backtraces in perl 'perf script's (Dima Kogan)

- Add -U/-K (--all-user/--all-kernel) options to 'perf mem' (Jiri Olsa)

- Make -f/--force option documentation consistent across tools (Jiri Olsa)

Infrastructure:

- Add 'perf test' to check for event times (Jiri Olsa)

- 'perf config' cleanups (Taeung Song)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (3):
  perf tools: Add support for skipping itrace instructions
  perf tools: Add probing for udev86 library
  perf script: Add support for printing assembler

Dima Kogan (1):
  perf script perl: Perl scripts now get a backtrace, like the python ones

Jiri Olsa (4):
  perf mem: Add -U/-K (--all-user/--all-kernel) options
  perf tools: Make hists__collapse_insert_entry static
  perf tools: Make -f/--force option documentation consistent across tools
  perf tests: Add test to check for event times

Taeung Song (3):
  perf config: Remove duplicated set_buildid_dir calls
  perf config: Rework buildid_dir_command_config to perf_buildid_config
  perf config: Rename 'v' to 'home' in set_buildid_dir()

 tools/build/Makefile.feature   |   6 +-
 tools/build/feature/Makefile   |   8 +-
 tools/build/feature/test-all.c |   5 +
 tools/build/feature/test-udis86.c  |   8 +
 tools/perf/Documentation/intel-pt.txt  |   7 +
 tools/perf/Documentation/itrace.txt|   8 +
 tools/perf/Documentation/perf-annotate.txt |   2 +-
 tools/perf/Documentation/perf-diff.txt |   2 +-
 tools/perf/Documentation/perf-mem.txt  |   8 +
 tools/perf/Documentation/perf-report.txt   |   2 +-
 tools/perf/Documentation/perf-script.txt   |   8 +-
 tools/perf/builtin-mem.c   |  11 +-
 tools/perf/builtin-script.c| 107 +-
 tools/perf/config/Makefile |   5 +
 tools/perf/perf.c  |   3 +-
 tools/perf/tests/Build |   1 +
 tools/perf/tests/builtin-test.c|   4 +
 tools/perf/tests/event-times.c | 236 +
 tools/perf/tests/tests.h   |   1 +
 tools/perf/util/auxtrace.c |   7 +
 

[GIT PULL 00/11] perf/core improvements and fixes

2016-03-29 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of my previously submitted
acme/perf/urgent, so that we can test Andi's udis86 work on 'perf script'.

This is now test built in several more docker images, including
minimal feature cross-compiler builds ones:

  # dm
  minimal-debian-experimental-x-mips64: Ok
  minimal-debian-experimental-x-mips64el: Ok
  minimal-debian-experimental-x-mipsel: Ok
  minimal-ubuntu-x-arm: Ok
  minimal-ubuntu-x-arm64: Ok
  minimal-ubuntu-x-ppc64: Ok
  minimal-ubuntu-x-ppc64el: Ok
  alldeps-debian: Ok
  alldeps-mageia: Ok
  alldeps-rhel7: Ok
  alldeps-centos: Ok
  alldeps-opensuse: Ok
  alldeps-ubuntu: Ok
  #

Those x-arch cross docker images already allow me to avoid introducing
bugs like the powerpc one Sukadev spotted.

I need to figure out how to install more devel packages for things like
libelf-devel:arch in debian/ubuntu, I almost got there with 'dpkg
--add-architecture arch', but I still need to figure out  how to find the list
of multilib enabled devel packages to allow me to have devel packages for other
arches than the native one...

- Arnaldo

The following changes since commit 3ea223adcb0c5893a6dc8ed3a84dce264cbb61d6:

  perf tools: Add missing initialization of perf_sample.cpumode in synthesized 
samples (2016-03-29 20:03:56 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160329

for you to fetch changes up to 7c2927ccf0daf630cf66570f061c860c73df23c7:

  perf script: Add support for printing assembler (2016-03-29 20:15:16 -0300)


perf/core improvements and fixes:

User visible:

- Add support for printing assembler using the udis86 library (Andi Kleen)

  E.g.:

  # perf record -e intel_pt// true
  # perf script -F ip,sym,asm
  
  8106399d native_write_msr_safe
ret
  81013728 pt_config
ret $0x5b81
  810139e0 pt_event_start
ret
  810144c3 pt_event_add
jnz 0x81014489
  81014491 pt_event_add
ret
  8119df62 event_sched_in.isra.93
jz 0x8119df69
  8119df78 event_sched_in.isra.93
jz event_sched_in.isra.93+506
  8119e069 event_sched_in.isra.93
call 0x81c29600
  

- Add support for skipping itrace instructions, useful to fast forward
  processor trace (Intel PT, BTS) to right after initialization code at the 
start
  of a workload (Andi Kleen)

- Add support for backtraces in perl 'perf script's (Dima Kogan)

- Add -U/-K (--all-user/--all-kernel) options to 'perf mem' (Jiri Olsa)

- Make -f/--force option documentation consistent across tools (Jiri Olsa)

Infrastructure:

- Add 'perf test' to check for event times (Jiri Olsa)

- 'perf config' cleanups (Taeung Song)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (3):
  perf tools: Add support for skipping itrace instructions
  perf tools: Add probing for udev86 library
  perf script: Add support for printing assembler

Dima Kogan (1):
  perf script perl: Perl scripts now get a backtrace, like the python ones

Jiri Olsa (4):
  perf mem: Add -U/-K (--all-user/--all-kernel) options
  perf tools: Make hists__collapse_insert_entry static
  perf tools: Make -f/--force option documentation consistent across tools
  perf tests: Add test to check for event times

Taeung Song (3):
  perf config: Remove duplicated set_buildid_dir calls
  perf config: Rework buildid_dir_command_config to perf_buildid_config
  perf config: Rename 'v' to 'home' in set_buildid_dir()

 tools/build/Makefile.feature   |   6 +-
 tools/build/feature/Makefile   |   8 +-
 tools/build/feature/test-all.c |   5 +
 tools/build/feature/test-udis86.c  |   8 +
 tools/perf/Documentation/intel-pt.txt  |   7 +
 tools/perf/Documentation/itrace.txt|   8 +
 tools/perf/Documentation/perf-annotate.txt |   2 +-
 tools/perf/Documentation/perf-diff.txt |   2 +-
 tools/perf/Documentation/perf-mem.txt  |   8 +
 tools/perf/Documentation/perf-report.txt   |   2 +-
 tools/perf/Documentation/perf-script.txt   |   8 +-
 tools/perf/builtin-mem.c   |  11 +-
 tools/perf/builtin-script.c| 107 +-
 tools/perf/config/Makefile |   5 +
 tools/perf/perf.c  |   3 +-
 tools/perf/tests/Build |   1 +
 tools/perf/tests/builtin-test.c|   4 +
 tools/perf/tests/event-times.c | 236 +
 tools/perf/tests/tests.h   |   1 +
 tools/perf/util/auxtrace.c |   7 +
 tools/perf/util/auxtrace.h  

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-05 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Em Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar escreveu:
>  
> > Hm, there's a 'perf stat' regression that I can see:
> >
> > Before:
> >   #1.59  stalled cycles 
> > per insn
> >  1,818,488,088  branches  #  151.667 M/sec  
> > 
> > 
> > After:
> > 
> >  triton:~/tip> perf stat -a sleep 1
> > 
> >   24166678  branches  #2.016 M/sec  
> > 
> > 
> > ... see how the numbers became human-unreadable, losing the big-number 
> > separator?
> > 
> > I suspect it's due to the following commit:
> > 
> >   fa184776ac27 perf stat: Check existence of frontend/backed stalled cycles
> 
> Ok, I inserted Jiri's patch fixing the problem just before the commit
> (fa184776ac27) that triggers it, so that we don't break bisection for
> human-readable numbers in 'perf stat'.
> 
> Its all in a new signed tag, that combines the two outstanding ones
> (perf-core-for-mingo-20160229 + perf-core-for-mingo-20160302), please
> consider pulling.
> 
> - Arnaldo
> 
> The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> 
>   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160303
> 
> for you to fetch changes up to fb4605ba47e772ff9d62d1d54218a832ec8b3e1d:
> 
>   perf stat: Check for frontend stalled for metrics (2016-03-03 11:10:40 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> Kleen)
> 
> - Implement CSV metrics output in 'perf stat' (Andi Kleen)
> 
> - Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)
> 
> - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> Olsa)
> 
> - Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
>   that is also the name of some syscalls arguments, to "__syscall_nr", to
>   avoid having multiple fields with the same name, that was breaking the
>   python script skeleton generator from perf.data files (Taeung Song)
> 
> - Support converting data from bpf events in 'perf data' (Wang Nan)
> 
> - Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)
> 
> - Fix output of %llu for 64 bit values read on 32 bit machines in 
> libtraceevent (Steven Rostedt)
> 
> - Fix time stamp rounding issue in libtraceevent (Chaos.Chen)
> 
> Infrastructure:
> 
> - Fix setlocale() breakage in the pmu parsing code (Jiri Olsa)
> 
> - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> 
> - Librarize some 'perf record' bits to allow handling multiple perf.data
>   files per session (Wang Nan)
> 
> - Ensure return non-zero rc when mmap fails in 'perf record' (Wang Nan)
> 
> - Fix double free on 'command_line' in a error path in 'perf script' (Colin 
> Ian King)
> 
> - Initialize struct sigaction 'sa_flags' field in a 'perf test' entry (Colin 
> Ian King)
> 
> - Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)
> 
> - Use .s extension for preprocessed assembler code (Masahiro Yamada)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (4):
>   perf stat: Check existence of frontend/backed stalled cycles
>   perf stat: Implement CSV metrics output
>   perf stat: Support metrics in --per-core/socket mode
>   perf stat: Check for frontend stalled for metrics
> 
> Arnaldo Carvalho de Melo (1):
>   perf test: Fix hists related entries
> 
> Chaos.Chen (1):
>   tools lib traceevent: Fix time stamp rounding issue
> 
> Colin Ian King (3):
>   perf script: Fix double free on command_line
>   perf tests: Initialize sa.sa_flags
>   tools/power turbostat: fix various build warnings
> 
> Jiri Olsa (2):
>   perf tools: Fix python extension build
>   perf tools: Fix locale handling in pmu parsing
> 
> Masahiro Yamada (1):
>   tools build: Use .s extension for preprocessed assembler code
> 
> Steven Rostedt (1):
>   tools lib traceevent: Split pevent_print_event() into specific 
> functionality functions
> 
> Steven Rostedt (Red Hat) (2):
>   tools lib traceevent: Set int_array fields to NULL if freeing from error
>   tools lib traceevent: Fix output of %llu for 64 bit values read on 32 
> bit machines
> 
> Taeung Song (2):
>   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
>   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> "__syscall_nr:
> 
> Wang Nan (6):
>   perf data: Support converting data from bpf_perf_event_output()
>   perf data: Explicitly set byte order for 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-05 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Em Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar escreveu:
>  
> > Hm, there's a 'perf stat' regression that I can see:
> >
> > Before:
> >   #1.59  stalled cycles 
> > per insn
> >  1,818,488,088  branches  #  151.667 M/sec  
> > 
> > 
> > After:
> > 
> >  triton:~/tip> perf stat -a sleep 1
> > 
> >   24166678  branches  #2.016 M/sec  
> > 
> > 
> > ... see how the numbers became human-unreadable, losing the big-number 
> > separator?
> > 
> > I suspect it's due to the following commit:
> > 
> >   fa184776ac27 perf stat: Check existence of frontend/backed stalled cycles
> 
> Ok, I inserted Jiri's patch fixing the problem just before the commit
> (fa184776ac27) that triggers it, so that we don't break bisection for
> human-readable numbers in 'perf stat'.
> 
> Its all in a new signed tag, that combines the two outstanding ones
> (perf-core-for-mingo-20160229 + perf-core-for-mingo-20160302), please
> consider pulling.
> 
> - Arnaldo
> 
> The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> 
>   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160303
> 
> for you to fetch changes up to fb4605ba47e772ff9d62d1d54218a832ec8b3e1d:
> 
>   perf stat: Check for frontend stalled for metrics (2016-03-03 11:10:40 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> Kleen)
> 
> - Implement CSV metrics output in 'perf stat' (Andi Kleen)
> 
> - Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)
> 
> - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> Olsa)
> 
> - Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
>   that is also the name of some syscalls arguments, to "__syscall_nr", to
>   avoid having multiple fields with the same name, that was breaking the
>   python script skeleton generator from perf.data files (Taeung Song)
> 
> - Support converting data from bpf events in 'perf data' (Wang Nan)
> 
> - Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)
> 
> - Fix output of %llu for 64 bit values read on 32 bit machines in 
> libtraceevent (Steven Rostedt)
> 
> - Fix time stamp rounding issue in libtraceevent (Chaos.Chen)
> 
> Infrastructure:
> 
> - Fix setlocale() breakage in the pmu parsing code (Jiri Olsa)
> 
> - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> 
> - Librarize some 'perf record' bits to allow handling multiple perf.data
>   files per session (Wang Nan)
> 
> - Ensure return non-zero rc when mmap fails in 'perf record' (Wang Nan)
> 
> - Fix double free on 'command_line' in a error path in 'perf script' (Colin 
> Ian King)
> 
> - Initialize struct sigaction 'sa_flags' field in a 'perf test' entry (Colin 
> Ian King)
> 
> - Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)
> 
> - Use .s extension for preprocessed assembler code (Masahiro Yamada)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (4):
>   perf stat: Check existence of frontend/backed stalled cycles
>   perf stat: Implement CSV metrics output
>   perf stat: Support metrics in --per-core/socket mode
>   perf stat: Check for frontend stalled for metrics
> 
> Arnaldo Carvalho de Melo (1):
>   perf test: Fix hists related entries
> 
> Chaos.Chen (1):
>   tools lib traceevent: Fix time stamp rounding issue
> 
> Colin Ian King (3):
>   perf script: Fix double free on command_line
>   perf tests: Initialize sa.sa_flags
>   tools/power turbostat: fix various build warnings
> 
> Jiri Olsa (2):
>   perf tools: Fix python extension build
>   perf tools: Fix locale handling in pmu parsing
> 
> Masahiro Yamada (1):
>   tools build: Use .s extension for preprocessed assembler code
> 
> Steven Rostedt (1):
>   tools lib traceevent: Split pevent_print_event() into specific 
> functionality functions
> 
> Steven Rostedt (Red Hat) (2):
>   tools lib traceevent: Set int_array fields to NULL if freeing from error
>   tools lib traceevent: Fix output of %llu for 64 bit values read on 32 
> bit machines
> 
> Taeung Song (2):
>   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
>   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> "__syscall_nr:
> 
> Wang Nan (6):
>   perf data: Support converting data from bpf_perf_event_output()
>   perf data: Explicitly set byte order for integer types
>   perf record: Use 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Arnaldo Carvalho de Melo
Em Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar escreveu:
 
> Hm, there's a 'perf stat' regression that I can see:
>
> Before:
>   #1.59  stalled cycles 
> per insn
>  1,818,488,088  branches  #  151.667 M/sec
>   
> 
> After:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>   24166678  branches  #2.016 M/sec
>   
> 
> ... see how the numbers became human-unreadable, losing the big-number 
> separator?
> 
> I suspect it's due to the following commit:
> 
>   fa184776ac27 perf stat: Check existence of frontend/backed stalled cycles

Ok, I inserted Jiri's patch fixing the problem just before the commit
(fa184776ac27) that triggers it, so that we don't break bisection for
human-readable numbers in 'perf stat'.

Its all in a new signed tag, that combines the two outstanding ones
(perf-core-for-mingo-20160229 + perf-core-for-mingo-20160302), please
consider pulling.

- Arnaldo

The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:

  perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160303

for you to fetch changes up to fb4605ba47e772ff9d62d1d54218a832ec8b3e1d:

  perf stat: Check for frontend stalled for metrics (2016-03-03 11:10:40 -0300)


perf/core improvements and fixes:

User visible:

- Check existence of frontend/backed stalled cycles in 'perf stat' (Andi Kleen)

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Avoid installing .o files from tools/lib/ into the python extension (Jiri 
Olsa)

- Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
  that is also the name of some syscalls arguments, to "__syscall_nr", to
  avoid having multiple fields with the same name, that was breaking the
  python script skeleton generator from perf.data files (Taeung Song)

- Support converting data from bpf events in 'perf data' (Wang Nan)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix setlocale() breakage in the pmu parsing code (Jiri Olsa)

- Split libtraceevent's pevent_print_event() (Steven Rostedt)

- Librarize some 'perf record' bits to allow handling multiple perf.data
  files per session (Wang Nan)

- Ensure return non-zero rc when mmap fails in 'perf record' (Wang Nan)

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entry (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (4):
  perf stat: Check existence of frontend/backed stalled cycles
  perf stat: Implement CSV metrics output
  perf stat: Support metrics in --per-core/socket mode
  perf stat: Check for frontend stalled for metrics

Arnaldo Carvalho de Melo (1):
  perf test: Fix hists related entries

Chaos.Chen (1):
  tools lib traceevent: Fix time stamp rounding issue

Colin Ian King (3):
  perf script: Fix double free on command_line
  perf tests: Initialize sa.sa_flags
  tools/power turbostat: fix various build warnings

Jiri Olsa (2):
  perf tools: Fix python extension build
  perf tools: Fix locale handling in pmu parsing

Masahiro Yamada (1):
  tools build: Use .s extension for preprocessed assembler code

Steven Rostedt (1):
  tools lib traceevent: Split pevent_print_event() into specific 
functionality functions

Steven Rostedt (Red Hat) (2):
  tools lib traceevent: Set int_array fields to NULL if freeing from error
  tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit 
machines

Taeung Song (2):
  perf trace: Check and discard not only 'nr' but also '__syscall_nr'
  tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
"__syscall_nr:

Wang Nan (6):
  perf data: Support converting data from bpf_perf_event_output()
  perf data: Explicitly set byte order for integer types
  perf record: Use WARN_ONCE to replace 'if' condition
  perf record: Extract synthesize code to record__synthesize()
  perf record: Introduce record__finish_output() to finish a perf.data
  perf record: Ensure return non-zero rc when mmap fail

 kernel/trace/trace_syscalls.c  |  16 +-
 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Arnaldo Carvalho de Melo
Em Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar escreveu:
 
> Hm, there's a 'perf stat' regression that I can see:
>
> Before:
>   #1.59  stalled cycles 
> per insn
>  1,818,488,088  branches  #  151.667 M/sec
>   
> 
> After:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>   24166678  branches  #2.016 M/sec
>   
> 
> ... see how the numbers became human-unreadable, losing the big-number 
> separator?
> 
> I suspect it's due to the following commit:
> 
>   fa184776ac27 perf stat: Check existence of frontend/backed stalled cycles

Ok, I inserted Jiri's patch fixing the problem just before the commit
(fa184776ac27) that triggers it, so that we don't break bisection for
human-readable numbers in 'perf stat'.

Its all in a new signed tag, that combines the two outstanding ones
(perf-core-for-mingo-20160229 + perf-core-for-mingo-20160302), please
consider pulling.

- Arnaldo

The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:

  perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160303

for you to fetch changes up to fb4605ba47e772ff9d62d1d54218a832ec8b3e1d:

  perf stat: Check for frontend stalled for metrics (2016-03-03 11:10:40 -0300)


perf/core improvements and fixes:

User visible:

- Check existence of frontend/backed stalled cycles in 'perf stat' (Andi Kleen)

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Avoid installing .o files from tools/lib/ into the python extension (Jiri 
Olsa)

- Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
  that is also the name of some syscalls arguments, to "__syscall_nr", to
  avoid having multiple fields with the same name, that was breaking the
  python script skeleton generator from perf.data files (Taeung Song)

- Support converting data from bpf events in 'perf data' (Wang Nan)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix setlocale() breakage in the pmu parsing code (Jiri Olsa)

- Split libtraceevent's pevent_print_event() (Steven Rostedt)

- Librarize some 'perf record' bits to allow handling multiple perf.data
  files per session (Wang Nan)

- Ensure return non-zero rc when mmap fails in 'perf record' (Wang Nan)

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entry (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (4):
  perf stat: Check existence of frontend/backed stalled cycles
  perf stat: Implement CSV metrics output
  perf stat: Support metrics in --per-core/socket mode
  perf stat: Check for frontend stalled for metrics

Arnaldo Carvalho de Melo (1):
  perf test: Fix hists related entries

Chaos.Chen (1):
  tools lib traceevent: Fix time stamp rounding issue

Colin Ian King (3):
  perf script: Fix double free on command_line
  perf tests: Initialize sa.sa_flags
  tools/power turbostat: fix various build warnings

Jiri Olsa (2):
  perf tools: Fix python extension build
  perf tools: Fix locale handling in pmu parsing

Masahiro Yamada (1):
  tools build: Use .s extension for preprocessed assembler code

Steven Rostedt (1):
  tools lib traceevent: Split pevent_print_event() into specific 
functionality functions

Steven Rostedt (Red Hat) (2):
  tools lib traceevent: Set int_array fields to NULL if freeing from error
  tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit 
machines

Taeung Song (2):
  perf trace: Check and discard not only 'nr' but also '__syscall_nr'
  tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
"__syscall_nr:

Wang Nan (6):
  perf data: Support converting data from bpf_perf_event_output()
  perf data: Explicitly set byte order for integer types
  perf record: Use WARN_ONCE to replace 'if' condition
  perf record: Extract synthesize code to record__synthesize()
  perf record: Introduce record__finish_output() to finish a perf.data
  perf record: Ensure return non-zero rc when mmap fail

 kernel/trace/trace_syscalls.c  |  16 +-
 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Jiri Olsa
On Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar wrote:
> 
> * Arnaldo Carvalho de Melo  wrote:
> 
> > Hi Ingo,
> > 
> > Please consider pulling,
> > 
> > - Arnaldo
> > 
> > The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> > 
> >   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229
> > 
> > for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:
> > 
> >   perf record: Ensure return non-zero rc when mmap fail (2016-02-29 
> > 12:44:15 -0300)
> > 
> > 
> > perf/core improvements and fixes:
> > 
> > User visible:
> > 
> > - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> > Kleen)
> > 
> > - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> > Olsa)
> > 
> > - Rename the tracepoint '/format' field that carries the syscall ID from 
> > 'nr',
> >   that is also the name of some syscalls arguments, to "__syscall_nr", to
> >   avoid having multiple fields with the same name, that was breaking the
> >   python script skeleton generator from perf.data files (Taeung Song)
> > 
> > - Support converting data from bpf events in 'perf data' (Wang Nan)
> > 
> > Infrastructure:
> > 
> > - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> > 
> > - Librarize some 'perf record' bits to allow handling multiple perf.data
> >   files per session (Wang Nan)
> > 
> > - Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)
> > 
> > Signed-off-by: Arnaldo Carvalho de Melo 
> > 
> > 
> > Andi Kleen (1):
> >   perf stat: Check existence of frontend/backed stalled cycles
> 
> > 
> > Jiri Olsa (1):
> >   perf tools: Fix python extension build
> > 
> > Steven Rostedt (1):
> >   tools lib traceevent: Split pevent_print_event() into specific 
> > functionality functions
> > 
> > Taeung Song (2):
> >   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
> >   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> > "__syscall_nr:
> > 
> > Wang Nan (6):
> >   perf data: Support converting data from bpf_perf_event_output()
> >   perf data: Explicitly set byte order for integer types
> >   perf record: Use WARN_ONCE to replace 'if' condition
> >   perf record: Extract synthesize code to record__synthesize()
> >   perf record: Introduce record__finish_output() to finish a perf.data
> >   perf record: Ensure return non-zero rc when mmap fail
> > 
> >  kernel/trace/trace_syscalls.c  |  16 ++--
> >  tools/lib/traceevent/event-parse.c | 136 +++---
> >  tools/lib/traceevent/event-parse.h |  13 +++
> >  tools/perf/builtin-record.c| 168 
> > ++---
> >  tools/perf/builtin-stat.c  |  22 -
> >  tools/perf/builtin-trace.c |   8 +-
> >  tools/perf/util/data-convert-bt.c  | 118 +-
> >  tools/perf/util/setup.py   |   4 +
> >  8 files changed, 372 insertions(+), 113 deletions(-)
> 
> Hm, there's a 'perf stat' regression that I can see:
> 
> Before:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>  Performance counter stats for 'system wide':
> 
>   11990.023100  task-clock (msec) #   11.981 CPUs utilized
>   
>  8,802  context-switches  #0.734 K/sec
>   
>543  cpu-migrations#0.045 K/sec
>   
> 97,375  page-faults   #0.008 M/sec
>   
>  9,854,385,894  cycles#0.822 GHz  
>   
> 15,274,841,152  stalled-cycles-frontend   #  155.01% frontend cycles 
> idle   
>  stalled-cycles-backend   
>  9,634,486,137  instructions  #0.98  insn per cycle   
>   
>   #1.59  stalled cycles 
> per insn
>  1,818,488,088  branches  #  151.667 M/sec
>   
> 46,365,120  branch-misses #2.55% of all branches  
>   
> 
>1.000741599 seconds time elapsed
> 
> After:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>  Performance counter stats for 'system wide':
> 
>   11989.280397  task-clock (msec) #   11.981 CPUs utilized
>   
>   1299  context-switches  #0.108 K/sec
>   
>  6  cpu-migrations#0.001 K/sec
>   
> 70  page-faults   #0.006 K/sec
>   
>  127008602  cycles 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Jiri Olsa
On Thu, Mar 03, 2016 at 09:21:30AM +0100, Ingo Molnar wrote:
> 
> * Arnaldo Carvalho de Melo  wrote:
> 
> > Hi Ingo,
> > 
> > Please consider pulling,
> > 
> > - Arnaldo
> > 
> > The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> > 
> >   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229
> > 
> > for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:
> > 
> >   perf record: Ensure return non-zero rc when mmap fail (2016-02-29 
> > 12:44:15 -0300)
> > 
> > 
> > perf/core improvements and fixes:
> > 
> > User visible:
> > 
> > - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> > Kleen)
> > 
> > - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> > Olsa)
> > 
> > - Rename the tracepoint '/format' field that carries the syscall ID from 
> > 'nr',
> >   that is also the name of some syscalls arguments, to "__syscall_nr", to
> >   avoid having multiple fields with the same name, that was breaking the
> >   python script skeleton generator from perf.data files (Taeung Song)
> > 
> > - Support converting data from bpf events in 'perf data' (Wang Nan)
> > 
> > Infrastructure:
> > 
> > - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> > 
> > - Librarize some 'perf record' bits to allow handling multiple perf.data
> >   files per session (Wang Nan)
> > 
> > - Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)
> > 
> > Signed-off-by: Arnaldo Carvalho de Melo 
> > 
> > 
> > Andi Kleen (1):
> >   perf stat: Check existence of frontend/backed stalled cycles
> 
> > 
> > Jiri Olsa (1):
> >   perf tools: Fix python extension build
> > 
> > Steven Rostedt (1):
> >   tools lib traceevent: Split pevent_print_event() into specific 
> > functionality functions
> > 
> > Taeung Song (2):
> >   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
> >   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> > "__syscall_nr:
> > 
> > Wang Nan (6):
> >   perf data: Support converting data from bpf_perf_event_output()
> >   perf data: Explicitly set byte order for integer types
> >   perf record: Use WARN_ONCE to replace 'if' condition
> >   perf record: Extract synthesize code to record__synthesize()
> >   perf record: Introduce record__finish_output() to finish a perf.data
> >   perf record: Ensure return non-zero rc when mmap fail
> > 
> >  kernel/trace/trace_syscalls.c  |  16 ++--
> >  tools/lib/traceevent/event-parse.c | 136 +++---
> >  tools/lib/traceevent/event-parse.h |  13 +++
> >  tools/perf/builtin-record.c| 168 
> > ++---
> >  tools/perf/builtin-stat.c  |  22 -
> >  tools/perf/builtin-trace.c |   8 +-
> >  tools/perf/util/data-convert-bt.c  | 118 +-
> >  tools/perf/util/setup.py   |   4 +
> >  8 files changed, 372 insertions(+), 113 deletions(-)
> 
> Hm, there's a 'perf stat' regression that I can see:
> 
> Before:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>  Performance counter stats for 'system wide':
> 
>   11990.023100  task-clock (msec) #   11.981 CPUs utilized
>   
>  8,802  context-switches  #0.734 K/sec
>   
>543  cpu-migrations#0.045 K/sec
>   
> 97,375  page-faults   #0.008 M/sec
>   
>  9,854,385,894  cycles#0.822 GHz  
>   
> 15,274,841,152  stalled-cycles-frontend   #  155.01% frontend cycles 
> idle   
>  stalled-cycles-backend   
>  9,634,486,137  instructions  #0.98  insn per cycle   
>   
>   #1.59  stalled cycles 
> per insn
>  1,818,488,088  branches  #  151.667 M/sec
>   
> 46,365,120  branch-misses #2.55% of all branches  
>   
> 
>1.000741599 seconds time elapsed
> 
> After:
> 
>  triton:~/tip> perf stat -a sleep 1
> 
>  Performance counter stats for 'system wide':
> 
>   11989.280397  task-clock (msec) #   11.981 CPUs utilized
>   
>   1299  context-switches  #0.108 K/sec
>   
>  6  cpu-migrations#0.001 K/sec
>   
> 70  page-faults   #0.006 K/sec
>   
>  127008602  cycles#0.011 GHz 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> 
>   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229
> 
> for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:
> 
>   perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> Kleen)
> 
> - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> Olsa)
> 
> - Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
>   that is also the name of some syscalls arguments, to "__syscall_nr", to
>   avoid having multiple fields with the same name, that was breaking the
>   python script skeleton generator from perf.data files (Taeung Song)
> 
> - Support converting data from bpf events in 'perf data' (Wang Nan)
> 
> Infrastructure:
> 
> - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> 
> - Librarize some 'perf record' bits to allow handling multiple perf.data
>   files per session (Wang Nan)
> 
> - Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf stat: Check existence of frontend/backed stalled cycles

> 
> Jiri Olsa (1):
>   perf tools: Fix python extension build
> 
> Steven Rostedt (1):
>   tools lib traceevent: Split pevent_print_event() into specific 
> functionality functions
> 
> Taeung Song (2):
>   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
>   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> "__syscall_nr:
> 
> Wang Nan (6):
>   perf data: Support converting data from bpf_perf_event_output()
>   perf data: Explicitly set byte order for integer types
>   perf record: Use WARN_ONCE to replace 'if' condition
>   perf record: Extract synthesize code to record__synthesize()
>   perf record: Introduce record__finish_output() to finish a perf.data
>   perf record: Ensure return non-zero rc when mmap fail
> 
>  kernel/trace/trace_syscalls.c  |  16 ++--
>  tools/lib/traceevent/event-parse.c | 136 +++---
>  tools/lib/traceevent/event-parse.h |  13 +++
>  tools/perf/builtin-record.c| 168 
> ++---
>  tools/perf/builtin-stat.c  |  22 -
>  tools/perf/builtin-trace.c |   8 +-
>  tools/perf/util/data-convert-bt.c  | 118 +-
>  tools/perf/util/setup.py   |   4 +
>  8 files changed, 372 insertions(+), 113 deletions(-)

Hm, there's a 'perf stat' regression that I can see:

Before:

 triton:~/tip> perf stat -a sleep 1

 Performance counter stats for 'system wide':

  11990.023100  task-clock (msec) #   11.981 CPUs utilized  

 8,802  context-switches  #0.734 K/sec  

   543  cpu-migrations#0.045 K/sec  

97,375  page-faults   #0.008 M/sec  

 9,854,385,894  cycles#0.822 GHz

15,274,841,152  stalled-cycles-frontend   #  155.01% frontend cycles 
idle   
 stalled-cycles-backend   
 9,634,486,137  instructions  #0.98  insn per cycle 

  #1.59  stalled cycles per 
insn
 1,818,488,088  branches  #  151.667 M/sec  

46,365,120  branch-misses #2.55% of all branches


   1.000741599 seconds time elapsed

After:

 triton:~/tip> perf stat -a sleep 1

 Performance counter stats for 'system wide':

  11989.280397  task-clock (msec) #   11.981 CPUs utilized  

  1299  context-switches  #0.108 K/sec  

 6  cpu-migrations#0.001 K/sec  

70  page-faults   #0.006 K/sec  

 127008602  cycles#0.011 GHz

 279538533  stalled-cycles-frontend   #  220.09% frontend cycles 
idle   
 119213269  instructions  #0.94  insn per cycle 

  #2.34  stalled cycles per 
insn
  24166678  branches 

Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-03-03 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:
> 
>   perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229
> 
> for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:
> 
>   perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Check existence of frontend/backed stalled cycles in 'perf stat' (Andi 
> Kleen)
> 
> - Avoid installing .o files from tools/lib/ into the python extension (Jiri 
> Olsa)
> 
> - Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
>   that is also the name of some syscalls arguments, to "__syscall_nr", to
>   avoid having multiple fields with the same name, that was breaking the
>   python script skeleton generator from perf.data files (Taeung Song)
> 
> - Support converting data from bpf events in 'perf data' (Wang Nan)
> 
> Infrastructure:
> 
> - Split libtraceevent's pevent_print_event() (Steven Rostedt)
> 
> - Librarize some 'perf record' bits to allow handling multiple perf.data
>   files per session (Wang Nan)
> 
> - Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf stat: Check existence of frontend/backed stalled cycles

> 
> Jiri Olsa (1):
>   perf tools: Fix python extension build
> 
> Steven Rostedt (1):
>   tools lib traceevent: Split pevent_print_event() into specific 
> functionality functions
> 
> Taeung Song (2):
>   perf trace: Check and discard not only 'nr' but also '__syscall_nr'
>   tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
> "__syscall_nr:
> 
> Wang Nan (6):
>   perf data: Support converting data from bpf_perf_event_output()
>   perf data: Explicitly set byte order for integer types
>   perf record: Use WARN_ONCE to replace 'if' condition
>   perf record: Extract synthesize code to record__synthesize()
>   perf record: Introduce record__finish_output() to finish a perf.data
>   perf record: Ensure return non-zero rc when mmap fail
> 
>  kernel/trace/trace_syscalls.c  |  16 ++--
>  tools/lib/traceevent/event-parse.c | 136 +++---
>  tools/lib/traceevent/event-parse.h |  13 +++
>  tools/perf/builtin-record.c| 168 
> ++---
>  tools/perf/builtin-stat.c  |  22 -
>  tools/perf/builtin-trace.c |   8 +-
>  tools/perf/util/data-convert-bt.c  | 118 +-
>  tools/perf/util/setup.py   |   4 +
>  8 files changed, 372 insertions(+), 113 deletions(-)

Hm, there's a 'perf stat' regression that I can see:

Before:

 triton:~/tip> perf stat -a sleep 1

 Performance counter stats for 'system wide':

  11990.023100  task-clock (msec) #   11.981 CPUs utilized  

 8,802  context-switches  #0.734 K/sec  

   543  cpu-migrations#0.045 K/sec  

97,375  page-faults   #0.008 M/sec  

 9,854,385,894  cycles#0.822 GHz

15,274,841,152  stalled-cycles-frontend   #  155.01% frontend cycles 
idle   
 stalled-cycles-backend   
 9,634,486,137  instructions  #0.98  insn per cycle 

  #1.59  stalled cycles per 
insn
 1,818,488,088  branches  #  151.667 M/sec  

46,365,120  branch-misses #2.55% of all branches


   1.000741599 seconds time elapsed

After:

 triton:~/tip> perf stat -a sleep 1

 Performance counter stats for 'system wide':

  11989.280397  task-clock (msec) #   11.981 CPUs utilized  

  1299  context-switches  #0.108 K/sec  

 6  cpu-migrations#0.001 K/sec  

70  page-faults   #0.006 K/sec  

 127008602  cycles#0.011 GHz

 279538533  stalled-cycles-frontend   #  220.09% frontend cycles 
idle   
 119213269  instructions  #0.94  insn per cycle 

  #2.34  stalled cycles per 
insn
  24166678  branches  #2.016 M/sec 

[GIT PULL 00/11] perf/core improvements and fixes

2016-03-02 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the outstanding
perf-core-for-mingo-20160229 signed tag.

- Arnaldo

The following changes since commit 1d6c9407d45dd622b277ca9f725da3cc9e95b5de:

  perf trace: Print content of bpf-output event (2016-02-26 19:57:07 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160302

for you to fetch changes up to 575197b405c45959ca2f71da8c65b6f8d9693140:

  perf stat: Check for frontend stalled for metrics (2016-03-02 11:27:00 -0300)


perf/core improvements and fixes:

User visible:

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Check for frontend stalled for metrics (Andi Kleen)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entri (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 



The following changes since commit 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:

  perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
-0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160302

for you to fetch changes up to 575197b405c45959ca2f71da8c65b6f8d9693140:

  perf stat: Check for frontend stalled for metrics (2016-03-02 11:27:00 -0300)


perf/core improvements and fixes:

User visible:

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Check for frontend stalled for metrics (Andi Kleen)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entri (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (3):
  perf stat: Implement CSV metrics output
  perf stat: Support metrics in --per-core/socket mode
  perf stat: Check for frontend stalled for metrics

Arnaldo Carvalho de Melo (1):
  perf test: Fix hists related entries

Chaos.Chen (1):
  tools lib traceevent: Fix time stamp rounding issue

Colin Ian King (3):
  perf script: Fix double free on command_line
  perf tests: Initialize sa.sa_flags
  tools/power turbostat: fix various build warnings

Masahiro Yamada (1):
  tools build: Use .s extension for preprocessed assembler code

Steven Rostedt (Red Hat) (2):
  tools lib traceevent: Set int_array fields to NULL if freeing from error
  tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit 
machines

 tools/build/Makefile.build |   2 +-
 tools/lib/traceevent/event-parse.c |  10 +-
 tools/perf/arch/x86/tests/rdpmc.c  |   1 +
 tools/perf/builtin-stat.c  | 136 +++--
 .../util/scripting-engines/trace-event-python.c|   4 +-
 tools/perf/util/sort.c |  37 +++---
 tools/perf/util/stat-shadow.c  |  18 ++-
 tools/perf/util/stat.h |   1 +
 tools/power/x86/turbostat/turbostat.c  |   8 +-
 9 files changed, 181 insertions(+), 36 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-03-02 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the outstanding
perf-core-for-mingo-20160229 signed tag.

- Arnaldo

The following changes since commit 1d6c9407d45dd622b277ca9f725da3cc9e95b5de:

  perf trace: Print content of bpf-output event (2016-02-26 19:57:07 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160302

for you to fetch changes up to 575197b405c45959ca2f71da8c65b6f8d9693140:

  perf stat: Check for frontend stalled for metrics (2016-03-02 11:27:00 -0300)


perf/core improvements and fixes:

User visible:

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Check for frontend stalled for metrics (Andi Kleen)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entri (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 



The following changes since commit 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:

  perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
-0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-20160302

for you to fetch changes up to 575197b405c45959ca2f71da8c65b6f8d9693140:

  perf stat: Check for frontend stalled for metrics (2016-03-02 11:27:00 -0300)


perf/core improvements and fixes:

User visible:

- Implement CSV metrics output in 'perf stat' (Andi Kleen)

- Support metrics in 'perf stat' --per-core/socket mode (Andi Kleen)

- Check for frontend stalled for metrics (Andi Kleen)

- Fix segfault in 'perf test' hists related entries (Arnaldo Carvalho de Melo)

- Fix output of %llu for 64 bit values read on 32 bit machines in libtraceevent 
(Steven Rostedt)

- Fix time stamp rounding issue in libtraceevent (Chaos.Chen)

Infrastructure:

- Fix double free on 'command_line' in a error path in 'perf script' (Colin Ian 
King)

- Initialize struct sigaction 'sa_flags' field in a 'perf test' entri (Colin 
Ian King)

- Fix various build warnings in turbostat, detected with gcc6 (Colin Ian King)

- Use .s extension for preprocessed assembler code (Masahiro Yamada)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (3):
  perf stat: Implement CSV metrics output
  perf stat: Support metrics in --per-core/socket mode
  perf stat: Check for frontend stalled for metrics

Arnaldo Carvalho de Melo (1):
  perf test: Fix hists related entries

Chaos.Chen (1):
  tools lib traceevent: Fix time stamp rounding issue

Colin Ian King (3):
  perf script: Fix double free on command_line
  perf tests: Initialize sa.sa_flags
  tools/power turbostat: fix various build warnings

Masahiro Yamada (1):
  tools build: Use .s extension for preprocessed assembler code

Steven Rostedt (Red Hat) (2):
  tools lib traceevent: Set int_array fields to NULL if freeing from error
  tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit 
machines

 tools/build/Makefile.build |   2 +-
 tools/lib/traceevent/event-parse.c |  10 +-
 tools/perf/arch/x86/tests/rdpmc.c  |   1 +
 tools/perf/builtin-stat.c  | 136 +++--
 .../util/scripting-engines/trace-event-python.c|   4 +-
 tools/perf/util/sort.c |  37 +++---
 tools/perf/util/stat-shadow.c  |  18 ++-
 tools/perf/util/stat.h |   1 +
 tools/power/x86/turbostat/turbostat.c  |   8 +-
 9 files changed, 181 insertions(+), 36 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-02-29 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:

  perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229

for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:

  perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
-0300)


perf/core improvements and fixes:

User visible:

- Check existence of frontend/backed stalled cycles in 'perf stat' (Andi Kleen)

- Avoid installing .o files from tools/lib/ into the python extension (Jiri 
Olsa)

- Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
  that is also the name of some syscalls arguments, to "__syscall_nr", to
  avoid having multiple fields with the same name, that was breaking the
  python script skeleton generator from perf.data files (Taeung Song)

- Support converting data from bpf events in 'perf data' (Wang Nan)

Infrastructure:

- Split libtraceevent's pevent_print_event() (Steven Rostedt)

- Librarize some 'perf record' bits to allow handling multiple perf.data
  files per session (Wang Nan)

- Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf stat: Check existence of frontend/backed stalled cycles

Jiri Olsa (1):
  perf tools: Fix python extension build

Steven Rostedt (1):
  tools lib traceevent: Split pevent_print_event() into specific 
functionality functions

Taeung Song (2):
  perf trace: Check and discard not only 'nr' but also '__syscall_nr'
  tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
"__syscall_nr:

Wang Nan (6):
  perf data: Support converting data from bpf_perf_event_output()
  perf data: Explicitly set byte order for integer types
  perf record: Use WARN_ONCE to replace 'if' condition
  perf record: Extract synthesize code to record__synthesize()
  perf record: Introduce record__finish_output() to finish a perf.data
  perf record: Ensure return non-zero rc when mmap fail

 kernel/trace/trace_syscalls.c  |  16 ++--
 tools/lib/traceevent/event-parse.c | 136 +++---
 tools/lib/traceevent/event-parse.h |  13 +++
 tools/perf/builtin-record.c| 168 ++---
 tools/perf/builtin-stat.c  |  22 -
 tools/perf/builtin-trace.c |   8 +-
 tools/perf/util/data-convert-bt.c  | 118 +-
 tools/perf/util/setup.py   |   4 +
 8 files changed, 372 insertions(+), 113 deletions(-)


[GIT PULL 00/11] perf/core improvements and fixes

2016-02-29 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 675965b00d734c985e4285f5bec7e524d15fc4e1:

  perf: Export perf_event_sysfs_show() (2016-02-29 09:35:27 +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-20160229

for you to fetch changes up to 575a02e00b11eecbbabcb1eb22eab4c68e91ae77:

  perf record: Ensure return non-zero rc when mmap fail (2016-02-29 12:44:15 
-0300)


perf/core improvements and fixes:

User visible:

- Check existence of frontend/backed stalled cycles in 'perf stat' (Andi Kleen)

- Avoid installing .o files from tools/lib/ into the python extension (Jiri 
Olsa)

- Rename the tracepoint '/format' field that carries the syscall ID from 'nr',
  that is also the name of some syscalls arguments, to "__syscall_nr", to
  avoid having multiple fields with the same name, that was breaking the
  python script skeleton generator from perf.data files (Taeung Song)

- Support converting data from bpf events in 'perf data' (Wang Nan)

Infrastructure:

- Split libtraceevent's pevent_print_event() (Steven Rostedt)

- Librarize some 'perf record' bits to allow handling multiple perf.data
  files per session (Wang Nan)

- Ensure return non-zero rc when mmap fail in 'perf record' (Wang Nan)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf stat: Check existence of frontend/backed stalled cycles

Jiri Olsa (1):
  perf tools: Fix python extension build

Steven Rostedt (1):
  tools lib traceevent: Split pevent_print_event() into specific 
functionality functions

Taeung Song (2):
  perf trace: Check and discard not only 'nr' but also '__syscall_nr'
  tracing/syscalls: Rename "/format" tracepoint field name "nr" to 
"__syscall_nr:

Wang Nan (6):
  perf data: Support converting data from bpf_perf_event_output()
  perf data: Explicitly set byte order for integer types
  perf record: Use WARN_ONCE to replace 'if' condition
  perf record: Extract synthesize code to record__synthesize()
  perf record: Introduce record__finish_output() to finish a perf.data
  perf record: Ensure return non-zero rc when mmap fail

 kernel/trace/trace_syscalls.c  |  16 ++--
 tools/lib/traceevent/event-parse.c | 136 +++---
 tools/lib/traceevent/event-parse.h |  13 +++
 tools/perf/builtin-record.c| 168 ++---
 tools/perf/builtin-stat.c  |  22 -
 tools/perf/builtin-trace.c |   8 +-
 tools/perf/util/data-convert-bt.c  | 118 +-
 tools/perf/util/setup.py   |   4 +
 8 files changed, 372 insertions(+), 113 deletions(-)


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-02-23 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, this is on top of the perf-core-for-mingo
> submitted recently,
> 
> - Arnaldo
> 
> The following changes since commit 03e0a7df3efd959e40cd7ff40b1fabddc234ec5a:
> 
>   perf tools: Introduce bpf-output event (2016-02-22 14:37:21 -0300)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-2
> 
> for you to fetch changes up to bea2400621836b028d82c3d6a74053921d70dbd7:
> 
>   perf tools: Remove strbuf_{remove,splice}() (2016-02-23 16:21:04 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Don't stop PMU parsing on alias parse error, allowing the
>   addition of new sysfs PMU files without breaking old tools (Andi Kleen)
> 
> - Implement '%' operation in libtraceevent (Daniel Bristot de Oliveira)
> 
> - Allow specifying events via -e in 'perf mem record', also listing what 
> events
>   can be specified via 'perf mem record -e list' (Jiri Olsa)
> 
> - Improve support to 'data_src', 'weight' and 'addr' fields in
>   'perf script' (Jiri Olsa)
> 
> Infrastructure:
> 
> - Export cacheline routines (Jiri Olsa)
> 
> - Remove strbuf_{remove,splice}(), dead code (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf tools: Dont stop PMU parsing on alias parse error
> 
> Arnaldo Carvalho de Melo (2):
>   perf help: No need to use strbuf_remove()
>   perf tools: Remove strbuf_{remove,splice}()
> 
> Daniel Bristot de Oliveira (1):
>   tools lib traceevent: Implement '%' operation
> 
> Jiri Olsa (7):
>   perf tools: Make cl_address global
>   perf tools: Introduce cl_offset function
>   perf tools: Add monitored events array
>   perf mem: Add -e record option
>   perf tools: Use ARRAY_SIZE in mem sort display functions
>   perf script: Add data_src and weight column definitions
>   perf script: Display addr/data_src/weight columns for raw events
> 
>  tools/lib/traceevent/event-parse.c |  4 +++
>  tools/perf/builtin-help.c  |  3 +-
>  tools/perf/builtin-mem.c   | 74 
> +-
>  tools/perf/builtin-script.c| 23 +++-
>  tools/perf/util/Build  |  1 +
>  tools/perf/util/mem-events.c   | 51 ++
>  tools/perf/util/mem-events.h   | 22 
>  tools/perf/util/pmu.c  | 15 
>  tools/perf/util/sort.c | 15 ++--
>  tools/perf/util/sort.h | 11 ++
>  tools/perf/util/strbuf.c   | 24 -
>  tools/perf/util/strbuf.h   |  2 --
>  12 files changed, 188 insertions(+), 57 deletions(-)
>  create mode 100644 tools/perf/util/mem-events.c
>  create mode 100644 tools/perf/util/mem-events.h

Pulled, thanks a lot Arnaldo!

Ingo


Re: [GIT PULL 00/11] perf/core improvements and fixes

2016-02-23 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, this is on top of the perf-core-for-mingo
> submitted recently,
> 
> - Arnaldo
> 
> The following changes since commit 03e0a7df3efd959e40cd7ff40b1fabddc234ec5a:
> 
>   perf tools: Introduce bpf-output event (2016-02-22 14:37:21 -0300)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-2
> 
> for you to fetch changes up to bea2400621836b028d82c3d6a74053921d70dbd7:
> 
>   perf tools: Remove strbuf_{remove,splice}() (2016-02-23 16:21:04 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Don't stop PMU parsing on alias parse error, allowing the
>   addition of new sysfs PMU files without breaking old tools (Andi Kleen)
> 
> - Implement '%' operation in libtraceevent (Daniel Bristot de Oliveira)
> 
> - Allow specifying events via -e in 'perf mem record', also listing what 
> events
>   can be specified via 'perf mem record -e list' (Jiri Olsa)
> 
> - Improve support to 'data_src', 'weight' and 'addr' fields in
>   'perf script' (Jiri Olsa)
> 
> Infrastructure:
> 
> - Export cacheline routines (Jiri Olsa)
> 
> - Remove strbuf_{remove,splice}(), dead code (Arnaldo Carvalho de Melo)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf tools: Dont stop PMU parsing on alias parse error
> 
> Arnaldo Carvalho de Melo (2):
>   perf help: No need to use strbuf_remove()
>   perf tools: Remove strbuf_{remove,splice}()
> 
> Daniel Bristot de Oliveira (1):
>   tools lib traceevent: Implement '%' operation
> 
> Jiri Olsa (7):
>   perf tools: Make cl_address global
>   perf tools: Introduce cl_offset function
>   perf tools: Add monitored events array
>   perf mem: Add -e record option
>   perf tools: Use ARRAY_SIZE in mem sort display functions
>   perf script: Add data_src and weight column definitions
>   perf script: Display addr/data_src/weight columns for raw events
> 
>  tools/lib/traceevent/event-parse.c |  4 +++
>  tools/perf/builtin-help.c  |  3 +-
>  tools/perf/builtin-mem.c   | 74 
> +-
>  tools/perf/builtin-script.c| 23 +++-
>  tools/perf/util/Build  |  1 +
>  tools/perf/util/mem-events.c   | 51 ++
>  tools/perf/util/mem-events.h   | 22 
>  tools/perf/util/pmu.c  | 15 
>  tools/perf/util/sort.c | 15 ++--
>  tools/perf/util/sort.h | 11 ++
>  tools/perf/util/strbuf.c   | 24 -
>  tools/perf/util/strbuf.h   |  2 --
>  12 files changed, 188 insertions(+), 57 deletions(-)
>  create mode 100644 tools/perf/util/mem-events.c
>  create mode 100644 tools/perf/util/mem-events.h

Pulled, thanks a lot Arnaldo!

Ingo


[GIT PULL 00/11] perf/core improvements and fixes

2016-02-23 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the perf-core-for-mingo
submitted recently,

- Arnaldo

The following changes since commit 03e0a7df3efd959e40cd7ff40b1fabddc234ec5a:

  perf tools: Introduce bpf-output event (2016-02-22 14:37:21 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-2

for you to fetch changes up to bea2400621836b028d82c3d6a74053921d70dbd7:

  perf tools: Remove strbuf_{remove,splice}() (2016-02-23 16:21:04 -0300)


perf/core improvements and fixes:

User visible:

- Don't stop PMU parsing on alias parse error, allowing the
  addition of new sysfs PMU files without breaking old tools (Andi Kleen)

- Implement '%' operation in libtraceevent (Daniel Bristot de Oliveira)

- Allow specifying events via -e in 'perf mem record', also listing what events
  can be specified via 'perf mem record -e list' (Jiri Olsa)

- Improve support to 'data_src', 'weight' and 'addr' fields in
  'perf script' (Jiri Olsa)

Infrastructure:

- Export cacheline routines (Jiri Olsa)

- Remove strbuf_{remove,splice}(), dead code (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf tools: Dont stop PMU parsing on alias parse error

Arnaldo Carvalho de Melo (2):
  perf help: No need to use strbuf_remove()
  perf tools: Remove strbuf_{remove,splice}()

Daniel Bristot de Oliveira (1):
  tools lib traceevent: Implement '%' operation

Jiri Olsa (7):
  perf tools: Make cl_address global
  perf tools: Introduce cl_offset function
  perf tools: Add monitored events array
  perf mem: Add -e record option
  perf tools: Use ARRAY_SIZE in mem sort display functions
  perf script: Add data_src and weight column definitions
  perf script: Display addr/data_src/weight columns for raw events

 tools/lib/traceevent/event-parse.c |  4 +++
 tools/perf/builtin-help.c  |  3 +-
 tools/perf/builtin-mem.c   | 74 +-
 tools/perf/builtin-script.c| 23 +++-
 tools/perf/util/Build  |  1 +
 tools/perf/util/mem-events.c   | 51 ++
 tools/perf/util/mem-events.h   | 22 
 tools/perf/util/pmu.c  | 15 
 tools/perf/util/sort.c | 15 ++--
 tools/perf/util/sort.h | 11 ++
 tools/perf/util/strbuf.c   | 24 -
 tools/perf/util/strbuf.h   |  2 --
 12 files changed, 188 insertions(+), 57 deletions(-)
 create mode 100644 tools/perf/util/mem-events.c
 create mode 100644 tools/perf/util/mem-events.h


[GIT PULL 00/11] perf/core improvements and fixes

2016-02-23 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the perf-core-for-mingo
submitted recently,

- Arnaldo

The following changes since commit 03e0a7df3efd959e40cd7ff40b1fabddc234ec5a:

  perf tools: Introduce bpf-output event (2016-02-22 14:37:21 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-2

for you to fetch changes up to bea2400621836b028d82c3d6a74053921d70dbd7:

  perf tools: Remove strbuf_{remove,splice}() (2016-02-23 16:21:04 -0300)


perf/core improvements and fixes:

User visible:

- Don't stop PMU parsing on alias parse error, allowing the
  addition of new sysfs PMU files without breaking old tools (Andi Kleen)

- Implement '%' operation in libtraceevent (Daniel Bristot de Oliveira)

- Allow specifying events via -e in 'perf mem record', also listing what events
  can be specified via 'perf mem record -e list' (Jiri Olsa)

- Improve support to 'data_src', 'weight' and 'addr' fields in
  'perf script' (Jiri Olsa)

Infrastructure:

- Export cacheline routines (Jiri Olsa)

- Remove strbuf_{remove,splice}(), dead code (Arnaldo Carvalho de Melo)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf tools: Dont stop PMU parsing on alias parse error

Arnaldo Carvalho de Melo (2):
  perf help: No need to use strbuf_remove()
  perf tools: Remove strbuf_{remove,splice}()

Daniel Bristot de Oliveira (1):
  tools lib traceevent: Implement '%' operation

Jiri Olsa (7):
  perf tools: Make cl_address global
  perf tools: Introduce cl_offset function
  perf tools: Add monitored events array
  perf mem: Add -e record option
  perf tools: Use ARRAY_SIZE in mem sort display functions
  perf script: Add data_src and weight column definitions
  perf script: Display addr/data_src/weight columns for raw events

 tools/lib/traceevent/event-parse.c |  4 +++
 tools/perf/builtin-help.c  |  3 +-
 tools/perf/builtin-mem.c   | 74 +-
 tools/perf/builtin-script.c| 23 +++-
 tools/perf/util/Build  |  1 +
 tools/perf/util/mem-events.c   | 51 ++
 tools/perf/util/mem-events.h   | 22 
 tools/perf/util/pmu.c  | 15 
 tools/perf/util/sort.c | 15 ++--
 tools/perf/util/sort.h | 11 ++
 tools/perf/util/strbuf.c   | 24 -
 tools/perf/util/strbuf.h   |  2 --
 12 files changed, 188 insertions(+), 57 deletions(-)
 create mode 100644 tools/perf/util/mem-events.c
 create mode 100644 tools/perf/util/mem-events.h


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> From: Arnaldo Carvalho de Melo 
> 
> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit d18929e9fde30c4d57ae57eb9a7f6f10b5808ca1:
> 
>   Merge tag 'perf-core-for-mingo' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2015-12-10 09:10:40 +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
> 
> for you to fetch changes up to e7a7865cc0da306542db0b9205cb0a467f59e33d:
> 
>   perf symbols: Fix dso__load_sym to put dso (2015-12-10 16:29:32 -0300)
> 
> 
> perf/core refactorings and fixes:
> 
> Infrastructure:
> 
> - Revert "perf tools: Improve setting of gcc debug option", -Og is broken,
>   GCC PR created (Jiri Olsa)
> 
> - More reference count fixes (Masami Hiramatsu)
> 
> - Untangle browser setup (--stdio, --tui, etc) from argument checking,
>   prep work to move the usage() code out of tools/perf for use by
>   other tools/ living utilities (Namhyung Kim)
> 
> - Delete half-processed hist entries when exiting 'perf top' (Namhyung Kim)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (2):
>   perf top: Do show usage message when failing to create cpu/thread maps
>   Revert "perf tools: Improve setting of gcc debug option"
> 
> Masami Hiramatsu (2):
>   perf tools: Make perf_session__register_idle_thread drop the refcount
>   perf symbols: Fix dso__load_sym to put dso
> 
> Namhyung Kim (7):
>   perf annotate: Check argument before calling setup_browser()
>   perf annotate: Delay UI browser setup after initialization is done
>   perf kvm: Remove invocation of setup/exit_browser()
>   perf report: Check argument before calling setup_browser()
>   perf thread_map: Free strlist on constructor error path
>   perf tools: Get rid of exit_browser() from usage_with_options()
>   perf top: Delete half-processed hist entries when exit
> 
>  tools/perf/builtin-annotate.c   | 33 -
>  tools/perf/builtin-kvm.c|  3 ---
>  tools/perf/builtin-report.c | 21 ++---
>  tools/perf/builtin-top.c|  9 ++---
>  tools/perf/config/Makefile  |  2 --
>  tools/perf/config/utilities.mak | 19 ---
>  tools/perf/util/hist.c  | 26 +-
>  tools/perf/util/parse-options.c |  3 ---
>  tools/perf/util/session.c   | 11 +++
>  tools/perf/util/session.h   |  2 +-
>  tools/perf/util/symbol-elf.c|  9 +++--
>  tools/perf/util/thread_map.c|  1 +
>  12 files changed, 73 insertions(+), 66 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo 

Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d18929e9fde30c4d57ae57eb9a7f6f10b5808ca1:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2015-12-10 09:10:40 +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

for you to fetch changes up to e7a7865cc0da306542db0b9205cb0a467f59e33d:

  perf symbols: Fix dso__load_sym to put dso (2015-12-10 16:29:32 -0300)


perf/core refactorings and fixes:

Infrastructure:

- Revert "perf tools: Improve setting of gcc debug option", -Og is broken,
  GCC PR created (Jiri Olsa)

- More reference count fixes (Masami Hiramatsu)

- Untangle browser setup (--stdio, --tui, etc) from argument checking,
  prep work to move the usage() code out of tools/perf for use by
  other tools/ living utilities (Namhyung Kim)

- Delete half-processed hist entries when exiting 'perf top' (Namhyung Kim)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (2):
  perf top: Do show usage message when failing to create cpu/thread maps
  Revert "perf tools: Improve setting of gcc debug option"

Masami Hiramatsu (2):
  perf tools: Make perf_session__register_idle_thread drop the refcount
  perf symbols: Fix dso__load_sym to put dso

Namhyung Kim (7):
  perf annotate: Check argument before calling setup_browser()
  perf annotate: Delay UI browser setup after initialization is done
  perf kvm: Remove invocation of setup/exit_browser()
  perf report: Check argument before calling setup_browser()
  perf thread_map: Free strlist on constructor error path
  perf tools: Get rid of exit_browser() from usage_with_options()
  perf top: Delete half-processed hist entries when exit

 tools/perf/builtin-annotate.c   | 33 -
 tools/perf/builtin-kvm.c|  3 ---
 tools/perf/builtin-report.c | 21 ++---
 tools/perf/builtin-top.c|  9 ++---
 tools/perf/config/Makefile  |  2 --
 tools/perf/config/utilities.mak | 19 ---
 tools/perf/util/hist.c  | 26 +-
 tools/perf/util/parse-options.c |  3 ---
 tools/perf/util/session.c   | 11 +++
 tools/perf/util/session.h   |  2 +-
 tools/perf/util/symbol-elf.c|  9 +++--
 tools/perf/util/thread_map.c|  1 +
 12 files changed, 73 insertions(+), 66 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit a30c99a0beb3030ba42dab38cad6273cd090805d:
> 
>   Merge branch 'perf/urgent' into perf/core, to pick up fixes (2015-12-08 
> 06:06:20 +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
> 
> for you to fetch changes up to 0a4bb5da957b83ece8b4723c5bac7a5d29fbfb33:
> 
>   perf tools: Move cmd_version() to builtin-version.c (2015-12-09 13:42:03 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Change default selection TUI background color to yellow (Ingo Molnar)
> 
> Infrastructure:
> 
> - Start paving the way to reuse some cmdline functions with other tools/
>   living utilities (Josh Poimboeuf)
> 
> - Reference count fixes using the refcount debugger, unleaking some objects
>   (Masami Hiramatsu)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Ingo Molnar (1):
>   perf tui: Change default selection background color to yellow
> 
> Josh Poimboeuf (4):
>   perf tools: Remove unused pager_use_color variable
>   perf tools: Move term functions out of util.c
>   perf tools: Save cmdline arguments earlier
>   perf tools: Move cmd_version() to builtin-version.c
> 
> Masami Hiramatsu (6):
>   perf tools: Fix map_groups__clone to put cloned map
>   perf stat: Fix cmd_stat to release cpu_map
>   perf hists: Fix hists_evsel to release hists
>   perf tools: Fix maps__fixup_overlappings to put used maps
>   perf machine: Fix machine.vmlinux_maps to make sure to clear the old one
>   perf tools: Fix write_numa_topology to put cpu_map instead of free
> 
>  tools/perf/Build|  1 +
>  tools/perf/builtin-stat.c   |  9 +
>  tools/perf/builtin-version.c| 10 ++
>  tools/perf/perf.c   |  1 +
>  tools/perf/ui/browser.c |  2 +-
>  tools/perf/util/Build   |  2 +-
>  tools/perf/util/cache.h |  1 -
>  tools/perf/util/color.c |  2 +-
>  tools/perf/util/env.c   |  9 -
>  tools/perf/util/environment.c   |  8 
>  tools/perf/util/header.c|  2 +-
>  tools/perf/util/help.c  |  7 ---
>  tools/perf/util/hist.c  | 10 +-
>  tools/perf/util/machine.c   |  5 +
>  tools/perf/util/map.c   |  3 +++
>  tools/perf/util/parse-options.c |  2 --
>  tools/perf/util/term.c  | 35 +++
>  tools/perf/util/term.h  | 10 ++
>  tools/perf/util/util.c  | 34 --
>  tools/perf/util/util.h  |  4 +---
>  20 files changed, 88 insertions(+), 69 deletions(-)
>  create mode 100644 tools/perf/builtin-version.c
>  delete mode 100644 tools/perf/util/environment.c
>  create mode 100644 tools/perf/util/term.c
>  create mode 100644 tools/perf/util/term.h

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo 

Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d18929e9fde30c4d57ae57eb9a7f6f10b5808ca1:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2015-12-10 09:10:40 +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

for you to fetch changes up to e7a7865cc0da306542db0b9205cb0a467f59e33d:

  perf symbols: Fix dso__load_sym to put dso (2015-12-10 16:29:32 -0300)


perf/core refactorings and fixes:

Infrastructure:

- Revert "perf tools: Improve setting of gcc debug option", -Og is broken,
  GCC PR created (Jiri Olsa)

- More reference count fixes (Masami Hiramatsu)

- Untangle browser setup (--stdio, --tui, etc) from argument checking,
  prep work to move the usage() code out of tools/perf for use by
  other tools/ living utilities (Namhyung Kim)

- Delete half-processed hist entries when exiting 'perf top' (Namhyung Kim)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (2):
  perf top: Do show usage message when failing to create cpu/thread maps
  Revert "perf tools: Improve setting of gcc debug option"

Masami Hiramatsu (2):
  perf tools: Make perf_session__register_idle_thread drop the refcount
  perf symbols: Fix dso__load_sym to put dso

Namhyung Kim (7):
  perf annotate: Check argument before calling setup_browser()
  perf annotate: Delay UI browser setup after initialization is done
  perf kvm: Remove invocation of setup/exit_browser()
  perf report: Check argument before calling setup_browser()
  perf thread_map: Free strlist on constructor error path
  perf tools: Get rid of exit_browser() from usage_with_options()
  perf top: Delete half-processed hist entries when exit

 tools/perf/builtin-annotate.c   | 33 -
 tools/perf/builtin-kvm.c|  3 ---
 tools/perf/builtin-report.c | 21 ++---
 tools/perf/builtin-top.c|  9 ++---
 tools/perf/config/Makefile  |  2 --
 tools/perf/config/utilities.mak | 19 ---
 tools/perf/util/hist.c  | 26 +-
 tools/perf/util/parse-options.c |  3 ---
 tools/perf/util/session.c   | 11 +++
 tools/perf/util/session.h   |  2 +-
 tools/perf/util/symbol-elf.c|  9 +++--
 tools/perf/util/thread_map.c|  1 +
 12 files changed, 73 insertions(+), 66 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit a30c99a0beb3030ba42dab38cad6273cd090805d:
> 
>   Merge branch 'perf/urgent' into perf/core, to pick up fixes (2015-12-08 
> 06:06:20 +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
> 
> for you to fetch changes up to 0a4bb5da957b83ece8b4723c5bac7a5d29fbfb33:
> 
>   perf tools: Move cmd_version() to builtin-version.c (2015-12-09 13:42:03 
> -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Change default selection TUI background color to yellow (Ingo Molnar)
> 
> Infrastructure:
> 
> - Start paving the way to reuse some cmdline functions with other tools/
>   living utilities (Josh Poimboeuf)
> 
> - Reference count fixes using the refcount debugger, unleaking some objects
>   (Masami Hiramatsu)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Ingo Molnar (1):
>   perf tui: Change default selection background color to yellow
> 
> Josh Poimboeuf (4):
>   perf tools: Remove unused pager_use_color variable
>   perf tools: Move term functions out of util.c
>   perf tools: Save cmdline arguments earlier
>   perf tools: Move cmd_version() to builtin-version.c
> 
> Masami Hiramatsu (6):
>   perf tools: Fix map_groups__clone to put cloned map
>   perf stat: Fix cmd_stat to release cpu_map
>   perf hists: Fix hists_evsel to release hists
>   perf tools: Fix maps__fixup_overlappings to put used maps
>   perf machine: Fix machine.vmlinux_maps to make sure to clear the old one
>   perf tools: Fix write_numa_topology to put cpu_map instead of free
> 
>  tools/perf/Build|  1 +
>  tools/perf/builtin-stat.c   |  9 +
>  tools/perf/builtin-version.c| 10 ++
>  tools/perf/perf.c   |  1 +
>  tools/perf/ui/browser.c |  2 +-
>  tools/perf/util/Build   |  2 +-
>  tools/perf/util/cache.h |  1 -
>  tools/perf/util/color.c |  2 +-
>  tools/perf/util/env.c   |  9 -
>  tools/perf/util/environment.c   |  8 
>  tools/perf/util/header.c|  2 +-
>  tools/perf/util/help.c  |  7 ---
>  tools/perf/util/hist.c  | 10 +-
>  tools/perf/util/machine.c   |  5 +
>  tools/perf/util/map.c   |  3 +++
>  tools/perf/util/parse-options.c |  2 --
>  tools/perf/util/term.c  | 35 +++
>  tools/perf/util/term.h  | 10 ++
>  tools/perf/util/util.c  | 34 --
>  tools/perf/util/util.h  |  4 +---
>  20 files changed, 88 insertions(+), 69 deletions(-)
>  create mode 100644 tools/perf/builtin-version.c
>  delete mode 100644 tools/perf/util/environment.c
>  create mode 100644 tools/perf/util/term.c
>  create mode 100644 tools/perf/util/term.h

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-12-10 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> From: Arnaldo Carvalho de Melo 
> 
> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit d18929e9fde30c4d57ae57eb9a7f6f10b5808ca1:
> 
>   Merge tag 'perf-core-for-mingo' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2015-12-10 09:10:40 +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
> 
> for you to fetch changes up to e7a7865cc0da306542db0b9205cb0a467f59e33d:
> 
>   perf symbols: Fix dso__load_sym to put dso (2015-12-10 16:29:32 -0300)
> 
> 
> perf/core refactorings and fixes:
> 
> Infrastructure:
> 
> - Revert "perf tools: Improve setting of gcc debug option", -Og is broken,
>   GCC PR created (Jiri Olsa)
> 
> - More reference count fixes (Masami Hiramatsu)
> 
> - Untangle browser setup (--stdio, --tui, etc) from argument checking,
>   prep work to move the usage() code out of tools/perf for use by
>   other tools/ living utilities (Namhyung Kim)
> 
> - Delete half-processed hist entries when exiting 'perf top' (Namhyung Kim)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (2):
>   perf top: Do show usage message when failing to create cpu/thread maps
>   Revert "perf tools: Improve setting of gcc debug option"
> 
> Masami Hiramatsu (2):
>   perf tools: Make perf_session__register_idle_thread drop the refcount
>   perf symbols: Fix dso__load_sym to put dso
> 
> Namhyung Kim (7):
>   perf annotate: Check argument before calling setup_browser()
>   perf annotate: Delay UI browser setup after initialization is done
>   perf kvm: Remove invocation of setup/exit_browser()
>   perf report: Check argument before calling setup_browser()
>   perf thread_map: Free strlist on constructor error path
>   perf tools: Get rid of exit_browser() from usage_with_options()
>   perf top: Delete half-processed hist entries when exit
> 
>  tools/perf/builtin-annotate.c   | 33 -
>  tools/perf/builtin-kvm.c|  3 ---
>  tools/perf/builtin-report.c | 21 ++---
>  tools/perf/builtin-top.c|  9 ++---
>  tools/perf/config/Makefile  |  2 --
>  tools/perf/config/utilities.mak | 19 ---
>  tools/perf/util/hist.c  | 26 +-
>  tools/perf/util/parse-options.c |  3 ---
>  tools/perf/util/session.c   | 11 +++
>  tools/perf/util/session.h   |  2 +-
>  tools/perf/util/symbol-elf.c|  9 +++--
>  tools/perf/util/thread_map.c|  1 +
>  12 files changed, 73 insertions(+), 66 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-12-09 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit a30c99a0beb3030ba42dab38cad6273cd090805d:

  Merge branch 'perf/urgent' into perf/core, to pick up fixes (2015-12-08 
06:06:20 +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

for you to fetch changes up to 0a4bb5da957b83ece8b4723c5bac7a5d29fbfb33:

  perf tools: Move cmd_version() to builtin-version.c (2015-12-09 13:42:03 
-0300)


perf/core improvements and fixes:

User visible:

- Change default selection TUI background color to yellow (Ingo Molnar)

Infrastructure:

- Start paving the way to reuse some cmdline functions with other tools/
  living utilities (Josh Poimboeuf)

- Reference count fixes using the refcount debugger, unleaking some objects
  (Masami Hiramatsu)

Signed-off-by: Arnaldo Carvalho de Melo 


Ingo Molnar (1):
  perf tui: Change default selection background color to yellow

Josh Poimboeuf (4):
  perf tools: Remove unused pager_use_color variable
  perf tools: Move term functions out of util.c
  perf tools: Save cmdline arguments earlier
  perf tools: Move cmd_version() to builtin-version.c

Masami Hiramatsu (6):
  perf tools: Fix map_groups__clone to put cloned map
  perf stat: Fix cmd_stat to release cpu_map
  perf hists: Fix hists_evsel to release hists
  perf tools: Fix maps__fixup_overlappings to put used maps
  perf machine: Fix machine.vmlinux_maps to make sure to clear the old one
  perf tools: Fix write_numa_topology to put cpu_map instead of free

 tools/perf/Build|  1 +
 tools/perf/builtin-stat.c   |  9 +
 tools/perf/builtin-version.c| 10 ++
 tools/perf/perf.c   |  1 +
 tools/perf/ui/browser.c |  2 +-
 tools/perf/util/Build   |  2 +-
 tools/perf/util/cache.h |  1 -
 tools/perf/util/color.c |  2 +-
 tools/perf/util/env.c   |  9 -
 tools/perf/util/environment.c   |  8 
 tools/perf/util/header.c|  2 +-
 tools/perf/util/help.c  |  7 ---
 tools/perf/util/hist.c  | 10 +-
 tools/perf/util/machine.c   |  5 +
 tools/perf/util/map.c   |  3 +++
 tools/perf/util/parse-options.c |  2 --
 tools/perf/util/term.c  | 35 +++
 tools/perf/util/term.h  | 10 ++
 tools/perf/util/util.c  | 34 --
 tools/perf/util/util.h  |  4 +---
 20 files changed, 88 insertions(+), 69 deletions(-)
 create mode 100644 tools/perf/builtin-version.c
 delete mode 100644 tools/perf/util/environment.c
 create mode 100644 tools/perf/util/term.c
 create mode 100644 tools/perf/util/term.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-12-09 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit a30c99a0beb3030ba42dab38cad6273cd090805d:

  Merge branch 'perf/urgent' into perf/core, to pick up fixes (2015-12-08 
06:06:20 +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

for you to fetch changes up to 0a4bb5da957b83ece8b4723c5bac7a5d29fbfb33:

  perf tools: Move cmd_version() to builtin-version.c (2015-12-09 13:42:03 
-0300)


perf/core improvements and fixes:

User visible:

- Change default selection TUI background color to yellow (Ingo Molnar)

Infrastructure:

- Start paving the way to reuse some cmdline functions with other tools/
  living utilities (Josh Poimboeuf)

- Reference count fixes using the refcount debugger, unleaking some objects
  (Masami Hiramatsu)

Signed-off-by: Arnaldo Carvalho de Melo 


Ingo Molnar (1):
  perf tui: Change default selection background color to yellow

Josh Poimboeuf (4):
  perf tools: Remove unused pager_use_color variable
  perf tools: Move term functions out of util.c
  perf tools: Save cmdline arguments earlier
  perf tools: Move cmd_version() to builtin-version.c

Masami Hiramatsu (6):
  perf tools: Fix map_groups__clone to put cloned map
  perf stat: Fix cmd_stat to release cpu_map
  perf hists: Fix hists_evsel to release hists
  perf tools: Fix maps__fixup_overlappings to put used maps
  perf machine: Fix machine.vmlinux_maps to make sure to clear the old one
  perf tools: Fix write_numa_topology to put cpu_map instead of free

 tools/perf/Build|  1 +
 tools/perf/builtin-stat.c   |  9 +
 tools/perf/builtin-version.c| 10 ++
 tools/perf/perf.c   |  1 +
 tools/perf/ui/browser.c |  2 +-
 tools/perf/util/Build   |  2 +-
 tools/perf/util/cache.h |  1 -
 tools/perf/util/color.c |  2 +-
 tools/perf/util/env.c   |  9 -
 tools/perf/util/environment.c   |  8 
 tools/perf/util/header.c|  2 +-
 tools/perf/util/help.c  |  7 ---
 tools/perf/util/hist.c  | 10 +-
 tools/perf/util/machine.c   |  5 +
 tools/perf/util/map.c   |  3 +++
 tools/perf/util/parse-options.c |  2 --
 tools/perf/util/term.c  | 35 +++
 tools/perf/util/term.h  | 10 ++
 tools/perf/util/util.c  | 34 --
 tools/perf/util/util.h  |  4 +---
 20 files changed, 88 insertions(+), 69 deletions(-)
 create mode 100644 tools/perf/builtin-version.c
 delete mode 100644 tools/perf/util/environment.c
 create mode 100644 tools/perf/util/term.c
 create mode 100644 tools/perf/util/term.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-11-07 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, this is on top of the perf-core-for-mingo tag,
> that is outstanding.
> 
> Best regards,
> 
> - Arnaldo
> 
> The following changes since commit 0014de172d228e450377d1fd079d94e67128d27f:
> 
>   perf sched latency: Fix thread pid reuse issue (2015-11-05 12:51:00 -0300)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-2
> 
> for you to fetch changes up to 345c99a303e1d97b407bf99190314a878d59ca92:
> 
>   perf test: Do not be case sensitive when searching for matching tests 
> (2015-11-06 17:50:04 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - libbpf error reporting improvements, using a strerror interface to
>   more precisely tell the user about problems with the provided
>   scriptlet, be it in C or as a ready made object file (Wang Nan)
> 
> - Do not be case sensitive when searching for matching 'perf test'
>   entries (Arnaldo Carvalho de Melo)
> 
> - Inform the user about objdump failures in 'perf annotate' (Andi Kleen)
> 
> Infrastructure:
> 
> - Improve the LLVM 'perf test' entry, introduce new ones for
>   BPF and kbuild to check the environment used by clang to
>   compile .c scriptlets (Wang Nan)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf annotate: Inform the user about objdump failures in --stdio
> 
> Arnaldo Carvalho de Melo (1):
>   perf test: Do not be case sensitive when searching for matching tests
> 
> Jiri Olsa (1):
>   perf stat: Make stat options global
> 
> Masami Hiramatsu (1):
>   perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy
> 
> Wang Nan (7):
>   bpf tools: Improve libbpf error reporting
>   bpf tools: Add new API bpf_object__get_kversion()
>   perf tools: Make fetch_kernel_version() publicly available
>   perf bpf: Improve BPF related error messages
>   perf test: Enhance the LLVM test: update basic BPF test program
>   perf test: Enhance the LLVM tests: add kbuild test
>   perf test: Add 'perf test BPF'
> 
>  tools/lib/bpf/libbpf.c| 167 +---
>  tools/lib/bpf/libbpf.h|  21 +++
>  tools/perf/builtin-stat.c | 163 +++
>  tools/perf/tests/Build|  17 ++-
>  tools/perf/tests/bpf-script-example.c |   4 +
>  tools/perf/tests/bpf-script-test-kbuild.c |  21 +++
>  tools/perf/tests/bpf.c| 209 
> ++
>  tools/perf/tests/builtin-test.c   |   6 +-
>  tools/perf/tests/llvm.c   | 137 +++-
>  tools/perf/tests/llvm.h   |  18 +++
>  tools/perf/tests/tests.h  |   1 +
>  tools/perf/util/annotate.c|  20 ++-
>  tools/perf/util/bpf-loader.c  | 139 +---
>  tools/perf/util/bpf-loader.h  |  33 +
>  tools/perf/util/llvm-utils.c  |  49 +++
>  tools/perf/util/parse-events.c|  11 +-
>  tools/perf/util/probe-event.c |   7 +-
>  tools/perf/util/util.c|  30 +
>  tools/perf/util/util.h|   8 ++
>  19 files changed, 836 insertions(+), 225 deletions(-)
>  create mode 100644 tools/perf/tests/bpf-script-test-kbuild.c
>  create mode 100644 tools/perf/tests/bpf.c
>  create mode 100644 tools/perf/tests/llvm.h

Pulled into perf/urgent, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-11-07 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling, this is on top of the perf-core-for-mingo tag,
> that is outstanding.
> 
> Best regards,
> 
> - Arnaldo
> 
> The following changes since commit 0014de172d228e450377d1fd079d94e67128d27f:
> 
>   perf sched latency: Fix thread pid reuse issue (2015-11-05 12:51:00 -0300)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo-2
> 
> for you to fetch changes up to 345c99a303e1d97b407bf99190314a878d59ca92:
> 
>   perf test: Do not be case sensitive when searching for matching tests 
> (2015-11-06 17:50:04 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> - libbpf error reporting improvements, using a strerror interface to
>   more precisely tell the user about problems with the provided
>   scriptlet, be it in C or as a ready made object file (Wang Nan)
> 
> - Do not be case sensitive when searching for matching 'perf test'
>   entries (Arnaldo Carvalho de Melo)
> 
> - Inform the user about objdump failures in 'perf annotate' (Andi Kleen)
> 
> Infrastructure:
> 
> - Improve the LLVM 'perf test' entry, introduce new ones for
>   BPF and kbuild to check the environment used by clang to
>   compile .c scriptlets (Wang Nan)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (1):
>   perf annotate: Inform the user about objdump failures in --stdio
> 
> Arnaldo Carvalho de Melo (1):
>   perf test: Do not be case sensitive when searching for matching tests
> 
> Jiri Olsa (1):
>   perf stat: Make stat options global
> 
> Masami Hiramatsu (1):
>   perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy
> 
> Wang Nan (7):
>   bpf tools: Improve libbpf error reporting
>   bpf tools: Add new API bpf_object__get_kversion()
>   perf tools: Make fetch_kernel_version() publicly available
>   perf bpf: Improve BPF related error messages
>   perf test: Enhance the LLVM test: update basic BPF test program
>   perf test: Enhance the LLVM tests: add kbuild test
>   perf test: Add 'perf test BPF'
> 
>  tools/lib/bpf/libbpf.c| 167 +---
>  tools/lib/bpf/libbpf.h|  21 +++
>  tools/perf/builtin-stat.c | 163 +++
>  tools/perf/tests/Build|  17 ++-
>  tools/perf/tests/bpf-script-example.c |   4 +
>  tools/perf/tests/bpf-script-test-kbuild.c |  21 +++
>  tools/perf/tests/bpf.c| 209 
> ++
>  tools/perf/tests/builtin-test.c   |   6 +-
>  tools/perf/tests/llvm.c   | 137 +++-
>  tools/perf/tests/llvm.h   |  18 +++
>  tools/perf/tests/tests.h  |   1 +
>  tools/perf/util/annotate.c|  20 ++-
>  tools/perf/util/bpf-loader.c  | 139 +---
>  tools/perf/util/bpf-loader.h  |  33 +
>  tools/perf/util/llvm-utils.c  |  49 +++
>  tools/perf/util/parse-events.c|  11 +-
>  tools/perf/util/probe-event.c |   7 +-
>  tools/perf/util/util.c|  30 +
>  tools/perf/util/util.h|   8 ++
>  19 files changed, 836 insertions(+), 225 deletions(-)
>  create mode 100644 tools/perf/tests/bpf-script-test-kbuild.c
>  create mode 100644 tools/perf/tests/bpf.c
>  create mode 100644 tools/perf/tests/llvm.h

Pulled into perf/urgent, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-11-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the perf-core-for-mingo tag,
that is outstanding.

Best regards,

- Arnaldo

The following changes since commit 0014de172d228e450377d1fd079d94e67128d27f:

  perf sched latency: Fix thread pid reuse issue (2015-11-05 12:51:00 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-2

for you to fetch changes up to 345c99a303e1d97b407bf99190314a878d59ca92:

  perf test: Do not be case sensitive when searching for matching tests 
(2015-11-06 17:50:04 -0300)


perf/core improvements and fixes:

- libbpf error reporting improvements, using a strerror interface to
  more precisely tell the user about problems with the provided
  scriptlet, be it in C or as a ready made object file (Wang Nan)

- Do not be case sensitive when searching for matching 'perf test'
  entries (Arnaldo Carvalho de Melo)

- Inform the user about objdump failures in 'perf annotate' (Andi Kleen)

Infrastructure:

- Improve the LLVM 'perf test' entry, introduce new ones for
  BPF and kbuild to check the environment used by clang to
  compile .c scriptlets (Wang Nan)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf annotate: Inform the user about objdump failures in --stdio

Arnaldo Carvalho de Melo (1):
  perf test: Do not be case sensitive when searching for matching tests

Jiri Olsa (1):
  perf stat: Make stat options global

Masami Hiramatsu (1):
  perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy

Wang Nan (7):
  bpf tools: Improve libbpf error reporting
  bpf tools: Add new API bpf_object__get_kversion()
  perf tools: Make fetch_kernel_version() publicly available
  perf bpf: Improve BPF related error messages
  perf test: Enhance the LLVM test: update basic BPF test program
  perf test: Enhance the LLVM tests: add kbuild test
  perf test: Add 'perf test BPF'

 tools/lib/bpf/libbpf.c| 167 +---
 tools/lib/bpf/libbpf.h|  21 +++
 tools/perf/builtin-stat.c | 163 +++
 tools/perf/tests/Build|  17 ++-
 tools/perf/tests/bpf-script-example.c |   4 +
 tools/perf/tests/bpf-script-test-kbuild.c |  21 +++
 tools/perf/tests/bpf.c| 209 ++
 tools/perf/tests/builtin-test.c   |   6 +-
 tools/perf/tests/llvm.c   | 137 +++-
 tools/perf/tests/llvm.h   |  18 +++
 tools/perf/tests/tests.h  |   1 +
 tools/perf/util/annotate.c|  20 ++-
 tools/perf/util/bpf-loader.c  | 139 +---
 tools/perf/util/bpf-loader.h  |  33 +
 tools/perf/util/llvm-utils.c  |  49 +++
 tools/perf/util/parse-events.c|  11 +-
 tools/perf/util/probe-event.c |   7 +-
 tools/perf/util/util.c|  30 +
 tools/perf/util/util.h|   8 ++
 19 files changed, 836 insertions(+), 225 deletions(-)
 create mode 100644 tools/perf/tests/bpf-script-test-kbuild.c
 create mode 100644 tools/perf/tests/bpf.c
 create mode 100644 tools/perf/tests/llvm.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-11-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, this is on top of the perf-core-for-mingo tag,
that is outstanding.

Best regards,

- Arnaldo

The following changes since commit 0014de172d228e450377d1fd079d94e67128d27f:

  perf sched latency: Fix thread pid reuse issue (2015-11-05 12:51:00 -0300)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo-2

for you to fetch changes up to 345c99a303e1d97b407bf99190314a878d59ca92:

  perf test: Do not be case sensitive when searching for matching tests 
(2015-11-06 17:50:04 -0300)


perf/core improvements and fixes:

- libbpf error reporting improvements, using a strerror interface to
  more precisely tell the user about problems with the provided
  scriptlet, be it in C or as a ready made object file (Wang Nan)

- Do not be case sensitive when searching for matching 'perf test'
  entries (Arnaldo Carvalho de Melo)

- Inform the user about objdump failures in 'perf annotate' (Andi Kleen)

Infrastructure:

- Improve the LLVM 'perf test' entry, introduce new ones for
  BPF and kbuild to check the environment used by clang to
  compile .c scriptlets (Wang Nan)

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (1):
  perf annotate: Inform the user about objdump failures in --stdio

Arnaldo Carvalho de Melo (1):
  perf test: Do not be case sensitive when searching for matching tests

Jiri Olsa (1):
  perf stat: Make stat options global

Masami Hiramatsu (1):
  perf probe: Cleanup find_perf_probe_point_from_map to reduce redundancy

Wang Nan (7):
  bpf tools: Improve libbpf error reporting
  bpf tools: Add new API bpf_object__get_kversion()
  perf tools: Make fetch_kernel_version() publicly available
  perf bpf: Improve BPF related error messages
  perf test: Enhance the LLVM test: update basic BPF test program
  perf test: Enhance the LLVM tests: add kbuild test
  perf test: Add 'perf test BPF'

 tools/lib/bpf/libbpf.c| 167 +---
 tools/lib/bpf/libbpf.h|  21 +++
 tools/perf/builtin-stat.c | 163 +++
 tools/perf/tests/Build|  17 ++-
 tools/perf/tests/bpf-script-example.c |   4 +
 tools/perf/tests/bpf-script-test-kbuild.c |  21 +++
 tools/perf/tests/bpf.c| 209 ++
 tools/perf/tests/builtin-test.c   |   6 +-
 tools/perf/tests/llvm.c   | 137 +++-
 tools/perf/tests/llvm.h   |  18 +++
 tools/perf/tests/tests.h  |   1 +
 tools/perf/util/annotate.c|  20 ++-
 tools/perf/util/bpf-loader.c  | 139 +---
 tools/perf/util/bpf-loader.h  |  33 +
 tools/perf/util/llvm-utils.c  |  49 +++
 tools/perf/util/parse-events.c|  11 +-
 tools/perf/util/probe-event.c |   7 +-
 tools/perf/util/util.c|  30 +
 tools/perf/util/util.h|   8 ++
 19 files changed, 836 insertions(+), 225 deletions(-)
 create mode 100644 tools/perf/tests/bpf-script-test-kbuild.c
 create mode 100644 tools/perf/tests/bpf.c
 create mode 100644 tools/perf/tests/llvm.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-07-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d2d61ed55f8375a10ff606e83e2196880a775fb4:

  Merge branch 'perf/rbtree_copy' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent 
(2015-07-06 09:24:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to ab85785aa13c36440a91a8e9f7616357de411a1f:

  tools lib api debugfs: Check for tracefs when reporting errors (2015-07-06 
12:22:14 -0300)


perf/core improvements and fixes:

User visible:

- Take tracefs into account when reporting errors about accessing
  tracepoint information in tools like 'perf trace' (Arnaldo Carvalho de Melo)

- Let user have timestamps with per-thread recording in 'perf record' (Adrian 
Hunter)

Infrastructure:

- Introduce series of functions to build event filters so that we
  can set them in just one ioctl call, useful to set up common_pid,
  raw_syscalls:sys_{enter,exit}'s "id" filters to use with
  'perf trace' (Arnaldo Carvalho de Melo)

- Delete an unnecessary check before calling strfilter__delete() (Markus 
Elfring)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (1):
  perf record: Let user have timestamps with per-thread recording

Arnaldo Carvalho de Melo (9):
  perf tools: Asprintf like functions to format integer filter expression
  perf trace: Remember what are the syscalls tracepoint evsels
  perf trace: Store the syscall ids for the event qualifiers in a table
  perf evsel: Rename set_filter to apply_filter
  perf evsel: Introduce set_filter method
  perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter
  perf evsel: Introduce append_filter() method
  perf trace: Use event filters for the event qualifier list
  tools lib api debugfs: Check for tracefs when reporting errors

Markus Elfring (1):
  perf probe: Delete an unnecessary check before the function call 
"strfilter__delete"

 tools/lib/api/fs/debugfs.c |  15 +++-
 tools/perf/builtin-probe.c |   3 +-
 tools/perf/builtin-record.c|   4 +-
 tools/perf/builtin-trace.c | 178 ++---
 tools/perf/perf.h  |   1 +
 tools/perf/util/evlist.c   |   6 +-
 tools/perf/util/evsel.c|  37 -
 tools/perf/util/evsel.h|   7 +-
 tools/perf/util/parse-events.c |   3 +-
 tools/perf/util/string.c   |  39 +
 tools/perf/util/util.h |  12 +++
 11 files changed, 224 insertions(+), 81 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-07-06 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit d2d61ed55f8375a10ff606e83e2196880a775fb4:
> 
>   Merge branch 'perf/rbtree_copy' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent 
> (2015-07-06 09:24:41 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo
> 
> for you to fetch changes up to ab85785aa13c36440a91a8e9f7616357de411a1f:
> 
>   tools lib api debugfs: Check for tracefs when reporting errors (2015-07-06 
> 12:22:14 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Take tracefs into account when reporting errors about accessing
>   tracepoint information in tools like 'perf trace' (Arnaldo Carvalho de Melo)
> 
> - Let user have timestamps with per-thread recording in 'perf record' (Adrian 
> Hunter)
> 
> Infrastructure:
> 
> - Introduce series of functions to build event filters so that we
>   can set them in just one ioctl call, useful to set up common_pid,
>   raw_syscalls:sys_{enter,exit}'s "id" filters to use with
>   'perf trace' (Arnaldo Carvalho de Melo)
> 
> - Delete an unnecessary check before calling strfilter__delete() (Markus 
> Elfring)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (1):
>   perf record: Let user have timestamps with per-thread recording
> 
> Arnaldo Carvalho de Melo (9):
>   perf tools: Asprintf like functions to format integer filter expression
>   perf trace: Remember what are the syscalls tracepoint evsels
>   perf trace: Store the syscall ids for the event qualifiers in a table
>   perf evsel: Rename set_filter to apply_filter
>   perf evsel: Introduce set_filter method
>   perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter
>   perf evsel: Introduce append_filter() method
>   perf trace: Use event filters for the event qualifier list
>   tools lib api debugfs: Check for tracefs when reporting errors
> 
> Markus Elfring (1):
>   perf probe: Delete an unnecessary check before the function call 
> "strfilter__delete"
> 
>  tools/lib/api/fs/debugfs.c |  15 +++-
>  tools/perf/builtin-probe.c |   3 +-
>  tools/perf/builtin-record.c|   4 +-
>  tools/perf/builtin-trace.c | 178 
> ++---
>  tools/perf/perf.h  |   1 +
>  tools/perf/util/evlist.c   |   6 +-
>  tools/perf/util/evsel.c|  37 -
>  tools/perf/util/evsel.h|   7 +-
>  tools/perf/util/parse-events.c |   3 +-
>  tools/perf/util/string.c   |  39 +
>  tools/perf/util/util.h |  12 +++
>  11 files changed, 224 insertions(+), 81 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-07-06 Thread Ingo Molnar

* Arnaldo Carvalho de Melo a...@kernel.org wrote:

 Hi Ingo,
 
   Please consider pulling,
 
 - Arnaldo
 
 The following changes since commit d2d61ed55f8375a10ff606e83e2196880a775fb4:
 
   Merge branch 'perf/rbtree_copy' of 
 git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent 
 (2015-07-06 09:24:41 +0200)
 
 are available in the git repository at:
 
   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
 tags/perf-core-for-mingo
 
 for you to fetch changes up to ab85785aa13c36440a91a8e9f7616357de411a1f:
 
   tools lib api debugfs: Check for tracefs when reporting errors (2015-07-06 
 12:22:14 -0300)
 
 
 perf/core improvements and fixes:
 
 User visible:
 
 - Take tracefs into account when reporting errors about accessing
   tracepoint information in tools like 'perf trace' (Arnaldo Carvalho de Melo)
 
 - Let user have timestamps with per-thread recording in 'perf record' (Adrian 
 Hunter)
 
 Infrastructure:
 
 - Introduce series of functions to build event filters so that we
   can set them in just one ioctl call, useful to set up common_pid,
   raw_syscalls:sys_{enter,exit}'s id filters to use with
   'perf trace' (Arnaldo Carvalho de Melo)
 
 - Delete an unnecessary check before calling strfilter__delete() (Markus 
 Elfring)
 
 Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com
 
 
 Adrian Hunter (1):
   perf record: Let user have timestamps with per-thread recording
 
 Arnaldo Carvalho de Melo (9):
   perf tools: Asprintf like functions to format integer filter expression
   perf trace: Remember what are the syscalls tracepoint evsels
   perf trace: Store the syscall ids for the event qualifiers in a table
   perf evsel: Rename set_filter to apply_filter
   perf evsel: Introduce set_filter method
   perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter
   perf evsel: Introduce append_filter() method
   perf trace: Use event filters for the event qualifier list
   tools lib api debugfs: Check for tracefs when reporting errors
 
 Markus Elfring (1):
   perf probe: Delete an unnecessary check before the function call 
 strfilter__delete
 
  tools/lib/api/fs/debugfs.c |  15 +++-
  tools/perf/builtin-probe.c |   3 +-
  tools/perf/builtin-record.c|   4 +-
  tools/perf/builtin-trace.c | 178 
 ++---
  tools/perf/perf.h  |   1 +
  tools/perf/util/evlist.c   |   6 +-
  tools/perf/util/evsel.c|  37 -
  tools/perf/util/evsel.h|   7 +-
  tools/perf/util/parse-events.c |   3 +-
  tools/perf/util/string.c   |  39 +
  tools/perf/util/util.h |  12 +++
  11 files changed, 224 insertions(+), 81 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-07-06 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit d2d61ed55f8375a10ff606e83e2196880a775fb4:

  Merge branch 'perf/rbtree_copy' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent 
(2015-07-06 09:24:41 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to ab85785aa13c36440a91a8e9f7616357de411a1f:

  tools lib api debugfs: Check for tracefs when reporting errors (2015-07-06 
12:22:14 -0300)


perf/core improvements and fixes:

User visible:

- Take tracefs into account when reporting errors about accessing
  tracepoint information in tools like 'perf trace' (Arnaldo Carvalho de Melo)

- Let user have timestamps with per-thread recording in 'perf record' (Adrian 
Hunter)

Infrastructure:

- Introduce series of functions to build event filters so that we
  can set them in just one ioctl call, useful to set up common_pid,
  raw_syscalls:sys_{enter,exit}'s id filters to use with
  'perf trace' (Arnaldo Carvalho de Melo)

- Delete an unnecessary check before calling strfilter__delete() (Markus 
Elfring)

Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com


Adrian Hunter (1):
  perf record: Let user have timestamps with per-thread recording

Arnaldo Carvalho de Melo (9):
  perf tools: Asprintf like functions to format integer filter expression
  perf trace: Remember what are the syscalls tracepoint evsels
  perf trace: Store the syscall ids for the event qualifiers in a table
  perf evsel: Rename set_filter to apply_filter
  perf evsel: Introduce set_filter method
  perf evlist: Make perf_evlist__set_filter use perf_evsel__set_filter
  perf evsel: Introduce append_filter() method
  perf trace: Use event filters for the event qualifier list
  tools lib api debugfs: Check for tracefs when reporting errors

Markus Elfring (1):
  perf probe: Delete an unnecessary check before the function call 
strfilter__delete

 tools/lib/api/fs/debugfs.c |  15 +++-
 tools/perf/builtin-probe.c |   3 +-
 tools/perf/builtin-record.c|   4 +-
 tools/perf/builtin-trace.c | 178 ++---
 tools/perf/perf.h  |   1 +
 tools/perf/util/evlist.c   |   6 +-
 tools/perf/util/evsel.c|  37 -
 tools/perf/util/evsel.h|   7 +-
 tools/perf/util/parse-events.c |   3 +-
 tools/perf/util/string.c   |  39 +
 tools/perf/util/util.h |  12 +++
 11 files changed, 224 insertions(+), 81 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-06-19 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please consider pulling,
> 
> - Arnaldo
> 
> The following changes since commit 79928928c5a27d58ae48285d2a3f7aa835db7547:
> 
>   Merge tag 'perf-core-for-mingo-2' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2015-06-18 09:40:46 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo
> 
> for you to fetch changes up to 9d9cad763ca79dd3697e9f2d1df648e37496582b:
> 
>   perf tools: Configurable per thread proc map processing time out 
> (2015-06-19 18:27:13 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> - Replace CTRL+z with 'f' as hotkey for enable/disable events (Arnaldo 
> Carvalho de Melo)
> 
> - Do not exit when 'f' is pressed in 'report' mode (Arnaldo Carvalho de Melo)
> 
> - Tell the user how to unfreeze events after pressing 'f' in 'perf top' 
> (Arnaldo Carvalho de Melo)
> 
> - React to unassigned hotkey pressing in 'top/report' (Arnaldo Carvalho de 
> Melo)
> 
> - Display total number of samples with --show-total-period in 'annotate' 
> (Martin Liška)
> 
> - Add timeout to make procfs mmap processing more robust (Kan Liang)
> 
> - Fix sort__sym_cmp to also compare end of symbol (Yannick Brosseau)
> 
> Infrastructure:
> 
> - Ensure thread-stack is flushed (Adrian Hunter)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Adrian Hunter (1):
>   perf tools: Ensure thread-stack is flushed
> 
> Arnaldo Carvalho de Melo (6):
>   perf annotate: Rename source_line_percent to source_line_samples
>   perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events
>   perf hists browser: Do not exit when 'f' is pressed in 'report' mode
>   perf hists browser: Honour the help line provided by 
> builtin-{top,report}.c
>   perf top: Tell the user how to unfreeze events after pressing 'f'
>   perf hists browser: React to unassigned hotkey pressing
> 
> Kan Liang (2):
>   perf tools: Add time out to force stop proc map processing
>   perf tools: Configurable per thread proc map processing time out
> 
> Martin Liška (1):
>   perf annotate: Display total number of samples with --show-total-period
> 
> Yannick Brosseau (1):
>   perf report: Fix sort__sym_cmp to also compare end of symbol
> 
>  include/uapi/linux/perf_event.h  |  4 +++
>  tools/perf/Documentation/perf-kvm.txt|  6 
>  tools/perf/Documentation/perf-record.txt |  5 +++
>  tools/perf/Documentation/perf-top.txt|  6 
>  tools/perf/Documentation/perf-trace.txt  |  5 +++
>  tools/perf/builtin-annotate.c|  2 ++
>  tools/perf/builtin-kvm.c |  5 ++-
>  tools/perf/builtin-record.c  |  6 +++-
>  tools/perf/builtin-top.c | 15 ++--
>  tools/perf/builtin-trace.c   |  6 +++-
>  tools/perf/perf.h|  1 +
>  tools/perf/tests/code-reading.c  |  2 +-
>  tools/perf/tests/dwarf-unwind.c  |  2 +-
>  tools/perf/tests/mmap-thread-lookup.c|  4 +--
>  tools/perf/ui/browsers/annotate.c| 60 
> +++-
>  tools/perf/ui/browsers/hists.c   | 15 
>  tools/perf/util/annotate.c   | 52 ++-
>  tools/perf/util/annotate.h   |  7 ++--
>  tools/perf/util/event.c  | 46 +++-
>  tools/perf/util/event.h  | 10 --
>  tools/perf/util/machine.c| 28 +--
>  tools/perf/util/machine.h| 12 +--
>  tools/perf/util/session.c| 33 ++
>  tools/perf/util/sort.c   |  8 ++---
>  tools/perf/util/thread-stack.c   | 18 +++---
>  tools/perf/util/thread-stack.h   |  1 +
>  26 files changed, 278 insertions(+), 81 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-06-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 79928928c5a27d58ae48285d2a3f7aa835db7547:

  Merge tag 'perf-core-for-mingo-2' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2015-06-18 09:40:46 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to 9d9cad763ca79dd3697e9f2d1df648e37496582b:

  perf tools: Configurable per thread proc map processing time out (2015-06-19 
18:27:13 -0300)


perf/core improvements and fixes:

User visible:

- Replace CTRL+z with 'f' as hotkey for enable/disable events (Arnaldo Carvalho 
de Melo)

- Do not exit when 'f' is pressed in 'report' mode (Arnaldo Carvalho de Melo)

- Tell the user how to unfreeze events after pressing 'f' in 'perf top' 
(Arnaldo Carvalho de Melo)

- React to unassigned hotkey pressing in 'top/report' (Arnaldo Carvalho de Melo)

- Display total number of samples with --show-total-period in 'annotate' 
(Martin Liška)

- Add timeout to make procfs mmap processing more robust (Kan Liang)

- Fix sort__sym_cmp to also compare end of symbol (Yannick Brosseau)

Infrastructure:

- Ensure thread-stack is flushed (Adrian Hunter)

Signed-off-by: Arnaldo Carvalho de Melo 


Adrian Hunter (1):
  perf tools: Ensure thread-stack is flushed

Arnaldo Carvalho de Melo (6):
  perf annotate: Rename source_line_percent to source_line_samples
  perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events
  perf hists browser: Do not exit when 'f' is pressed in 'report' mode
  perf hists browser: Honour the help line provided by 
builtin-{top,report}.c
  perf top: Tell the user how to unfreeze events after pressing 'f'
  perf hists browser: React to unassigned hotkey pressing

Kan Liang (2):
  perf tools: Add time out to force stop proc map processing
  perf tools: Configurable per thread proc map processing time out

Martin Liška (1):
  perf annotate: Display total number of samples with --show-total-period

Yannick Brosseau (1):
  perf report: Fix sort__sym_cmp to also compare end of symbol

 include/uapi/linux/perf_event.h  |  4 +++
 tools/perf/Documentation/perf-kvm.txt|  6 
 tools/perf/Documentation/perf-record.txt |  5 +++
 tools/perf/Documentation/perf-top.txt|  6 
 tools/perf/Documentation/perf-trace.txt  |  5 +++
 tools/perf/builtin-annotate.c|  2 ++
 tools/perf/builtin-kvm.c |  5 ++-
 tools/perf/builtin-record.c  |  6 +++-
 tools/perf/builtin-top.c | 15 ++--
 tools/perf/builtin-trace.c   |  6 +++-
 tools/perf/perf.h|  1 +
 tools/perf/tests/code-reading.c  |  2 +-
 tools/perf/tests/dwarf-unwind.c  |  2 +-
 tools/perf/tests/mmap-thread-lookup.c|  4 +--
 tools/perf/ui/browsers/annotate.c| 60 +++-
 tools/perf/ui/browsers/hists.c   | 15 
 tools/perf/util/annotate.c   | 52 ++-
 tools/perf/util/annotate.h   |  7 ++--
 tools/perf/util/event.c  | 46 +++-
 tools/perf/util/event.h  | 10 --
 tools/perf/util/machine.c| 28 +--
 tools/perf/util/machine.h| 12 +--
 tools/perf/util/session.c| 33 ++
 tools/perf/util/sort.c   |  8 ++---
 tools/perf/util/thread-stack.c   | 18 +++---
 tools/perf/util/thread-stack.h   |  1 +
 26 files changed, 278 insertions(+), 81 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2015-06-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling,

- Arnaldo

The following changes since commit 79928928c5a27d58ae48285d2a3f7aa835db7547:

  Merge tag 'perf-core-for-mingo-2' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2015-06-18 09:40:46 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to 9d9cad763ca79dd3697e9f2d1df648e37496582b:

  perf tools: Configurable per thread proc map processing time out (2015-06-19 
18:27:13 -0300)


perf/core improvements and fixes:

User visible:

- Replace CTRL+z with 'f' as hotkey for enable/disable events (Arnaldo Carvalho 
de Melo)

- Do not exit when 'f' is pressed in 'report' mode (Arnaldo Carvalho de Melo)

- Tell the user how to unfreeze events after pressing 'f' in 'perf top' 
(Arnaldo Carvalho de Melo)

- React to unassigned hotkey pressing in 'top/report' (Arnaldo Carvalho de Melo)

- Display total number of samples with --show-total-period in 'annotate' 
(Martin Liška)

- Add timeout to make procfs mmap processing more robust (Kan Liang)

- Fix sort__sym_cmp to also compare end of symbol (Yannick Brosseau)

Infrastructure:

- Ensure thread-stack is flushed (Adrian Hunter)

Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com


Adrian Hunter (1):
  perf tools: Ensure thread-stack is flushed

Arnaldo Carvalho de Melo (6):
  perf annotate: Rename source_line_percent to source_line_samples
  perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events
  perf hists browser: Do not exit when 'f' is pressed in 'report' mode
  perf hists browser: Honour the help line provided by 
builtin-{top,report}.c
  perf top: Tell the user how to unfreeze events after pressing 'f'
  perf hists browser: React to unassigned hotkey pressing

Kan Liang (2):
  perf tools: Add time out to force stop proc map processing
  perf tools: Configurable per thread proc map processing time out

Martin Liška (1):
  perf annotate: Display total number of samples with --show-total-period

Yannick Brosseau (1):
  perf report: Fix sort__sym_cmp to also compare end of symbol

 include/uapi/linux/perf_event.h  |  4 +++
 tools/perf/Documentation/perf-kvm.txt|  6 
 tools/perf/Documentation/perf-record.txt |  5 +++
 tools/perf/Documentation/perf-top.txt|  6 
 tools/perf/Documentation/perf-trace.txt  |  5 +++
 tools/perf/builtin-annotate.c|  2 ++
 tools/perf/builtin-kvm.c |  5 ++-
 tools/perf/builtin-record.c  |  6 +++-
 tools/perf/builtin-top.c | 15 ++--
 tools/perf/builtin-trace.c   |  6 +++-
 tools/perf/perf.h|  1 +
 tools/perf/tests/code-reading.c  |  2 +-
 tools/perf/tests/dwarf-unwind.c  |  2 +-
 tools/perf/tests/mmap-thread-lookup.c|  4 +--
 tools/perf/ui/browsers/annotate.c| 60 +++-
 tools/perf/ui/browsers/hists.c   | 15 
 tools/perf/util/annotate.c   | 52 ++-
 tools/perf/util/annotate.h   |  7 ++--
 tools/perf/util/event.c  | 46 +++-
 tools/perf/util/event.h  | 10 --
 tools/perf/util/machine.c| 28 +--
 tools/perf/util/machine.h| 12 +--
 tools/perf/util/session.c| 33 ++
 tools/perf/util/sort.c   |  8 ++---
 tools/perf/util/thread-stack.c   | 18 +++---
 tools/perf/util/thread-stack.h   |  1 +
 26 files changed, 278 insertions(+), 81 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2015-06-19 Thread Ingo Molnar

* Arnaldo Carvalho de Melo a...@kernel.org wrote:

 Hi Ingo,
 
   Please consider pulling,
 
 - Arnaldo
 
 The following changes since commit 79928928c5a27d58ae48285d2a3f7aa835db7547:
 
   Merge tag 'perf-core-for-mingo-2' of 
 git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
 (2015-06-18 09:40:46 +0200)
 
 are available in the git repository at:
 
   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
 tags/perf-core-for-mingo
 
 for you to fetch changes up to 9d9cad763ca79dd3697e9f2d1df648e37496582b:
 
   perf tools: Configurable per thread proc map processing time out 
 (2015-06-19 18:27:13 -0300)
 
 
 perf/core improvements and fixes:
 
 User visible:
 
 - Replace CTRL+z with 'f' as hotkey for enable/disable events (Arnaldo 
 Carvalho de Melo)
 
 - Do not exit when 'f' is pressed in 'report' mode (Arnaldo Carvalho de Melo)
 
 - Tell the user how to unfreeze events after pressing 'f' in 'perf top' 
 (Arnaldo Carvalho de Melo)
 
 - React to unassigned hotkey pressing in 'top/report' (Arnaldo Carvalho de 
 Melo)
 
 - Display total number of samples with --show-total-period in 'annotate' 
 (Martin Liška)
 
 - Add timeout to make procfs mmap processing more robust (Kan Liang)
 
 - Fix sort__sym_cmp to also compare end of symbol (Yannick Brosseau)
 
 Infrastructure:
 
 - Ensure thread-stack is flushed (Adrian Hunter)
 
 Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com
 
 
 Adrian Hunter (1):
   perf tools: Ensure thread-stack is flushed
 
 Arnaldo Carvalho de Melo (6):
   perf annotate: Rename source_line_percent to source_line_samples
   perf top: Replace CTRL+z with 'f' as hotkey for enable/disable events
   perf hists browser: Do not exit when 'f' is pressed in 'report' mode
   perf hists browser: Honour the help line provided by 
 builtin-{top,report}.c
   perf top: Tell the user how to unfreeze events after pressing 'f'
   perf hists browser: React to unassigned hotkey pressing
 
 Kan Liang (2):
   perf tools: Add time out to force stop proc map processing
   perf tools: Configurable per thread proc map processing time out
 
 Martin Liška (1):
   perf annotate: Display total number of samples with --show-total-period
 
 Yannick Brosseau (1):
   perf report: Fix sort__sym_cmp to also compare end of symbol
 
  include/uapi/linux/perf_event.h  |  4 +++
  tools/perf/Documentation/perf-kvm.txt|  6 
  tools/perf/Documentation/perf-record.txt |  5 +++
  tools/perf/Documentation/perf-top.txt|  6 
  tools/perf/Documentation/perf-trace.txt  |  5 +++
  tools/perf/builtin-annotate.c|  2 ++
  tools/perf/builtin-kvm.c |  5 ++-
  tools/perf/builtin-record.c  |  6 +++-
  tools/perf/builtin-top.c | 15 ++--
  tools/perf/builtin-trace.c   |  6 +++-
  tools/perf/perf.h|  1 +
  tools/perf/tests/code-reading.c  |  2 +-
  tools/perf/tests/dwarf-unwind.c  |  2 +-
  tools/perf/tests/mmap-thread-lookup.c|  4 +--
  tools/perf/ui/browsers/annotate.c| 60 
 +++-
  tools/perf/ui/browsers/hists.c   | 15 
  tools/perf/util/annotate.c   | 52 ++-
  tools/perf/util/annotate.h   |  7 ++--
  tools/perf/util/event.c  | 46 +++-
  tools/perf/util/event.h  | 10 --
  tools/perf/util/machine.c| 28 +--
  tools/perf/util/machine.h| 12 +--
  tools/perf/util/session.c| 33 ++
  tools/perf/util/sort.c   |  8 ++---
  tools/perf/util/thread-stack.c   | 18 +++---
  tools/perf/util/thread-stack.h   |  1 +
  26 files changed, 278 insertions(+), 81 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-06-24 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> Hi Ingo,
> 
>   Please conseider pulling,
> 
> - Arnaldo
> 
> The following changes since commit a10d60c08cc3bbea9195e2b36440f557373623eb:
> 
>   sh, perf: Use common PMU interrupt disabled code (2014-06-19 19:37:51 +0200)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
> tags/perf-core-for-mingo
> 
> for you to fetch changes up to ecdac96899e3db3f428e4d2e978f25e3f8d35a6c:
> 
>   perf bench sched-messaging: Drop barf() (2014-06-19 16:13:17 -0300)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> . Add --repeat global option to 'perf bench' to be used in benchmarks
>   such as the existing 'futex' one, that was modified to use it instead
>   of a local option. (Davidlohr Bueso)
> 
> . Fix fd -> pathname resolution in 'trace', be it using /proc or
>   a vfs_getname probe point. (Arnaldo Carvalho de Melo)
> 
> . Add suggestion of how to set perf_event_paranoid sysctl, to help
>   non-root users trying tools like 'trace' to get a working environment.
>   (Arnaldo Carvalho de Melo)
> 
> Fixes:
> 
> . Fix memory leak in the 'sched-messaging' perf bench test. (Davidlohr Bueso)
> 
> . The -o and -n 'perf bench mem' options are mutually exclusive, emit error
>   when both are specified. (Davidlohr Bueso)
> 
> . Fix scrollbar refresh row index in the ui browser, problem exposed now
>   that headers will be added and will be allowed to be switched on/off.
>   (Jiri Olsa)
> 
> Cleanups:
> 
> . Remove needless reassignments in 'trace' (Arnaldo Carvalho de Melo)
> 
> . Cache the is_exit syscall test in 'trace) (Arnaldo Carvalho de Melo)
> 
> . No need to reimplement err() in 'perf bench sched-messaging', drop barf().
>   (Davidlohr Bueso).
> 
> . Remove ev_name argument from perf_evsel__hists_browse, can be obtained
>   from the other parameters. (Jiri Olsa)
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Arnaldo Carvalho de Melo (4):
>   perf trace: Fix up fd -> pathname resolution
>   perf evlist: Add suggestion of how to set perf_event_paranoid sysctl
>   perf trace: Remove needless reassignments
>   perf trace: Cache the is_exit syscall test
> 
> Davidlohr Bueso (5):
>   perf bench sched-messaging: Plug memleak
>   perf bench: Add --repeat option
>   perf bench futex: Use global --repeat option
>   perf bench mem: The -o and -n options are mutually exclusive
>   perf bench sched-messaging: Drop barf()
> 
> Jiri Olsa (2):
>   perf hists browser: Remove ev_name argument from 
> perf_evsel__hists_browse
>   perf ui browser: Fix scrollbar refresh row index
> 
>  tools/perf/Documentation/perf-bench.txt |  4 +++
>  tools/perf/bench/bench.h|  1 +
>  tools/perf/bench/futex-requeue.c| 10 +--
>  tools/perf/bench/futex-wake.c   | 12 ++---
>  tools/perf/bench/mem-memcpy.c   |  5 
>  tools/perf/bench/mem-memset.c   |  5 
>  tools/perf/bench/sched-messaging.c  | 47 
> +++--
>  tools/perf/builtin-bench.c  |  7 +
>  tools/perf/builtin-trace.c  | 12 -
>  tools/perf/ui/browser.c |  2 +-
>  tools/perf/ui/browsers/hists.c  | 25 --
>  tools/perf/util/evlist.c|  5 ++--
>  12 files changed, 67 insertions(+), 68 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-06-24 Thread Ingo Molnar

* Arnaldo Carvalho de Melo a...@kernel.org wrote:

 Hi Ingo,
 
   Please conseider pulling,
 
 - Arnaldo
 
 The following changes since commit a10d60c08cc3bbea9195e2b36440f557373623eb:
 
   sh, perf: Use common PMU interrupt disabled code (2014-06-19 19:37:51 +0200)
 
 are available in the git repository at:
 
   git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
 tags/perf-core-for-mingo
 
 for you to fetch changes up to ecdac96899e3db3f428e4d2e978f25e3f8d35a6c:
 
   perf bench sched-messaging: Drop barf() (2014-06-19 16:13:17 -0300)
 
 
 perf/core improvements and fixes:
 
 User visible:
 
 . Add --repeat global option to 'perf bench' to be used in benchmarks
   such as the existing 'futex' one, that was modified to use it instead
   of a local option. (Davidlohr Bueso)
 
 . Fix fd - pathname resolution in 'trace', be it using /proc or
   a vfs_getname probe point. (Arnaldo Carvalho de Melo)
 
 . Add suggestion of how to set perf_event_paranoid sysctl, to help
   non-root users trying tools like 'trace' to get a working environment.
   (Arnaldo Carvalho de Melo)
 
 Fixes:
 
 . Fix memory leak in the 'sched-messaging' perf bench test. (Davidlohr Bueso)
 
 . The -o and -n 'perf bench mem' options are mutually exclusive, emit error
   when both are specified. (Davidlohr Bueso)
 
 . Fix scrollbar refresh row index in the ui browser, problem exposed now
   that headers will be added and will be allowed to be switched on/off.
   (Jiri Olsa)
 
 Cleanups:
 
 . Remove needless reassignments in 'trace' (Arnaldo Carvalho de Melo)
 
 . Cache the is_exit syscall test in 'trace) (Arnaldo Carvalho de Melo)
 
 . No need to reimplement err() in 'perf bench sched-messaging', drop barf().
   (Davidlohr Bueso).
 
 . Remove ev_name argument from perf_evsel__hists_browse, can be obtained
   from the other parameters. (Jiri Olsa)
 
 Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com
 
 
 Arnaldo Carvalho de Melo (4):
   perf trace: Fix up fd - pathname resolution
   perf evlist: Add suggestion of how to set perf_event_paranoid sysctl
   perf trace: Remove needless reassignments
   perf trace: Cache the is_exit syscall test
 
 Davidlohr Bueso (5):
   perf bench sched-messaging: Plug memleak
   perf bench: Add --repeat option
   perf bench futex: Use global --repeat option
   perf bench mem: The -o and -n options are mutually exclusive
   perf bench sched-messaging: Drop barf()
 
 Jiri Olsa (2):
   perf hists browser: Remove ev_name argument from 
 perf_evsel__hists_browse
   perf ui browser: Fix scrollbar refresh row index
 
  tools/perf/Documentation/perf-bench.txt |  4 +++
  tools/perf/bench/bench.h|  1 +
  tools/perf/bench/futex-requeue.c| 10 +--
  tools/perf/bench/futex-wake.c   | 12 ++---
  tools/perf/bench/mem-memcpy.c   |  5 
  tools/perf/bench/mem-memset.c   |  5 
  tools/perf/bench/sched-messaging.c  | 47 
 +++--
  tools/perf/builtin-bench.c  |  7 +
  tools/perf/builtin-trace.c  | 12 -
  tools/perf/ui/browser.c |  2 +-
  tools/perf/ui/browsers/hists.c  | 25 --
  tools/perf/util/evlist.c|  5 ++--
  12 files changed, 67 insertions(+), 68 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-06-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please conseider pulling,

- Arnaldo

The following changes since commit a10d60c08cc3bbea9195e2b36440f557373623eb:

  sh, perf: Use common PMU interrupt disabled code (2014-06-19 19:37:51 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to ecdac96899e3db3f428e4d2e978f25e3f8d35a6c:

  perf bench sched-messaging: Drop barf() (2014-06-19 16:13:17 -0300)


perf/core improvements and fixes:

User visible:

. Add --repeat global option to 'perf bench' to be used in benchmarks
  such as the existing 'futex' one, that was modified to use it instead
  of a local option. (Davidlohr Bueso)

. Fix fd -> pathname resolution in 'trace', be it using /proc or
  a vfs_getname probe point. (Arnaldo Carvalho de Melo)

. Add suggestion of how to set perf_event_paranoid sysctl, to help
  non-root users trying tools like 'trace' to get a working environment.
  (Arnaldo Carvalho de Melo)

Fixes:

. Fix memory leak in the 'sched-messaging' perf bench test. (Davidlohr Bueso)

. The -o and -n 'perf bench mem' options are mutually exclusive, emit error
  when both are specified. (Davidlohr Bueso)

. Fix scrollbar refresh row index in the ui browser, problem exposed now
  that headers will be added and will be allowed to be switched on/off.
  (Jiri Olsa)

Cleanups:

. Remove needless reassignments in 'trace' (Arnaldo Carvalho de Melo)

. Cache the is_exit syscall test in 'trace) (Arnaldo Carvalho de Melo)

. No need to reimplement err() in 'perf bench sched-messaging', drop barf().
  (Davidlohr Bueso).

. Remove ev_name argument from perf_evsel__hists_browse, can be obtained
  from the other parameters. (Jiri Olsa)

Signed-off-by: Arnaldo Carvalho de Melo 


Arnaldo Carvalho de Melo (4):
  perf trace: Fix up fd -> pathname resolution
  perf evlist: Add suggestion of how to set perf_event_paranoid sysctl
  perf trace: Remove needless reassignments
  perf trace: Cache the is_exit syscall test

Davidlohr Bueso (5):
  perf bench sched-messaging: Plug memleak
  perf bench: Add --repeat option
  perf bench futex: Use global --repeat option
  perf bench mem: The -o and -n options are mutually exclusive
  perf bench sched-messaging: Drop barf()

Jiri Olsa (2):
  perf hists browser: Remove ev_name argument from perf_evsel__hists_browse
  perf ui browser: Fix scrollbar refresh row index

 tools/perf/Documentation/perf-bench.txt |  4 +++
 tools/perf/bench/bench.h|  1 +
 tools/perf/bench/futex-requeue.c| 10 +--
 tools/perf/bench/futex-wake.c   | 12 ++---
 tools/perf/bench/mem-memcpy.c   |  5 
 tools/perf/bench/mem-memset.c   |  5 
 tools/perf/bench/sched-messaging.c  | 47 +++--
 tools/perf/builtin-bench.c  |  7 +
 tools/perf/builtin-trace.c  | 12 -
 tools/perf/ui/browser.c |  2 +-
 tools/perf/ui/browsers/hists.c  | 25 --
 tools/perf/util/evlist.c|  5 ++--
 12 files changed, 67 insertions(+), 68 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-06-19 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please conseider pulling,

- Arnaldo

The following changes since commit a10d60c08cc3bbea9195e2b36440f557373623eb:

  sh, perf: Use common PMU interrupt disabled code (2014-06-19 19:37:51 +0200)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git 
tags/perf-core-for-mingo

for you to fetch changes up to ecdac96899e3db3f428e4d2e978f25e3f8d35a6c:

  perf bench sched-messaging: Drop barf() (2014-06-19 16:13:17 -0300)


perf/core improvements and fixes:

User visible:

. Add --repeat global option to 'perf bench' to be used in benchmarks
  such as the existing 'futex' one, that was modified to use it instead
  of a local option. (Davidlohr Bueso)

. Fix fd - pathname resolution in 'trace', be it using /proc or
  a vfs_getname probe point. (Arnaldo Carvalho de Melo)

. Add suggestion of how to set perf_event_paranoid sysctl, to help
  non-root users trying tools like 'trace' to get a working environment.
  (Arnaldo Carvalho de Melo)

Fixes:

. Fix memory leak in the 'sched-messaging' perf bench test. (Davidlohr Bueso)

. The -o and -n 'perf bench mem' options are mutually exclusive, emit error
  when both are specified. (Davidlohr Bueso)

. Fix scrollbar refresh row index in the ui browser, problem exposed now
  that headers will be added and will be allowed to be switched on/off.
  (Jiri Olsa)

Cleanups:

. Remove needless reassignments in 'trace' (Arnaldo Carvalho de Melo)

. Cache the is_exit syscall test in 'trace) (Arnaldo Carvalho de Melo)

. No need to reimplement err() in 'perf bench sched-messaging', drop barf().
  (Davidlohr Bueso).

. Remove ev_name argument from perf_evsel__hists_browse, can be obtained
  from the other parameters. (Jiri Olsa)

Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com


Arnaldo Carvalho de Melo (4):
  perf trace: Fix up fd - pathname resolution
  perf evlist: Add suggestion of how to set perf_event_paranoid sysctl
  perf trace: Remove needless reassignments
  perf trace: Cache the is_exit syscall test

Davidlohr Bueso (5):
  perf bench sched-messaging: Plug memleak
  perf bench: Add --repeat option
  perf bench futex: Use global --repeat option
  perf bench mem: The -o and -n options are mutually exclusive
  perf bench sched-messaging: Drop barf()

Jiri Olsa (2):
  perf hists browser: Remove ev_name argument from perf_evsel__hists_browse
  perf ui browser: Fix scrollbar refresh row index

 tools/perf/Documentation/perf-bench.txt |  4 +++
 tools/perf/bench/bench.h|  1 +
 tools/perf/bench/futex-requeue.c| 10 +--
 tools/perf/bench/futex-wake.c   | 12 ++---
 tools/perf/bench/mem-memcpy.c   |  5 
 tools/perf/bench/mem-memset.c   |  5 
 tools/perf/bench/sched-messaging.c  | 47 +++--
 tools/perf/builtin-bench.c  |  7 +
 tools/perf/builtin-trace.c  | 12 -
 tools/perf/ui/browser.c |  2 +-
 tools/perf/ui/browsers/hists.c  | 25 --
 tools/perf/util/evlist.c|  5 ++--
 12 files changed, 67 insertions(+), 68 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-04-25 Thread Ingo Molnar

* Jiri Olsa  wrote:

> hi Ingo,
> please consider pulling
> 
> thanks,
> jirka
> 
> 
> The following changes since commit a81fef347b32dea2b31275826afe1c93fa0d2d54:
> 
>   Merge tag 'perf-core-for-mingo' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core 
> (2014-04-22 20:28:23 +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
> tags/perf-core-for-mingo
> 
> for you to fetch changes up to c3b789527b236873557f53740ceac47747e0e1cb:
> 
>   perf hists/tui: Count callchain rows separately (2014-04-24 16:34:27 +0200)
> 
> 
> perf/core improvements and fixes:
> 
> . Factor hists statistics counts processing which in turn also
>   fixes several bugs in TUI report command (Namhyung Kim)
> 
> Signed-off-by: Jiri Olsa 
> 
> 
> Namhyung Kim (11):
>   perf report: Count number of entries separately
>   perf hists: Rename hists__inc_stats()
>   perf hists: Move column length calculation out of hists__inc_stats()
>   perf hists: Add a couple of hists stat helper functions
>   perf hists: Collapse expanded callchains after filter is applied
>   perf tools: Account entry stats when it's added to the output tree
>   perf hists: Add missing update on filtered stats in 
> hists__decay_entries()
>   perf ui/tui: Fix off-by-one in hist_browser__update_nr_entries()
>   perf ui/tui: Rename hist_browser__update_nr_entries()
>   perf top/tui: Update nr_entries properly after a filter is applied
>   perf hists/tui: Count callchain rows separately
> 
>  tools/perf/builtin-annotate.c  |  3 +-
>  tools/perf/builtin-diff.c  | 23 ++-
>  tools/perf/builtin-report.c| 64 ++---
>  tools/perf/ui/browsers/hists.c | 92 
> +-
>  tools/perf/util/hist.c | 83 -
>  tools/perf/util/hist.h |  9 -
>  6 files changed, 171 insertions(+), 103 deletions(-)

Pulled, thanks a lot Jiri!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-04-25 Thread Ingo Molnar

* Jiri Olsa jo...@kernel.org wrote:

 hi Ingo,
 please consider pulling
 
 thanks,
 jirka
 
 
 The following changes since commit a81fef347b32dea2b31275826afe1c93fa0d2d54:
 
   Merge tag 'perf-core-for-mingo' of 
 git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core 
 (2014-04-22 20:28:23 +0200)
 
 are available in the git repository at:
 
 
   git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
 tags/perf-core-for-mingo
 
 for you to fetch changes up to c3b789527b236873557f53740ceac47747e0e1cb:
 
   perf hists/tui: Count callchain rows separately (2014-04-24 16:34:27 +0200)
 
 
 perf/core improvements and fixes:
 
 . Factor hists statistics counts processing which in turn also
   fixes several bugs in TUI report command (Namhyung Kim)
 
 Signed-off-by: Jiri Olsa jo...@kernel.org
 
 
 Namhyung Kim (11):
   perf report: Count number of entries separately
   perf hists: Rename hists__inc_stats()
   perf hists: Move column length calculation out of hists__inc_stats()
   perf hists: Add a couple of hists stat helper functions
   perf hists: Collapse expanded callchains after filter is applied
   perf tools: Account entry stats when it's added to the output tree
   perf hists: Add missing update on filtered stats in 
 hists__decay_entries()
   perf ui/tui: Fix off-by-one in hist_browser__update_nr_entries()
   perf ui/tui: Rename hist_browser__update_nr_entries()
   perf top/tui: Update nr_entries properly after a filter is applied
   perf hists/tui: Count callchain rows separately
 
  tools/perf/builtin-annotate.c  |  3 +-
  tools/perf/builtin-diff.c  | 23 ++-
  tools/perf/builtin-report.c| 64 ++---
  tools/perf/ui/browsers/hists.c | 92 
 +-
  tools/perf/util/hist.c | 83 -
  tools/perf/util/hist.h |  9 -
  6 files changed, 171 insertions(+), 103 deletions(-)

Pulled, thanks a lot Jiri!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-04-24 Thread Jiri Olsa
hi Ingo,
please consider pulling

thanks,
jirka


The following changes since commit a81fef347b32dea2b31275826afe1c93fa0d2d54:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core 
(2014-04-22 20:28:23 +0200)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
tags/perf-core-for-mingo

for you to fetch changes up to c3b789527b236873557f53740ceac47747e0e1cb:

  perf hists/tui: Count callchain rows separately (2014-04-24 16:34:27 +0200)


perf/core improvements and fixes:

. Factor hists statistics counts processing which in turn also
  fixes several bugs in TUI report command (Namhyung Kim)

Signed-off-by: Jiri Olsa 


Namhyung Kim (11):
  perf report: Count number of entries separately
  perf hists: Rename hists__inc_stats()
  perf hists: Move column length calculation out of hists__inc_stats()
  perf hists: Add a couple of hists stat helper functions
  perf hists: Collapse expanded callchains after filter is applied
  perf tools: Account entry stats when it's added to the output tree
  perf hists: Add missing update on filtered stats in hists__decay_entries()
  perf ui/tui: Fix off-by-one in hist_browser__update_nr_entries()
  perf ui/tui: Rename hist_browser__update_nr_entries()
  perf top/tui: Update nr_entries properly after a filter is applied
  perf hists/tui: Count callchain rows separately

 tools/perf/builtin-annotate.c  |  3 +-
 tools/perf/builtin-diff.c  | 23 ++-
 tools/perf/builtin-report.c| 64 ++---
 tools/perf/ui/browsers/hists.c | 92 +-
 tools/perf/util/hist.c | 83 -
 tools/perf/util/hist.h |  9 -
 6 files changed, 171 insertions(+), 103 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-04-24 Thread Jiri Olsa
hi Ingo,
please consider pulling

thanks,
jirka


The following changes since commit a81fef347b32dea2b31275826afe1c93fa0d2d54:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core 
(2014-04-22 20:28:23 +0200)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
tags/perf-core-for-mingo

for you to fetch changes up to c3b789527b236873557f53740ceac47747e0e1cb:

  perf hists/tui: Count callchain rows separately (2014-04-24 16:34:27 +0200)


perf/core improvements and fixes:

. Factor hists statistics counts processing which in turn also
  fixes several bugs in TUI report command (Namhyung Kim)

Signed-off-by: Jiri Olsa jo...@kernel.org


Namhyung Kim (11):
  perf report: Count number of entries separately
  perf hists: Rename hists__inc_stats()
  perf hists: Move column length calculation out of hists__inc_stats()
  perf hists: Add a couple of hists stat helper functions
  perf hists: Collapse expanded callchains after filter is applied
  perf tools: Account entry stats when it's added to the output tree
  perf hists: Add missing update on filtered stats in hists__decay_entries()
  perf ui/tui: Fix off-by-one in hist_browser__update_nr_entries()
  perf ui/tui: Rename hist_browser__update_nr_entries()
  perf top/tui: Update nr_entries properly after a filter is applied
  perf hists/tui: Count callchain rows separately

 tools/perf/builtin-annotate.c  |  3 +-
 tools/perf/builtin-diff.c  | 23 ++-
 tools/perf/builtin-report.c| 64 ++---
 tools/perf/ui/browsers/hists.c | 92 +-
 tools/perf/util/hist.c | 83 -
 tools/perf/util/hist.h |  9 -
 6 files changed, 171 insertions(+), 103 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-04-17 Thread Ingo Molnar

* Jiri Olsa  wrote:

> hi Ingo,
> please consider pulling
> 
> thanks,
> jirka
> 
> 
> The following changes since commit fbdd17ec5ce2e5e4027356fcfde769b88d15702f:
> 
>   Merge branch 'perf-core-for-mingo' into perf/urgent (2014-04-14 16:45:39 
> +0200)
> 
> are available in the git repository at:
> 
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
> tags/perf-core-for-mingo
> 
> for you to fetch changes up to a83edb2dfc5989fbadc594109c933bae528a2809:
> 
>   perf sched: Introduce --list-cmds for use by scripts (2014-04-16 17:16:05 
> +0200)
> 
> 
> perf/core improvements and fixes:
> 
> User visible:
> 
> . Add --percentage option to control absolute/relative percentage output 
> (Namhyung Kim)
> 
> Developer stuff:
> 
> . Add --list-cmds to 'kmem', 'mem', 'lock' and 'sched', for use by completion 
> scripts (Ramkumar Ramachandra)
> 
> Signed-off-by: Jiri Olsa 
> 
> 
> Namhyung Kim (7):
>   perf hists: Add support for showing relative percentage
>   perf report: Add --percentage option
>   perf top: Add --percentage option
>   perf diff: Add --percentage option
>   perf tools: Add hist.percentage config option
>   perf ui/tui: Add 'F' hotkey to toggle percentage output
>   perf tools: Show absolute percentage by default
> 
> Ramkumar Ramachandra (4):
>   perf kmem: Introduce --list-cmds for use by scripts
>   perf mem: Introduce --list-cmds for use by scripts
>   perf lock: Introduce --list-cmds for use by scripts
>   perf sched: Introduce --list-cmds for use by scripts
> 
>  tools/perf/Documentation/perf-diff.txt   | 21 ++--
>  tools/perf/Documentation/perf-report.txt | 24 +
>  tools/perf/Documentation/perf-top.txt| 18 --
>  tools/perf/builtin-diff.c| 32 -
>  tools/perf/builtin-kmem.c|  8 +++--
>  tools/perf/builtin-lock.c| 10 +++---
>  tools/perf/builtin-mem.c | 15 
>  tools/perf/builtin-report.c  | 22 ++--
>  tools/perf/builtin-sched.c   | 10 +++---
>  tools/perf/builtin-top.c |  8 +++--
>  tools/perf/perf-completion.sh|  4 +--
>  tools/perf/ui/browsers/hists.c   | 39 -
>  tools/perf/ui/gtk/hists.c| 11 +++---
>  tools/perf/ui/hist.c |  8 ++---
>  tools/perf/util/config.c |  4 +++
>  tools/perf/util/hist.c   | 59 
> +---
>  tools/perf/util/hist.h   | 10 ++
>  tools/perf/util/symbol.h |  3 +-
>  18 files changed, 230 insertions(+), 76 deletions(-)

Pulled, thanks a lot Jiri!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2014-04-17 Thread Ingo Molnar

* Jiri Olsa jo...@redhat.com wrote:

 hi Ingo,
 please consider pulling
 
 thanks,
 jirka
 
 
 The following changes since commit fbdd17ec5ce2e5e4027356fcfde769b88d15702f:
 
   Merge branch 'perf-core-for-mingo' into perf/urgent (2014-04-14 16:45:39 
 +0200)
 
 are available in the git repository at:
 
 
   git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
 tags/perf-core-for-mingo
 
 for you to fetch changes up to a83edb2dfc5989fbadc594109c933bae528a2809:
 
   perf sched: Introduce --list-cmds for use by scripts (2014-04-16 17:16:05 
 +0200)
 
 
 perf/core improvements and fixes:
 
 User visible:
 
 . Add --percentage option to control absolute/relative percentage output 
 (Namhyung Kim)
 
 Developer stuff:
 
 . Add --list-cmds to 'kmem', 'mem', 'lock' and 'sched', for use by completion 
 scripts (Ramkumar Ramachandra)
 
 Signed-off-by: Jiri Olsa jo...@redhat.com
 
 
 Namhyung Kim (7):
   perf hists: Add support for showing relative percentage
   perf report: Add --percentage option
   perf top: Add --percentage option
   perf diff: Add --percentage option
   perf tools: Add hist.percentage config option
   perf ui/tui: Add 'F' hotkey to toggle percentage output
   perf tools: Show absolute percentage by default
 
 Ramkumar Ramachandra (4):
   perf kmem: Introduce --list-cmds for use by scripts
   perf mem: Introduce --list-cmds for use by scripts
   perf lock: Introduce --list-cmds for use by scripts
   perf sched: Introduce --list-cmds for use by scripts
 
  tools/perf/Documentation/perf-diff.txt   | 21 ++--
  tools/perf/Documentation/perf-report.txt | 24 +
  tools/perf/Documentation/perf-top.txt| 18 --
  tools/perf/builtin-diff.c| 32 -
  tools/perf/builtin-kmem.c|  8 +++--
  tools/perf/builtin-lock.c| 10 +++---
  tools/perf/builtin-mem.c | 15 
  tools/perf/builtin-report.c  | 22 ++--
  tools/perf/builtin-sched.c   | 10 +++---
  tools/perf/builtin-top.c |  8 +++--
  tools/perf/perf-completion.sh|  4 +--
  tools/perf/ui/browsers/hists.c   | 39 -
  tools/perf/ui/gtk/hists.c| 11 +++---
  tools/perf/ui/hist.c |  8 ++---
  tools/perf/util/config.c |  4 +++
  tools/perf/util/hist.c   | 59 
 +---
  tools/perf/util/hist.h   | 10 ++
  tools/perf/util/symbol.h |  3 +-
  18 files changed, 230 insertions(+), 76 deletions(-)

Pulled, thanks a lot Jiri!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-04-16 Thread Jiri Olsa
hi Ingo,
please consider pulling

thanks,
jirka


The following changes since commit fbdd17ec5ce2e5e4027356fcfde769b88d15702f:

  Merge branch 'perf-core-for-mingo' into perf/urgent (2014-04-14 16:45:39 
+0200)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
tags/perf-core-for-mingo

for you to fetch changes up to a83edb2dfc5989fbadc594109c933bae528a2809:

  perf sched: Introduce --list-cmds for use by scripts (2014-04-16 17:16:05 
+0200)


perf/core improvements and fixes:

User visible:

. Add --percentage option to control absolute/relative percentage output 
(Namhyung Kim)

Developer stuff:

. Add --list-cmds to 'kmem', 'mem', 'lock' and 'sched', for use by completion 
scripts (Ramkumar Ramachandra)

Signed-off-by: Jiri Olsa 


Namhyung Kim (7):
  perf hists: Add support for showing relative percentage
  perf report: Add --percentage option
  perf top: Add --percentage option
  perf diff: Add --percentage option
  perf tools: Add hist.percentage config option
  perf ui/tui: Add 'F' hotkey to toggle percentage output
  perf tools: Show absolute percentage by default

Ramkumar Ramachandra (4):
  perf kmem: Introduce --list-cmds for use by scripts
  perf mem: Introduce --list-cmds for use by scripts
  perf lock: Introduce --list-cmds for use by scripts
  perf sched: Introduce --list-cmds for use by scripts

 tools/perf/Documentation/perf-diff.txt   | 21 ++--
 tools/perf/Documentation/perf-report.txt | 24 +
 tools/perf/Documentation/perf-top.txt| 18 --
 tools/perf/builtin-diff.c| 32 -
 tools/perf/builtin-kmem.c|  8 +++--
 tools/perf/builtin-lock.c| 10 +++---
 tools/perf/builtin-mem.c | 15 
 tools/perf/builtin-report.c  | 22 ++--
 tools/perf/builtin-sched.c   | 10 +++---
 tools/perf/builtin-top.c |  8 +++--
 tools/perf/perf-completion.sh|  4 +--
 tools/perf/ui/browsers/hists.c   | 39 -
 tools/perf/ui/gtk/hists.c| 11 +++---
 tools/perf/ui/hist.c |  8 ++---
 tools/perf/util/config.c |  4 +++
 tools/perf/util/hist.c   | 59 +---
 tools/perf/util/hist.h   | 10 ++
 tools/perf/util/symbol.h |  3 +-
 18 files changed, 230 insertions(+), 76 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2014-04-16 Thread Jiri Olsa
hi Ingo,
please consider pulling

thanks,
jirka


The following changes since commit fbdd17ec5ce2e5e4027356fcfde769b88d15702f:

  Merge branch 'perf-core-for-mingo' into perf/urgent (2014-04-14 16:45:39 
+0200)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git 
tags/perf-core-for-mingo

for you to fetch changes up to a83edb2dfc5989fbadc594109c933bae528a2809:

  perf sched: Introduce --list-cmds for use by scripts (2014-04-16 17:16:05 
+0200)


perf/core improvements and fixes:

User visible:

. Add --percentage option to control absolute/relative percentage output 
(Namhyung Kim)

Developer stuff:

. Add --list-cmds to 'kmem', 'mem', 'lock' and 'sched', for use by completion 
scripts (Ramkumar Ramachandra)

Signed-off-by: Jiri Olsa jo...@redhat.com


Namhyung Kim (7):
  perf hists: Add support for showing relative percentage
  perf report: Add --percentage option
  perf top: Add --percentage option
  perf diff: Add --percentage option
  perf tools: Add hist.percentage config option
  perf ui/tui: Add 'F' hotkey to toggle percentage output
  perf tools: Show absolute percentage by default

Ramkumar Ramachandra (4):
  perf kmem: Introduce --list-cmds for use by scripts
  perf mem: Introduce --list-cmds for use by scripts
  perf lock: Introduce --list-cmds for use by scripts
  perf sched: Introduce --list-cmds for use by scripts

 tools/perf/Documentation/perf-diff.txt   | 21 ++--
 tools/perf/Documentation/perf-report.txt | 24 +
 tools/perf/Documentation/perf-top.txt| 18 --
 tools/perf/builtin-diff.c| 32 -
 tools/perf/builtin-kmem.c|  8 +++--
 tools/perf/builtin-lock.c| 10 +++---
 tools/perf/builtin-mem.c | 15 
 tools/perf/builtin-report.c  | 22 ++--
 tools/perf/builtin-sched.c   | 10 +++---
 tools/perf/builtin-top.c |  8 +++--
 tools/perf/perf-completion.sh|  4 +--
 tools/perf/ui/browsers/hists.c   | 39 -
 tools/perf/ui/gtk/hists.c| 11 +++---
 tools/perf/ui/hist.c |  8 ++---
 tools/perf/util/config.c |  4 +++
 tools/perf/util/hist.c   | 59 +---
 tools/perf/util/hist.h   | 10 ++
 tools/perf/util/symbol.h |  3 +-
 18 files changed, 230 insertions(+), 76 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2013-07-23 Thread Ingo Molnar

* Arnaldo Carvalho de Melo  wrote:

> From: Arnaldo Carvalho de Melo 
> 
> Hi Ingo,
> 
>   Please consider pulling.
> 
>   Tomorrow I'll try to process Jiri's group leader patches and David's 
> 'kvm live'
> kits and continue looking for patches not processed during my vacations.
> 
> Thanks,
> 
> - Arnaldo
> 
> The following changes since commit 5a9821321e0a61674fd5c4b5a9e95007d0e7e052:
> 
>   Merge tag 'perf-core-for-mingo' of 
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
> (2013-07-19 09:35:30 +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 f9ea55d0ddf66ed030b2a478625cd5792d30df16:
> 
>   perf tools: Move weight back to common sort keys (2013-07-22 16:58:28 -0300)
> 
> 
> perf/core improvements and fixes.
> 
> . Fix memcpy benchmark for large sizes, from Andi Kleen.
> 
> . Support callchain sorting based on addresses, from Andi Kleen
> 
> . Move weight back to common sort keys, From Andi Kleen.
> 
> . Fix named threads support in 'perf script', from David Ahern.
> 
> . Handle ENODEV on default cycles event, fix from David Ahern.
> 
> . More install tests, from Jiri Olsa.
> 
> . Fix build with perl 5.18, from Kirill A. Shutemov.
> 
> Signed-off-by: Arnaldo Carvalho de Melo 
> 
> 
> Andi Kleen (3):
>   perf bench: Fix memcpy benchmark for large sizes
>   perf tools: Support callchain sorting based on addresses
>   perf tools: Move weight back to common sort keys
> 
> David Ahern (2):
>   perf script: Fix named threads support
>   perf evsel: Handle ENODEV on default cycles event
> 
> Jiri Olsa (5):
>   perf tests: Run ctags/cscope make tests only with needed binaries
>   perf tests: Rename TMP to TMP_O tests/make variable
>   perf tests: Add DESTDIR=TMP_DEST tests/make variable
>   perf tests: Add 'make install/install-bin' tests into tests/make
>   perf tests: Add broken install-* tests into tests/make
> 
> Kirill A. Shutemov (1):
>   perf tools: Fix build with perl 5.18
> 
>  tools/perf/Documentation/perf-report.txt   |  8 ++-
>  tools/perf/Makefile|  4 +-
>  tools/perf/bench/mem-memcpy.c  |  2 +
>  tools/perf/builtin-report.c| 19 --
>  tools/perf/builtin-script.c|  6 +-
>  tools/perf/tests/make  | 67 
> +++---
>  tools/perf/util/callchain.c|  7 ++-
>  tools/perf/util/callchain.h|  6 ++
>  tools/perf/util/evsel.c|  2 +-
>  tools/perf/util/hist.c |  3 +-
>  .../perf/util/scripting-engines/trace-event-perl.c | 14 +++--
>  .../util/scripting-engines/trace-event-python.c|  9 +--
>  tools/perf/util/sort.c |  4 +-
>  tools/perf/util/sort.h |  6 +-
>  tools/perf/util/trace-event-scripting.c|  3 +-
>  tools/perf/util/trace-event.h  |  4 +-
>  16 files changed, 124 insertions(+), 40 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [GIT PULL 00/11] perf/core improvements and fixes

2013-07-23 Thread Ingo Molnar

* Arnaldo Carvalho de Melo a...@infradead.org wrote:

 From: Arnaldo Carvalho de Melo a...@redhat.com
 
 Hi Ingo,
 
   Please consider pulling.
 
   Tomorrow I'll try to process Jiri's group leader patches and David's 
 'kvm live'
 kits and continue looking for patches not processed during my vacations.
 
 Thanks,
 
 - Arnaldo
 
 The following changes since commit 5a9821321e0a61674fd5c4b5a9e95007d0e7e052:
 
   Merge tag 'perf-core-for-mingo' of 
 git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
 (2013-07-19 09:35:30 +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 f9ea55d0ddf66ed030b2a478625cd5792d30df16:
 
   perf tools: Move weight back to common sort keys (2013-07-22 16:58:28 -0300)
 
 
 perf/core improvements and fixes.
 
 . Fix memcpy benchmark for large sizes, from Andi Kleen.
 
 . Support callchain sorting based on addresses, from Andi Kleen
 
 . Move weight back to common sort keys, From Andi Kleen.
 
 . Fix named threads support in 'perf script', from David Ahern.
 
 . Handle ENODEV on default cycles event, fix from David Ahern.
 
 . More install tests, from Jiri Olsa.
 
 . Fix build with perl 5.18, from Kirill A. Shutemov.
 
 Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com
 
 
 Andi Kleen (3):
   perf bench: Fix memcpy benchmark for large sizes
   perf tools: Support callchain sorting based on addresses
   perf tools: Move weight back to common sort keys
 
 David Ahern (2):
   perf script: Fix named threads support
   perf evsel: Handle ENODEV on default cycles event
 
 Jiri Olsa (5):
   perf tests: Run ctags/cscope make tests only with needed binaries
   perf tests: Rename TMP to TMP_O tests/make variable
   perf tests: Add DESTDIR=TMP_DEST tests/make variable
   perf tests: Add 'make install/install-bin' tests into tests/make
   perf tests: Add broken install-* tests into tests/make
 
 Kirill A. Shutemov (1):
   perf tools: Fix build with perl 5.18
 
  tools/perf/Documentation/perf-report.txt   |  8 ++-
  tools/perf/Makefile|  4 +-
  tools/perf/bench/mem-memcpy.c  |  2 +
  tools/perf/builtin-report.c| 19 --
  tools/perf/builtin-script.c|  6 +-
  tools/perf/tests/make  | 67 
 +++---
  tools/perf/util/callchain.c|  7 ++-
  tools/perf/util/callchain.h|  6 ++
  tools/perf/util/evsel.c|  2 +-
  tools/perf/util/hist.c |  3 +-
  .../perf/util/scripting-engines/trace-event-perl.c | 14 +++--
  .../util/scripting-engines/trace-event-python.c|  9 +--
  tools/perf/util/sort.c |  4 +-
  tools/perf/util/sort.h |  6 +-
  tools/perf/util/trace-event-scripting.c|  3 +-
  tools/perf/util/trace-event.h  |  4 +-
  16 files changed, 124 insertions(+), 40 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2013-07-22 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo 

Hi Ingo,

Please consider pulling.

Tomorrow I'll try to process Jiri's group leader patches and David's 
'kvm live'
kits and continue looking for patches not processed during my vacations.

Thanks,

- Arnaldo

The following changes since commit 5a9821321e0a61674fd5c4b5a9e95007d0e7e052:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2013-07-19 09:35:30 +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 f9ea55d0ddf66ed030b2a478625cd5792d30df16:

  perf tools: Move weight back to common sort keys (2013-07-22 16:58:28 -0300)


perf/core improvements and fixes.

. Fix memcpy benchmark for large sizes, from Andi Kleen.

. Support callchain sorting based on addresses, from Andi Kleen

. Move weight back to common sort keys, From Andi Kleen.

. Fix named threads support in 'perf script', from David Ahern.

. Handle ENODEV on default cycles event, fix from David Ahern.

. More install tests, from Jiri Olsa.

. Fix build with perl 5.18, from Kirill A. Shutemov.

Signed-off-by: Arnaldo Carvalho de Melo 


Andi Kleen (3):
  perf bench: Fix memcpy benchmark for large sizes
  perf tools: Support callchain sorting based on addresses
  perf tools: Move weight back to common sort keys

David Ahern (2):
  perf script: Fix named threads support
  perf evsel: Handle ENODEV on default cycles event

Jiri Olsa (5):
  perf tests: Run ctags/cscope make tests only with needed binaries
  perf tests: Rename TMP to TMP_O tests/make variable
  perf tests: Add DESTDIR=TMP_DEST tests/make variable
  perf tests: Add 'make install/install-bin' tests into tests/make
  perf tests: Add broken install-* tests into tests/make

Kirill A. Shutemov (1):
  perf tools: Fix build with perl 5.18

 tools/perf/Documentation/perf-report.txt   |  8 ++-
 tools/perf/Makefile|  4 +-
 tools/perf/bench/mem-memcpy.c  |  2 +
 tools/perf/builtin-report.c| 19 --
 tools/perf/builtin-script.c|  6 +-
 tools/perf/tests/make  | 67 +++---
 tools/perf/util/callchain.c|  7 ++-
 tools/perf/util/callchain.h|  6 ++
 tools/perf/util/evsel.c|  2 +-
 tools/perf/util/hist.c |  3 +-
 .../perf/util/scripting-engines/trace-event-perl.c | 14 +++--
 .../util/scripting-engines/trace-event-python.c|  9 +--
 tools/perf/util/sort.c |  4 +-
 tools/perf/util/sort.h |  6 +-
 tools/perf/util/trace-event-scripting.c|  3 +-
 tools/perf/util/trace-event.h  |  4 +-
 16 files changed, 124 insertions(+), 40 deletions(-)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2013-07-22 Thread Arnaldo Carvalho de Melo
From: Arnaldo Carvalho de Melo a...@redhat.com

Hi Ingo,

Please consider pulling.

Tomorrow I'll try to process Jiri's group leader patches and David's 
'kvm live'
kits and continue looking for patches not processed during my vacations.

Thanks,

- Arnaldo

The following changes since commit 5a9821321e0a61674fd5c4b5a9e95007d0e7e052:

  Merge tag 'perf-core-for-mingo' of 
git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core 
(2013-07-19 09:35:30 +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 f9ea55d0ddf66ed030b2a478625cd5792d30df16:

  perf tools: Move weight back to common sort keys (2013-07-22 16:58:28 -0300)


perf/core improvements and fixes.

. Fix memcpy benchmark for large sizes, from Andi Kleen.

. Support callchain sorting based on addresses, from Andi Kleen

. Move weight back to common sort keys, From Andi Kleen.

. Fix named threads support in 'perf script', from David Ahern.

. Handle ENODEV on default cycles event, fix from David Ahern.

. More install tests, from Jiri Olsa.

. Fix build with perl 5.18, from Kirill A. Shutemov.

Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com


Andi Kleen (3):
  perf bench: Fix memcpy benchmark for large sizes
  perf tools: Support callchain sorting based on addresses
  perf tools: Move weight back to common sort keys

David Ahern (2):
  perf script: Fix named threads support
  perf evsel: Handle ENODEV on default cycles event

Jiri Olsa (5):
  perf tests: Run ctags/cscope make tests only with needed binaries
  perf tests: Rename TMP to TMP_O tests/make variable
  perf tests: Add DESTDIR=TMP_DEST tests/make variable
  perf tests: Add 'make install/install-bin' tests into tests/make
  perf tests: Add broken install-* tests into tests/make

Kirill A. Shutemov (1):
  perf tools: Fix build with perl 5.18

 tools/perf/Documentation/perf-report.txt   |  8 ++-
 tools/perf/Makefile|  4 +-
 tools/perf/bench/mem-memcpy.c  |  2 +
 tools/perf/builtin-report.c| 19 --
 tools/perf/builtin-script.c|  6 +-
 tools/perf/tests/make  | 67 +++---
 tools/perf/util/callchain.c|  7 ++-
 tools/perf/util/callchain.h|  6 ++
 tools/perf/util/evsel.c|  2 +-
 tools/perf/util/hist.c |  3 +-
 .../perf/util/scripting-engines/trace-event-perl.c | 14 +++--
 .../util/scripting-engines/trace-event-python.c|  9 +--
 tools/perf/util/sort.c |  4 +-
 tools/perf/util/sort.h |  6 +-
 tools/perf/util/trace-event-scripting.c|  3 +-
 tools/perf/util/trace-event.h  |  4 +-
 16 files changed, 124 insertions(+), 40 deletions(-)
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2012-08-08 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, on top of my latest pull request,

- Arnaldo

-- 
1.7.9.2.358.g22243

The following changes since commit 9782243353ec135327a80c76c63464e592949cd1:

  perf script: Stop using pevent directly (2012-08-07 23:50:21 -0300)

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 0076d546b4f9b5c15121c6959d108a83fe43fa9a:

  perf scripts python: Add event_analyzing_sample.py as a sample for general 
event handling (2012-08-08 12:55:38 -0300)


perf/core improvements

. Assorted fixes for Documentation and build in 32 bit, from Robert Richter

. Add support for non-tracepoint events in perf script python, from Feng Tang

Signed-off-by: Arnaldo Carvalho de Melo 


Feng Tang (5):
  perf script: Add general python handler to process non-tracepoint events
  perf script: Replace "struct thread" with "struct addr_location" as a 
parameter for "process_event()"
  perf scripts python: Pass event/thread/dso name and symbol info to event 
handler in python
  perf scripts python: Add a python library EventClass.py
  perf scripts python: Add event_analyzing_sample.py as a sample for 
general event handling

Robert Richter (6):
  perf tools: Fix version file for perf documentation with OUTPUT variable 
set
  perf tools: Fix lib/traceevent build dir with OUTPUT variable set
  perf tools: Fix parsing of 64 bit raw config value for 32 bit
  tools lib traceevent: Fix cast from pointer to integer for 32 bit
  perf list: Update documentation about raw event setup
  perf list: Document precise event sampling for AMD IBS

 tools/lib/traceevent/event-parse.c |3 +-
 tools/perf/Documentation/Makefile  |6 +-
 tools/perf/Documentation/perf-list.txt |   48 +++--
 tools/perf/Makefile|8 +-
 tools/perf/builtin-script.c|5 +-
 .../Perf-Trace-Util/lib/Perf/Trace/EventClass.py   |   94 ++
 .../perf/scripts/python/event_analyzing_sample.py  |  193 
 tools/perf/util/parse-events.c |6 +-
 tools/perf/util/parse-events.h |6 +-
 tools/perf/util/parse-events.l |4 +-
 tools/perf/util/parse-events.y |   10 +-
 .../perf/util/scripting-engines/trace-event-perl.c |   11 +-
 .../util/scripting-engines/trace-event-python.c|   85 -
 tools/perf/util/trace-event-scripting.c|2 +-
 tools/perf/util/trace-event.h  |5 +-
 15 files changed, 441 insertions(+), 45 deletions(-)
 create mode 100755 
tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/EventClass.py
 create mode 100644 tools/perf/scripts/python/event_analyzing_sample.py
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[GIT PULL 00/11] perf/core improvements and fixes

2012-08-08 Thread Arnaldo Carvalho de Melo
Hi Ingo,

Please consider pulling, on top of my latest pull request,

- Arnaldo

-- 
1.7.9.2.358.g22243

The following changes since commit 9782243353ec135327a80c76c63464e592949cd1:

  perf script: Stop using pevent directly (2012-08-07 23:50:21 -0300)

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 0076d546b4f9b5c15121c6959d108a83fe43fa9a:

  perf scripts python: Add event_analyzing_sample.py as a sample for general 
event handling (2012-08-08 12:55:38 -0300)


perf/core improvements

. Assorted fixes for Documentation and build in 32 bit, from Robert Richter

. Add support for non-tracepoint events in perf script python, from Feng Tang

Signed-off-by: Arnaldo Carvalho de Melo a...@redhat.com


Feng Tang (5):
  perf script: Add general python handler to process non-tracepoint events
  perf script: Replace struct thread with struct addr_location as a 
parameter for process_event()
  perf scripts python: Pass event/thread/dso name and symbol info to event 
handler in python
  perf scripts python: Add a python library EventClass.py
  perf scripts python: Add event_analyzing_sample.py as a sample for 
general event handling

Robert Richter (6):
  perf tools: Fix version file for perf documentation with OUTPUT variable 
set
  perf tools: Fix lib/traceevent build dir with OUTPUT variable set
  perf tools: Fix parsing of 64 bit raw config value for 32 bit
  tools lib traceevent: Fix cast from pointer to integer for 32 bit
  perf list: Update documentation about raw event setup
  perf list: Document precise event sampling for AMD IBS

 tools/lib/traceevent/event-parse.c |3 +-
 tools/perf/Documentation/Makefile  |6 +-
 tools/perf/Documentation/perf-list.txt |   48 +++--
 tools/perf/Makefile|8 +-
 tools/perf/builtin-script.c|5 +-
 .../Perf-Trace-Util/lib/Perf/Trace/EventClass.py   |   94 ++
 .../perf/scripts/python/event_analyzing_sample.py  |  193 
 tools/perf/util/parse-events.c |6 +-
 tools/perf/util/parse-events.h |6 +-
 tools/perf/util/parse-events.l |4 +-
 tools/perf/util/parse-events.y |   10 +-
 .../perf/util/scripting-engines/trace-event-perl.c |   11 +-
 .../util/scripting-engines/trace-event-python.c|   85 -
 tools/perf/util/trace-event-scripting.c|2 +-
 tools/perf/util/trace-event.h  |5 +-
 15 files changed, 441 insertions(+), 45 deletions(-)
 create mode 100755 
tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/EventClass.py
 create mode 100644 tools/perf/scripts/python/event_analyzing_sample.py
--
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/