public inbox for netdev@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH bpf-next] bpftool: fix prog object type in manpage
@ 2023-11-03  8:11 Artem Savkov
  2023-11-03 15:34 ` Yonghong Song
  2023-11-03 19:00 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Artem Savkov @ 2023-11-03  8:11 UTC (permalink / raw)
  To: Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko, bpf, netdev
  Cc: Artem Savkov, Jerry Snitselaar

bpftool's man page lists "program" as one of possible values for OBJECT,
while in fact bpftool accepts "prog" instead.

Reported-by: Jerry Snitselaar <jsnitsel@redhat.com>
Signed-off-by: Artem Savkov <asavkov@redhat.com>
---
 tools/bpf/bpftool/Documentation/bpftool.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/bpf/bpftool/Documentation/bpftool.rst b/tools/bpf/bpftool/Documentation/bpftool.rst
index 6965c94dfdafe..09e4f2ff5658b 100644
--- a/tools/bpf/bpftool/Documentation/bpftool.rst
+++ b/tools/bpf/bpftool/Documentation/bpftool.rst
@@ -20,7 +20,7 @@ SYNOPSIS
 
 	**bpftool** **version**
 
-	*OBJECT* := { **map** | **program** | **link** | **cgroup** | **perf** | **net** | **feature** |
+	*OBJECT* := { **map** | **prog** | **link** | **cgroup** | **perf** | **net** | **feature** |
 	**btf** | **gen** | **struct_ops** | **iter** }
 
 	*OPTIONS* := { { **-V** | **--version** } | |COMMON_OPTIONS| }
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH bpf-next] bpftool: fix prog object type in manpage
  2023-11-03  8:11 [PATCH bpf-next] bpftool: fix prog object type in manpage Artem Savkov
@ 2023-11-03 15:34 ` Yonghong Song
  2023-11-03 16:17   ` Quentin Monnet
  2023-11-03 19:00 ` patchwork-bot+netdevbpf
  1 sibling, 1 reply; 4+ messages in thread
From: Yonghong Song @ 2023-11-03 15:34 UTC (permalink / raw)
  To: Artem Savkov, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, bpf, netdev
  Cc: Jerry Snitselaar


On 11/3/23 1:11 AM, Artem Savkov wrote:
> bpftool's man page lists "program" as one of possible values for OBJECT,
> while in fact bpftool accepts "prog" instead.
>
> Reported-by: Jerry Snitselaar <jsnitsel@redhat.com>
> Signed-off-by: Artem Savkov <asavkov@redhat.com>


Acked-by: Yonghong Song <yonghong.song@linux.dev>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH bpf-next] bpftool: fix prog object type in manpage
  2023-11-03 15:34 ` Yonghong Song
@ 2023-11-03 16:17   ` Quentin Monnet
  0 siblings, 0 replies; 4+ messages in thread
From: Quentin Monnet @ 2023-11-03 16:17 UTC (permalink / raw)
  To: Yonghong Song, Artem Savkov, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, bpf, netdev
  Cc: Jerry Snitselaar



On 3 November 2023 15:34:05 GMT, Yonghong Song <yonghong.song@linux.dev> wrote:
>
>On 11/3/23 1:11 AM, Artem Savkov wrote:
>> bpftool's man page lists "program" as one of possible values for OBJECT,
>> while in fact bpftool accepts "prog" instead.
>> 
>> Reported-by: Jerry Snitselaar <jsnitsel@redhat.com>
>> Signed-off-by: Artem Savkov <asavkov@redhat.com>
>
>
>Acked-by: Yonghong Song <yonghong.song@linux.dev>
>

Acked-by: Quentin Monnet <quentin@isovalent.com>

Thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH bpf-next] bpftool: fix prog object type in manpage
  2023-11-03  8:11 [PATCH bpf-next] bpftool: fix prog object type in manpage Artem Savkov
  2023-11-03 15:34 ` Yonghong Song
@ 2023-11-03 19:00 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-11-03 19:00 UTC (permalink / raw)
  To: Artem Savkov; +Cc: ast, daniel, andrii, bpf, netdev, jsnitsel

Hello:

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

On Fri,  3 Nov 2023 09:11:26 +0100 you wrote:
> bpftool's man page lists "program" as one of possible values for OBJECT,
> while in fact bpftool accepts "prog" instead.
> 
> Reported-by: Jerry Snitselaar <jsnitsel@redhat.com>
> Signed-off-by: Artem Savkov <asavkov@redhat.com>
> ---
>  tools/bpf/bpftool/Documentation/bpftool.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - [bpf-next] bpftool: fix prog object type in manpage
    https://git.kernel.org/bpf/bpf-next/c/b94df28c9bae

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-03 19:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-03  8:11 [PATCH bpf-next] bpftool: fix prog object type in manpage Artem Savkov
2023-11-03 15:34 ` Yonghong Song
2023-11-03 16:17   ` Quentin Monnet
2023-11-03 19:00 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox