On Tue, Oct 20, 2015 at 08:02:34PM -0700, Alexei Starovoitov wrote:
> This helper is used to send raw data from eBPF program into
> special PERF_TYPE_SOFTWARE/PERF_COUNT_SW_BPF_OUTPUT perf_event.
> User space needs to perf_event_open() it (either for one or all cpus) and
> store FD into perf_event_array (similar to bpf_perf_event_read() helper)
> before eBPF program can send data into it.
> 

> diff --git a/include/uapi/linux/perf_event.h b/include/uapi/linux/perf_event.h
> index 2881145cda86..d3c417615361 100644
> --- a/include/uapi/linux/perf_event.h
> +++ b/include/uapi/linux/perf_event.h
> @@ -110,6 +110,7 @@ enum perf_sw_ids {
>       PERF_COUNT_SW_ALIGNMENT_FAULTS          = 7,
>       PERF_COUNT_SW_EMULATION_FAULTS          = 8,
>       PERF_COUNT_SW_DUMMY                     = 9,
> +     PERF_COUNT_SW_BPF_OUTPUT                = 10,
>  
>       PERF_COUNT_SW_MAX,                      /* non-ABI */
>  };

Do you really need the new type? Can't you use DUMMY for this?
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to