mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
docs/bpf: Fix an incorrect statement in verifier.rst
In verifier.rst, I found an incorrect statement (maybe a typo) in section 'Liveness marks tracking'. Basically, the wrong register is attributed to have a read mark. This may confuse the user. Signed-off-by: Yonghong Song <yonghong.song@linux.dev> Acked-by: Eduard Zingerman <eddyz87@gmail.com> Link: https://lore.kernel.org/r/20240111052136.3440417-1-yonghong.song@linux.dev Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
parent
6ae99ac8b7
commit
88031b929c
@ -562,7 +562,7 @@ works::
|
|||||||
* ``checkpoint[0].r1`` is marked as read;
|
* ``checkpoint[0].r1`` is marked as read;
|
||||||
|
|
||||||
* At instruction #5 exit is reached and ``checkpoint[0]`` can now be processed
|
* At instruction #5 exit is reached and ``checkpoint[0]`` can now be processed
|
||||||
by ``clean_live_states()``. After this processing ``checkpoint[0].r0`` has a
|
by ``clean_live_states()``. After this processing ``checkpoint[0].r1`` has a
|
||||||
read mark and all other registers and stack slots are marked as ``NOT_INIT``
|
read mark and all other registers and stack slots are marked as ``NOT_INIT``
|
||||||
or ``STACK_INVALID``
|
or ``STACK_INVALID``
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user