Message ID | 20221026081645.3186878-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 96f341a4751d1939a303c5c526b2ca79ebda075f |
Delegated to: | BPF |
Headers | show |
Series | [next] bpftool: Fix spelling mistake "disasembler" -> "disassembler" | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
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-6 | success | Logs for test_maps on s390x with gcc |
bpf/vmtest-bpf-next-VM_Test-15 | success | Logs for test_verifier on 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 |
bpf/vmtest-bpf-next-PR | success | 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-11 | success | Logs for test_progs on x86_64 with llvm-16 |
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-4 | success | Logs for llvm-toolchain |
bpf/vmtest-bpf-next-VM_Test-5 | success | Logs for set-matrix |
2022-10-26 09:16 UTC+0100 ~ Colin Ian King <colin.i.king@gmail.com> > There is a spelling mistake in an error message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/bpf/bpftool/jit_disasm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/bpf/bpftool/jit_disasm.c b/tools/bpf/bpftool/jit_disasm.c > index 58a5017034a2..7b8d9ec89ebd 100644 > --- a/tools/bpf/bpftool/jit_disasm.c > +++ b/tools/bpf/bpftool/jit_disasm.c > @@ -223,7 +223,7 @@ static int init_context(disasm_ctx_t *ctx, const char *arch, > > memset(tpath, 0, sizeof(tpath)); > if (get_exec_path(tpath, sizeof(tpath))) { > - p_err("failed to create disasembler (get_exec_path)"); > + p_err("failed to create disassembler (get_exec_path)"); > return -1; > } > Thanks for the fix! Acked-by: Quentin Monnet <quentin@isovalent.com>
Hello: This patch was applied to bpf/bpf-next.git (master) by Martin KaFai Lau <martin.lau@kernel.org>: On Wed, 26 Oct 2022 09:16:45 +0100 you wrote: > There is a spelling mistake in an error message. Fix it. > > Signed-off-by: Colin Ian King <colin.i.king@gmail.com> > --- > tools/bpf/bpftool/jit_disasm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [next] bpftool: Fix spelling mistake "disasembler" -> "disassembler" https://git.kernel.org/bpf/bpf-next/c/96f341a4751d You are awesome, thank you!
diff --git a/tools/bpf/bpftool/jit_disasm.c b/tools/bpf/bpftool/jit_disasm.c index 58a5017034a2..7b8d9ec89ebd 100644 --- a/tools/bpf/bpftool/jit_disasm.c +++ b/tools/bpf/bpftool/jit_disasm.c @@ -223,7 +223,7 @@ static int init_context(disasm_ctx_t *ctx, const char *arch, memset(tpath, 0, sizeof(tpath)); if (get_exec_path(tpath, sizeof(tpath))) { - p_err("failed to create disasembler (get_exec_path)"); + p_err("failed to create disassembler (get_exec_path)"); return -1; }
There is a spelling mistake in an error message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> --- tools/bpf/bpftool/jit_disasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)