diff options
author | Colin Ian King <colin.king@canonical.com> | 2017-02-23 00:20:53 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-02-23 10:46:08 -0500 |
commit | bc1750f366902449f36f15f4a692a495fe6bcdfe (patch) | |
tree | 0c917ce0b1a3cd87b05d2e477f126c5db31a5764 /kernel/bpf | |
parent | 40df93be6a7084e09688e1ddc45615d13df133fc (diff) | |
download | talos-obmc-linux-bc1750f366902449f36f15f4a692a495fe6bcdfe.tar.gz talos-obmc-linux-bc1750f366902449f36f15f4a692a495fe6bcdfe.zip |
bpf: fix spelling mistake: "proccessed" -> "processed"
trivial fix to spelling mistake in verbose log message
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel/bpf')
-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 d2bded2b250c..3fc6e39b223e 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -2776,7 +2776,7 @@ static int do_check(struct bpf_verifier_env *env) class = BPF_CLASS(insn->code); if (++insn_processed > BPF_COMPLEXITY_LIMIT_INSNS) { - verbose("BPF program is too large. Proccessed %d insn\n", + verbose("BPF program is too large. Processed %d insn\n", insn_processed); return -E2BIG; } |