Skip to content

Commit b8c1a30

Browse files
rddunlapborkmann
authored andcommitted
bpf: Delete repeated words in comments
Drop repeated words in kernel/bpf/: {has, the} Signed-off-by: Randy Dunlap <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
1 parent d5ca590 commit b8c1a30

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

kernel/bpf/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1966,7 +1966,7 @@ void bpf_prog_array_delete_safe(struct bpf_prog_array *array,
19661966
* @index: the index of the program to replace
19671967
*
19681968
* Skips over dummy programs, by not counting them, when calculating
1969-
* the the position of the program to replace.
1969+
* the position of the program to replace.
19701970
*
19711971
* Return:
19721972
* * 0 - Success

kernel/bpf/verifier.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8294,7 +8294,7 @@ static bool stacksafe(struct bpf_func_state *old,
82948294
if (old->stack[spi].slot_type[i % BPF_REG_SIZE] !=
82958295
cur->stack[spi].slot_type[i % BPF_REG_SIZE])
82968296
/* Ex: old explored (safe) state has STACK_SPILL in
8297-
* this stack slot, but current has has STACK_MISC ->
8297+
* this stack slot, but current has STACK_MISC ->
82988298
* this verifier states are not equivalent,
82998299
* return false to continue verification of this path
83008300
*/

0 commit comments

Comments
 (0)