Message ID | b6120b31-3d1d-bf2d-2f2a-aa768d91257b@synopsys.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2f6d1e0f8ff3cf66b1eef8ed36f6c64d2e679284 |
Delegated to: | BPF |
Headers | show |
Series | bpf, docs: fix the code formatting in instruction-set | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
bpf/vmtest-bpf-next-PR | pending | PR summary |
bpf/vmtest-bpf-next-VM_Test-1 | success | Logs for Kernel LATEST on ubuntu-latest with gcc |
bpf/vmtest-bpf-next-VM_Test-2 | success | Logs for Kernel LATEST on ubuntu-latest with llvm-15 |
bpf/vmtest-bpf-next-VM_Test-3 | pending | Logs for Kernel LATEST on z15 with gcc |
Hello: This patch was applied to bpf/bpf-next.git (master) by Andrii Nakryiko <andrii@kernel.org>: On Fri, 24 Jun 2022 14:14:11 +0000 you wrote: > A minor typo fix to include "| BPF_LD" into its previous > code phrase: > > ``BPF_IND`` | BPF_LD --> ``BPF_IND | BPF_LD`` > > Signed-off-by: Shahab Vahedi <shahab@synopsys.com> > > [...] Here is the summary with links: - bpf, docs: fix the code formatting in instruction-set https://git.kernel.org/bpf/bpf-next/c/2f6d1e0f8ff3 You are awesome, thank you!
diff --git a/Documentation/bpf/instruction-set.rst b/Documentation/bpf/instruction-set.rst index 9e27fbdb2206..1b0e6711dec9 100644 --- a/Documentation/bpf/instruction-set.rst +++ b/Documentation/bpf/instruction-set.rst @@ -351,7 +351,7 @@ These instructions have seven implicit operands: * Register R0 is an implicit output which contains the data fetched from the packet. * Registers R1-R5 are scratch registers that are clobbered after a call to - ``BPF_ABS | BPF_LD`` or ``BPF_IND`` | BPF_LD instructions. + ``BPF_ABS | BPF_LD`` or ``BPF_IND | BPF_LD`` instructions. These instructions have an implicit program exit condition as well. When an eBPF program is trying to access the data beyond the packet boundary, the
A minor typo fix to include "| BPF_LD" into its previous code phrase: ``BPF_IND`` | BPF_LD --> ``BPF_IND | BPF_LD`` Signed-off-by: Shahab Vahedi <shahab@synopsys.com> --- Documentation/bpf/instruction-set.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)