Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bc1750f3 authored by Colin Ian King's avatar Colin Ian King Committed by David S. Miller
Browse files

bpf: fix spelling mistake: "proccessed" -> "processed"



trivial fix to spelling mistake in verbose log message

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 40df93be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
		}