All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 03/11] perf_event_open.2: 4.1 PERF_EVENT_IOC_SET_BPF support
@ 2015-07-23 17:10 Vince Weaver
  2015-10-14  6:27 ` Michael Kerrisk (man-pages)
  0 siblings, 1 reply; 2+ messages in thread
From: Vince Weaver @ 2015-07-23 17:10 UTC (permalink / raw)
  To: Michael Kerrisk (man-pages)
  Cc: linux-man, linux-kernel, Peter Zijlstra, Ingo Molnar,
	Arnaldo Carvalho de Melo, Stephane Eranian, Alexei Starovoitov,
	Steven Rostedt, Masami Hiramatsu, Andrew Morton, Daniel Borkmann,
	David S. Miller, Jiri Olsa, Linus Torvalds, Namhyung Kim,
	Vince Weaver


This manpage patch relates to the addition of the
PERF_EVENT_IOC_SET_BPF ioctl in the following commit:

	commit 2541517c32be2531e0da59dfd7efc1ce844644f5
	Author: Alexei Starovoitov <ast@plumgrid.com>
    
	tracing, perf: Implement BPF programs attached to kprobes

	Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
	Reviewed-by: Steven Rostedt <rostedt@goodmis.org>
	Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
	Cc: Andrew Morton <akpm@linux-foundation.org>
	Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
	Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
	Cc: Daniel Borkmann <daniel@iogearbox.net>
	Cc: David S. Miller <davem@davemloft.net>
	Cc: Jiri Olsa <jolsa@redhat.com>
	Cc: Linus Torvalds <torvalds@linux-foundation.org>
	Cc: Namhyung Kim <namhyung@kernel.org>
	Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
	Cc: Peter Zijlstra <peterz@infradead.org>
	Link: http://lkml.kernel.org/r/1427312966-8434-4-git-send-email-ast@plumgrid.com
	Signed-off-by: Ingo Molnar <mingo@kernel.org>


Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>

diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2
index a6b90ec..09eda9a 100644
--- a/man2/perf_event_open.2
+++ b/man2/perf_event_open.2
@@ -2570,6 +2570,19 @@ This returns the event ID value for the given event file descriptor.
 
 The argument is a pointer to a 64-bit unsigned integer
 to hold the result.
+.TP
+.BR PERF_EVENT_IOC_SET_BPF " (since Linux 4.1)"
+.\" commit 2541517c32be2531e0da59dfd7efc1ce844644f5
+This allows attaching a Berkeley Packet Filter (BPF)
+program to an existing kprobe tracepoint event.
+You need
+.B CAP_SYS_ADMIN
+privileges to use this ioctl.
+
+The argument is a BPF program file descriptor that was created by
+a previous
+.BR bpf (2)
+system call.
 .SS Using prctl
 A process can enable or disable all the event groups that are
 attached to it using the

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [patch 03/11] perf_event_open.2: 4.1 PERF_EVENT_IOC_SET_BPF support
  2015-07-23 17:10 [patch 03/11] perf_event_open.2: 4.1 PERF_EVENT_IOC_SET_BPF support Vince Weaver
@ 2015-10-14  6:27 ` Michael Kerrisk (man-pages)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Kerrisk (man-pages) @ 2015-10-14  6:27 UTC (permalink / raw)
  To: Vince Weaver
  Cc: mtk.manpages, linux-man, linux-kernel, Peter Zijlstra,
	Ingo Molnar, Arnaldo Carvalho de Melo, Stephane Eranian,
	Alexei Starovoitov, Steven Rostedt, Masami Hiramatsu,
	Andrew Morton, Daniel Borkmann, David S. Miller, Jiri Olsa,
	Linus Torvalds, Namhyung Kim

On 07/23/2015 07:10 PM, Vince Weaver wrote:
> 
> This manpage patch relates to the addition of the
> PERF_EVENT_IOC_SET_BPF ioctl in the following commit:

Thanks, Vince. Applied.

Cheers,

Michael



> 	commit 2541517c32be2531e0da59dfd7efc1ce844644f5
> 	Author: Alexei Starovoitov <ast@plumgrid.com>
>     
> 	tracing, perf: Implement BPF programs attached to kprobes
> 
> 	Signed-off-by: Alexei Starovoitov <ast@plumgrid.com>
> 	Reviewed-by: Steven Rostedt <rostedt@goodmis.org>
> 	Reviewed-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
> 	Cc: Andrew Morton <akpm@linux-foundation.org>
> 	Cc: Arnaldo Carvalho de Melo <acme@infradead.org>
> 	Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
> 	Cc: Daniel Borkmann <daniel@iogearbox.net>
> 	Cc: David S. Miller <davem@davemloft.net>
> 	Cc: Jiri Olsa <jolsa@redhat.com>
> 	Cc: Linus Torvalds <torvalds@linux-foundation.org>
> 	Cc: Namhyung Kim <namhyung@kernel.org>
> 	Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
> 	Cc: Peter Zijlstra <peterz@infradead.org>
> 	Link: http://lkml.kernel.org/r/1427312966-8434-4-git-send-email-ast@plumgrid.com
> 	Signed-off-by: Ingo Molnar <mingo@kernel.org>
> 
> 
> Signed-off-by: Vince Weaver <vincent.weaver@maine.edu>
> 
> diff --git a/man2/perf_event_open.2 b/man2/perf_event_open.2
> index a6b90ec..09eda9a 100644
> --- a/man2/perf_event_open.2
> +++ b/man2/perf_event_open.2
> @@ -2570,6 +2570,19 @@ This returns the event ID value for the given event file descriptor.
>  
>  The argument is a pointer to a 64-bit unsigned integer
>  to hold the result.
> +.TP
> +.BR PERF_EVENT_IOC_SET_BPF " (since Linux 4.1)"
> +.\" commit 2541517c32be2531e0da59dfd7efc1ce844644f5
> +This allows attaching a Berkeley Packet Filter (BPF)
> +program to an existing kprobe tracepoint event.
> +You need
> +.B CAP_SYS_ADMIN
> +privileges to use this ioctl.
> +
> +The argument is a BPF program file descriptor that was created by
> +a previous
> +.BR bpf (2)
> +system call.
>  .SS Using prctl
>  A process can enable or disable all the event groups that are
>  attached to it using the
> 


-- 
Michael Kerrisk
Linux man-pages maintainer; http://www.kernel.org/doc/man-pages/
Linux/UNIX System Programming Training: http://man7.org/training/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-10-14  6:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-23 17:10 [patch 03/11] perf_event_open.2: 4.1 PERF_EVENT_IOC_SET_BPF support Vince Weaver
2015-10-14  6:27 ` Michael Kerrisk (man-pages)

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.