[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5630C9E8.5090806@cogentembedded.com>
Date: Wed, 28 Oct 2015 16:13:12 +0300
From: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
To: Wang Nan <wangnan0@...wei.com>, acme@...nel.org, ast@...nel.org,
brendan.d.gregg@...il.com, jolsa@...nel.org
Cc: lizefan@...wei.com, pi3orama@....com, davem@...emloft.net,
linux-kernel@...r.kernel.org, netdev@...r.kernel.org,
Alexei Starovoitov <ast@...mgrid.com>,
Arnaldo Carvalho de Melo <acme@...hat.com>
Subject: Re: [RFC PATCH net-next 2/4] perf tools: Introduce bpf-output event
Hello.
On 10/28/2015 1:55 PM, Wang Nan wrote:
> Commit a43eec304259a6c637f4014a6d4767159b6a3aa3 (bpf: introduce
> bpf_perf_event_output() helper) add a helper to enable BPF program
You haven't run the patch thru scripts/checkpath.pl, I guess? It now
enforces the certain style of citing a commit.
> output data to perf ring buffer through a new type of perf event
> PERF_COUNT_SW_BPF_OUTPUT. This patch enable perf to create perf
> event of that type. Now perf user can use following cmdline to
> receive output data from BPF programs:
>
> # perf record -a -e evt=bpf-output/no-inherit/ \
> -e ./test_bpf_output.c/maps.bpf-output.event=evt/ ls
>
> # perf script
> perf 12927 [004] 355971.129276: 0 evt=bpf-output/no-inherit/: ffffffff811ed5f1 sys_write
> perf 12927 [004] 355971.129279: 0 evt=bpf-output/no-inherit/: ffffffff811ed5f1 sys_write
> ...
>
> Signed-off-by: Wang Nan <wangnan0@...wei.com>
> Cc: Alexei Starovoitov <ast@...mgrid.com>
> Cc: Arnaldo Carvalho de Melo <acme@...hat.com>
> Cc: Brendan Gregg <brendan.d.gregg@...il.com>
> Cc: David S. Miller <davem@...emloft.net>
> ---
> tools/perf/util/evsel.c | 6 ++++++
> tools/perf/util/parse-events.c | 4 ++++
> tools/perf/util/parse-events.l | 1 +
> 3 files changed, 11 insertions(+)
>
> diff --git a/tools/perf/util/evsel.c b/tools/perf/util/evsel.c
> index 397fb4e..f01defb 100644
> --- a/tools/perf/util/evsel.c
> +++ b/tools/perf/util/evsel.c
> @@ -224,6 +224,12 @@ struct perf_evsel *perf_evsel__new_idx(struct perf_event_attr *attr, int idx)
> if (evsel != NULL)
> perf_evsel__init(evsel, attr, idx);
>
> + if ((evsel->attr.type == PERF_TYPE_SOFTWARE) &&
> + (evsel->attr.config == PERF_COUNT_SW_BPF_OUTPUT)) {
Inner parens not necessary here.
[...]
MBR, Sergei
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists