From: Colin Ian King Date: Mon, 18 Dec 2017 14:03:12 +0000 (+0000) Subject: bpf: fix spelling mistake: "funcation"-> "function" X-Git-Tag: for-linus-20180210~31^2~279^2~12 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=e90004d56bf805db7d4401fe51a80a93c311cfe6;p=linux-2.6-block.git bpf: fix spelling mistake: "funcation"-> "function" Trivial fix to spelling mistake in error message text. Signed-off-by: Colin Ian King Signed-off-by: Daniel Borkmann --- diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 48b2901cf483..56ef21c71bd3 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -772,7 +772,7 @@ static int check_subprogs(struct bpf_verifier_env *env) return -EPERM; } if (bpf_prog_is_dev_bound(env->prog->aux)) { - verbose(env, "funcation calls in offloaded programs are not supported yet\n"); + verbose(env, "function calls in offloaded programs are not supported yet\n"); return -EINVAL; } ret = add_subprog(env, i + insn[i].imm + 1);