aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/bpf/verifier.c
diff options
context:
space:
mode:
authorRandy Dunlap <rdunlap@infradead.org>2020-08-06 20:31:41 -0700
committerDaniel Borkmann <daniel@iogearbox.net>2020-08-07 18:57:24 +0200
commitb8c1a3090741f349322ad855d2b66d6e9752a60d (patch)
tree8b9588ae0dc62f817bd1cb679c5197607b8b9980 /kernel/bpf/verifier.c
parentselftests/bpf: Fix silent Makefile output (diff)
downloadlinux-dev-b8c1a3090741f349322ad855d2b66d6e9752a60d.tar.xz
linux-dev-b8c1a3090741f349322ad855d2b66d6e9752a60d.zip
bpf: Delete repeated words in comments
Drop repeated words in kernel/bpf/: {has, the} Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Link: https://lore.kernel.org/bpf/20200807033141.10437-1-rdunlap@infradead.org
Diffstat (limited to 'kernel/bpf/verifier.c')
-rw-r--r--kernel/bpf/verifier.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index b6ccfce3bf4c..ef938f17b944 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -8294,7 +8294,7 @@ static bool stacksafe(struct bpf_func_state *old,
if (old->stack[spi].slot_type[i % BPF_REG_SIZE] !=
cur->stack[spi].slot_type[i % BPF_REG_SIZE])
/* Ex: old explored (safe) state has STACK_SPILL in
- * this stack slot, but current has has STACK_MISC ->
+ * this stack slot, but current has STACK_MISC ->
* this verifier states are not equivalent,
* return false to continue verification of this path
*/