From: Colin Ian King Date: Wed, 10 Jan 2018 09:20:54 +0000 (+0000) Subject: bpf: fix spelling mistake: "obusing" -> "abusing" X-Git-Tag: v4.15-rc9~33^2~24^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=40950343932879247861ae152dcb55e4555afdff;p=thirdparty%2Flinux.git bpf: fix spelling mistake: "obusing" -> "abusing" Trivial fix to spelling mistake in error message text. Signed-off-by: Colin Ian King Signed-off-by: Alexei Starovoitov --- diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index b414d6b2d4707..96ab165c873c2 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -4472,7 +4472,7 @@ static int fixup_bpf_calls(struct bpf_verifier_env *env) */ map_ptr = env->insn_aux_data[i + delta].map_ptr; if (map_ptr == BPF_MAP_PTR_POISON) { - verbose(env, "tail_call obusing map_ptr\n"); + verbose(env, "tail_call abusing map_ptr\n"); return -EINVAL; } if (!map_ptr->unpriv_array)