OSDN Git Service

perf, bpf: Consider events with attr.bpf_event as side-band events
authorSong Liu <songliubraving@fb.com>
Tue, 26 Feb 2019 00:20:05 +0000 (16:20 -0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Thu, 28 Feb 2019 17:20:35 +0000 (14:20 -0300)
Events with attr.bpf_event set should be considered as side-band events,
as they carry information about BPF programs.

Signed-off-by: Song Liu <songliubraving@fb.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Daniel Borkmann <daniel@iogearbox.net>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: kernel-team@fb.com
Cc: netdev@vger.kernel.org
Fixes: 6ee52e2a3fe4 ("perf, bpf: Introduce PERF_RECORD_BPF_EVENT")
Link: http://lkml.kernel.org/r/20190226002019.3748539-2-songliubraving@fb.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
kernel/events/core.c

index 5f59d84..dd9698a 100644 (file)
@@ -4238,7 +4238,8 @@ static bool is_sb_event(struct perf_event *event)
        if (attr->mmap || attr->mmap_data || attr->mmap2 ||
            attr->comm || attr->comm_exec ||
            attr->task || attr->ksymbol ||
-           attr->context_switch)
+           attr->context_switch ||
+           attr->bpf_event)
                return true;
        return false;
 }