Commit 2a3fdca4 authored by Joe Stringer's avatar Joe Stringer Committed by Alexei Starovoitov

bpf: Document BPF_PROG_TEST_RUN syscall command

Based on a brief read of the corresponding source code.
Signed-off-by: default avatarJoe Stringer <joe@cilium.io>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
Reviewed-by: default avatarQuentin Monnet <quentin@isovalent.com>
Acked-by: default avatarToke Høiland-Jørgensen <toke@redhat.com>
Acked-by: default avatarYonghong Song <yhs@fb.com>
Link: https://lore.kernel.org/bpf/20210302171947.2268128-7-joe@cilium.io
parent 32e76b18
...@@ -306,14 +306,22 @@ union bpf_iter_link_info { ...@@ -306,14 +306,22 @@ union bpf_iter_link_info {
* *
* BPF_PROG_TEST_RUN * BPF_PROG_TEST_RUN
* Description * Description
* Run an eBPF program a number of times against a provided * Run the eBPF program associated with the *prog_fd* a *repeat*
* program context and return the modified program context and * number of times against a provided program context *ctx_in* and
* duration of the test run. * data *data_in*, and return the modified program context
* *ctx_out*, *data_out* (for example, packet data), result of the
* execution *retval*, and *duration* of the test run.
* *
* Return * Return
* Returns zero on success. On error, -1 is returned and *errno* * Returns zero on success. On error, -1 is returned and *errno*
* is set appropriately. * is set appropriately.
* *
* **ENOSPC**
* Either *data_size_out* or *ctx_size_out* is too small.
* **ENOTSUPP**
* This command is not supported by the program type of
* the program referred to by *prog_fd*.
*
* BPF_PROG_GET_NEXT_ID * BPF_PROG_GET_NEXT_ID
* Description * Description
* Fetch the next eBPF program currently loaded into the kernel. * Fetch the next eBPF program currently loaded into the kernel.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment