Message ID | 20220928221555.67873-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2efcf695bfc0f078dd7d5d23d96a97db34c930d5 |
Delegated to: | BPF |
Headers | show |
Series | selftests/bpf: Fix spelling mistake "unpriviledged" -> "unprivileged" | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
bpf/vmtest-bpf-next-VM_Test-11 | success | Logs for test_progs on x86_64 with llvm-16 |
bpf/vmtest-bpf-next-PR | fail | PR summary |
bpf/vmtest-bpf-next-VM_Test-7 | success | Logs for test_maps on x86_64 with gcc |
bpf/vmtest-bpf-next-VM_Test-8 | success | Logs for test_maps on x86_64 with llvm-16 |
bpf/vmtest-bpf-next-VM_Test-9 | success | Logs for test_progs on s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-10 | success | Logs for test_progs on x86_64 with gcc |
bpf/vmtest-bpf-next-VM_Test-12 | success | Logs for test_progs_no_alu32 on s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-13 | success | Logs for test_progs_no_alu32 on x86_64 with gcc |
bpf/vmtest-bpf-next-VM_Test-14 | success | Logs for test_progs_no_alu32 on x86_64 with llvm-16 |
bpf/vmtest-bpf-next-VM_Test-15 | success | Logs for test_verifier on s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-6 | success | Logs for test_maps on s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-4 | success | Logs for llvm-toolchain |
bpf/vmtest-bpf-next-VM_Test-5 | success | Logs for set-matrix |
bpf/vmtest-bpf-next-VM_Test-2 | success | Logs for build for x86_64 with gcc |
bpf/vmtest-bpf-next-VM_Test-3 | success | Logs for build for x86_64 with llvm-16 |
bpf/vmtest-bpf-next-VM_Test-1 | success | Logs for build for s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-16 | success | Logs for test_verifier on x86_64 with gcc |
bpf/vmtest-bpf-next-VM_Test-17 | success | Logs for test_verifier on x86_64 with llvm-16 |
Colin Ian King wrote: > There a couple of spelling mistakes, one in a literal string and one > in a comment. Fix them. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/testing/selftests/bpf/verifier/calls.c | 2 +- > tools/testing/selftests/bpf/verifier/var_off.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/testing/selftests/bpf/verifier/calls.c b/tools/testing/selftests/bpf/verifier/calls.c > index 3fb4f69b1962..e1a937277b54 100644 > --- a/tools/testing/selftests/bpf/verifier/calls.c > +++ b/tools/testing/selftests/bpf/verifier/calls.c > @@ -284,7 +284,7 @@ > .result = ACCEPT, > }, > { > - "calls: not on unpriviledged", > + "calls: not on unprivileged", > .insns = { > BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 1, 0, 2), > BPF_MOV64_IMM(BPF_REG_0, 1), > diff --git a/tools/testing/selftests/bpf/verifier/var_off.c b/tools/testing/selftests/bpf/verifier/var_off.c > index 187c6f6e32bc..d37f512fad16 100644 > --- a/tools/testing/selftests/bpf/verifier/var_off.c > +++ b/tools/testing/selftests/bpf/verifier/var_off.c > @@ -121,7 +121,7 @@ > BPF_EXIT_INSN(), > }, > .fixup_map_hash_8b = { 1 }, > - /* The unpriviledged case is not too interesting; variable > + /* The unprivileged case is not too interesting; variable > * stack access is rejected. > */ > .errstr_unpriv = "R2 variable stack access prohibited for !root", > -- > 2.37.1 > Sure, but bpf-next. Acked-by: John Fastabend <john.fastabend@gmail.com>
Hello: This patch was applied to bpf/bpf-next.git (master) by Andrii Nakryiko <andrii@kernel.org>: On Wed, 28 Sep 2022 23:15:55 +0100 you wrote: > There a couple of spelling mistakes, one in a literal string and one > in a comment. Fix them. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/testing/selftests/bpf/verifier/calls.c | 2 +- > tools/testing/selftests/bpf/verifier/var_off.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Here is the summary with links: - selftests/bpf: Fix spelling mistake "unpriviledged" -> "unprivileged" https://git.kernel.org/bpf/bpf-next/c/2efcf695bfc0 You are awesome, thank you!
diff --git a/tools/testing/selftests/bpf/verifier/calls.c b/tools/testing/selftests/bpf/verifier/calls.c index 3fb4f69b1962..e1a937277b54 100644 --- a/tools/testing/selftests/bpf/verifier/calls.c +++ b/tools/testing/selftests/bpf/verifier/calls.c @@ -284,7 +284,7 @@ .result = ACCEPT, }, { - "calls: not on unpriviledged", + "calls: not on unprivileged", .insns = { BPF_RAW_INSN(BPF_JMP | BPF_CALL, 0, 1, 0, 2), BPF_MOV64_IMM(BPF_REG_0, 1), diff --git a/tools/testing/selftests/bpf/verifier/var_off.c b/tools/testing/selftests/bpf/verifier/var_off.c index 187c6f6e32bc..d37f512fad16 100644 --- a/tools/testing/selftests/bpf/verifier/var_off.c +++ b/tools/testing/selftests/bpf/verifier/var_off.c @@ -121,7 +121,7 @@ BPF_EXIT_INSN(), }, .fixup_map_hash_8b = { 1 }, - /* The unpriviledged case is not too interesting; variable + /* The unprivileged case is not too interesting; variable * stack access is rejected. */ .errstr_unpriv = "R2 variable stack access prohibited for !root",
There a couple of spelling mistakes, one in a literal string and one in a comment. Fix them. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- tools/testing/selftests/bpf/verifier/calls.c | 2 +- tools/testing/selftests/bpf/verifier/var_off.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)