aboutsummaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorGravatar Puranjay Mohan <puranjay@kernel.org> 2024-05-14 13:03:03 +0000
committerGravatar Alexei Starovoitov <ast@kernel.org> 2024-05-15 09:34:54 -0700
commit7a8030057f6791d35dd20987f9ff15855c01c1bb (patch)
treed569ed0747d2deac7a968b415e902b747b7b5f31 /Documentation
parentlibbpf: fix feature detectors when using token_fd (diff)
downloadlinux-7a8030057f6791d35dd20987f9ff15855c01c1bb.tar.gz
linux-7a8030057f6791d35dd20987f9ff15855c01c1bb.tar.bz2
linux-7a8030057f6791d35dd20987f9ff15855c01c1bb.zip
bpf, docs: Fix the description of 'src' in ALU instructions
An ALU instruction's source operand can be the value in the source register or the 32-bit immediate value encoded in the instruction. This is controlled by the 's' bit of the 'opcode'. The current description explicitly uses the phrase 'value of the source register' when defining the meaning of 'src'. Change the description to use 'source operand' in place of 'value of the source register'. Signed-off-by: Puranjay Mohan <puranjay@kernel.org> Acked-by: Dave Thaler <dthaler1968@gmail.com> Link: https://lore.kernel.org/r/20240514130303.113607-1-puranjay@kernel.org Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/bpf/standardization/instruction-set.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/bpf/standardization/instruction-set.rst b/Documentation/bpf/standardization/instruction-set.rst
index 997560abadab..00c93eb42613 100644
--- a/Documentation/bpf/standardization/instruction-set.rst
+++ b/Documentation/bpf/standardization/instruction-set.rst
@@ -301,8 +301,9 @@ Arithmetic instructions
``ALU`` uses 32-bit wide operands while ``ALU64`` uses 64-bit wide operands for
otherwise identical operations. ``ALU64`` instructions belong to the
base64 conformance group unless noted otherwise.
-The 'code' field encodes the operation as below, where 'src' and 'dst' refer
-to the values of the source and destination registers, respectively.
+The 'code' field encodes the operation as below, where 'src' refers to the
+the source operand and 'dst' refers to the value of the destination
+register.
===== ===== ======= ==========================================================
name code offset description