Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1586577

[PATCH] bpf: fix spelling mistake: "proccessed" -> "processed"

From Colin King <colin.king@canonical.com>
Newsgroups linux.kernel
Subject [PATCH] bpf: fix spelling mistake: "proccessed" -> "processed"
Date 2017-02-23 01:40 +0100
Message-ID <tdPBT-1Bi-1@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


From: Colin Ian King <colin.king@canonical.com>

trivial fix to spelling mistake in verbose log message

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 kernel/bpf/verifier.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index d2bded2..3fc6e39 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;
 		}
-- 
2.10.2

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] bpf: fix spelling mistake: "proccessed" -> "processed" Colin King <colin.king@canonical.com> - 2017-02-23 01:40 +0100
  Re: [PATCH] bpf: fix spelling mistake: "proccessed" -> "processed" David Miller <davem@davemloft.net> - 2017-02-23 17:10 +0100

csiph-web