lkml.org 
[lkml]   [2020]   [Apr]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] perf script: Simplify auxiliary event printing functions
On Thu, Apr 02, 2020 at 05:15:48PM +0300, Adrian Hunter wrote:
> This simplifies the print functions for the following perf script
> options:
>
> --show-task-events
> --show-namespace-events
> --show-cgroup-events
> --show-mmap-events
> --show-switch-events
> --show-lost-events
> --show-bpf-events
>
> Example:
> # perf record --switch-events -a -e cycles -c 10000 sleep 1
> Before:
> # perf script --show-task-events --show-namespace-events --show-cgroup-events --show-mmap-events --show-switch-events --show-lost-events --show-bpf-events >out-before.txt
> After:
> # perf script --show-task-events --show-namespace-events --show-cgroup-events --show-mmap-events --show-switch-events --show-lost-events --show-bpf-events >out-after.txt
> # diff -s out-before.txt out-after.txt
> Files out-before.txt and out-after.tx are identical
>
> Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
> ---
> tools/perf/builtin-script.c | 304 ++++++++----------------------------
> 1 file changed, 66 insertions(+), 238 deletions(-)

awesome ;-)

>
> diff --git a/tools/perf/builtin-script.c b/tools/perf/builtin-script.c
> index 186ebf827fa1..348fec9743a4 100644
> --- a/tools/perf/builtin-script.c
> +++ b/tools/perf/builtin-script.c
> @@ -2040,7 +2040,7 @@ static int cleanup_scripting(void)
>
> static bool filter_cpu(struct perf_sample *sample)
> {
> - if (cpu_list)
> + if (cpu_list && sample->cpu != (u32)-1)
> return !test_bit(sample->cpu, cpu_bitmap);

why is this needed? filter_cpu seems to be already called
from all the changed functions..

thanks,
jirka

\
 
 \ /
  Last update: 2020-04-03 12:01    [W:0.690 / U:0.528 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site