diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-12-18 14:03:12 +0000 |
---|---|---|
committer | Daniel Borkmann <daniel@iogearbox.net> | 2017-12-19 01:22:59 +0100 |
commit | e90004d56bf805db7d4401fe51a80a93c311cfe6 (patch) | |
tree | 8f3d7de7b51eb7f23ce985cd79f4d8cb5baddd54 /kernel/bpf/verifier.c | |
parent | 962b582785b60a2b420b0636ad762959c72406f6 (diff) | |
download | blackbird-obmc-linux-e90004d56bf805db7d4401fe51a80a93c311cfe6.tar.gz blackbird-obmc-linux-e90004d56bf805db7d4401fe51a80a93c311cfe6.zip |
bpf: fix spelling mistake: "funcation"-> "function"
Trivial fix to spelling mistake in error message text.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Diffstat (limited to 'kernel/bpf/verifier.c')
-rw-r--r-- | kernel/bpf/verifier.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |