diff mbox series

[next] libbpf: Fix spelling mistake "libaries" -> "libraries"

Message ID 20220406080835.14879-1-colin.i.king@gmail.com (mailing list archive)
State Accepted
Commit a8d600f6bcd453f1807703b5a016212f5484ffa1
Delegated to: BPF
Headers show
Series [next] libbpf: Fix spelling mistake "libaries" -> "libraries" | expand

Checks

Context Check Description
bpf/vmtest-bpf-next-VM_Test-1 success Logs for Kernel LATEST on ubuntu-latest + selftests
bpf/vmtest-bpf-next-PR success PR summary
bpf/vmtest-bpf-next-VM_Test-2 success Logs for Kernel LATEST on z15 + selftests
netdev/tree_selection success Not a local patch

Commit Message

Colin Ian King April 6, 2022, 8:08 a.m. UTC
There is a spelling mistake in a pr_warn message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 tools/lib/bpf/usdt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

patchwork-bot+netdevbpf@kernel.org April 6, 2022, 5:20 p.m. UTC | #1
Hello:

This patch was applied to bpf/bpf-next.git (master)
by Andrii Nakryiko <andrii@kernel.org>:

On Wed,  6 Apr 2022 09:08:35 +0100 you wrote:
> There is a spelling mistake in a pr_warn message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
> ---
>  tools/lib/bpf/usdt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [next] libbpf: Fix spelling mistake "libaries" -> "libraries"
    https://git.kernel.org/bpf/bpf-next/c/a8d600f6bcd4

You are awesome, thank you!
diff mbox series

Patch

diff --git a/tools/lib/bpf/usdt.c b/tools/lib/bpf/usdt.c
index 1bce2eab5e89..c5acf2824fcc 100644
--- a/tools/lib/bpf/usdt.c
+++ b/tools/lib/bpf/usdt.c
@@ -687,7 +687,7 @@  static int collect_usdt_targets(struct usdt_manager *man, Elf *elf, const char *
 			 * to shared libraries with no PID filter.
 			 */
 			if (pid < 0) {
-				pr_warn("usdt: attaching to shared libaries without specific PID is not supported on current kernel\n");
+				pr_warn("usdt: attaching to shared libraries without specific PID is not supported on current kernel\n");
 				err = -ENOTSUP;
 				goto err_out;
 			}