Skip to content

Commit

Permalink
bpf: fix spelling mistake: "obusing" -> "abusing"
Browse files Browse the repository at this point in the history
Trivial fix to spelling mistake in error message text.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
  • Loading branch information
Colin Ian King authored and Alexei Starovoitov committed Jan 10, 2018
1 parent 661e4e3 commit 4095034
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/bpf/verifier.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4095034

Please sign in to comment.