* [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc
@ 2024-04-10 11:47 Asbjørn Sloth Tønnesen
2024-04-11 11:32 ` Pieter Jansen van Vuuren
2024-04-12 2:50 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 5+ messages in thread
From: Asbjørn Sloth Tønnesen @ 2024-04-10 11:47 UTC (permalink / raw)
To: netdev
Cc: Asbjørn Sloth Tønnesen, linux-kernel, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni,
Pieter Jansen van Vuuren
include/net/flow_offload.h:351: warning:
No description found for return value of 'flow_offload_has_one_action'
Fixes: ab79af32b0a5 ("mlxsw: use intermediate representation for matchall offload")
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
---
include/net/flow_offload.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
index 314087a5e1818..7726b4a97050e 100644
--- a/include/net/flow_offload.h
+++ b/include/net/flow_offload.h
@@ -345,7 +345,7 @@ static inline bool flow_action_has_entries(const struct flow_action *action)
* flow_offload_has_one_action() - check if exactly one action is present
* @action: tc filter flow offload action
*
- * Returns true if exactly one action is present.
+ * Return: true if exactly one action is present.
*/
static inline bool flow_offload_has_one_action(const struct flow_action *action)
{
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc
2024-04-10 11:47 [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc Asbjørn Sloth Tønnesen
@ 2024-04-11 11:32 ` Pieter Jansen van Vuuren
2024-04-12 2:35 ` Jakub Kicinski
2024-04-12 2:50 ` patchwork-bot+netdevbpf
1 sibling, 1 reply; 5+ messages in thread
From: Pieter Jansen van Vuuren @ 2024-04-11 11:32 UTC (permalink / raw)
To: Asbjørn Sloth Tønnesen, netdev
Cc: linux-kernel, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni
[Removed my old email address from CC]
This LGTM, thank you.
Reviewed-by: Pieter Jansen van Vuuren <pieter.jansen-van-vuuren@amd.com>
On 10/04/2024 12:47, Asbjørn Sloth Tønnesen wrote:
> include/net/flow_offload.h:351: warning:
> No description found for return value of 'flow_offload_has_one_action'
>
> Fixes: ab79af32b0a5 ("mlxsw: use intermediate representation for matchall offload")
> Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
> ---
> include/net/flow_offload.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/net/flow_offload.h b/include/net/flow_offload.h
> index 314087a5e1818..7726b4a97050e 100644
> --- a/include/net/flow_offload.h
> +++ b/include/net/flow_offload.h
> @@ -345,7 +345,7 @@ static inline bool flow_action_has_entries(const struct flow_action *action)
> * flow_offload_has_one_action() - check if exactly one action is present
> * @action: tc filter flow offload action
> *
> - * Returns true if exactly one action is present.
> + * Return: true if exactly one action is present.
> */
> static inline bool flow_offload_has_one_action(const struct flow_action *action)
> {
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc
2024-04-11 11:32 ` Pieter Jansen van Vuuren
@ 2024-04-12 2:35 ` Jakub Kicinski
2024-04-12 13:40 ` Pieter Jansen van Vuuren
0 siblings, 1 reply; 5+ messages in thread
From: Jakub Kicinski @ 2024-04-12 2:35 UTC (permalink / raw)
To: Pieter Jansen van Vuuren
Cc: Asbjørn Sloth Tønnesen, netdev, linux-kernel,
David S. Miller, Eric Dumazet, Paolo Abeni
On Thu, 11 Apr 2024 12:32:44 +0100 Pieter Jansen van Vuuren wrote:
> [Removed my old email address from CC]
>
> This LGTM, thank you.
>
> Reviewed-by: Pieter Jansen van Vuuren <pieter.jansen-van-vuuren@amd.com>
Thanks Pieter! :)
Consider adding a .mailmap entry to remap the email addr.
We already have Simon, Quentin and myself there, from @netronome :)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc
2024-04-10 11:47 [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc Asbjørn Sloth Tønnesen
2024-04-11 11:32 ` Pieter Jansen van Vuuren
@ 2024-04-12 2:50 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 5+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-04-12 2:50 UTC (permalink / raw)
To: =?utf-8?b?QXNiasO4cm4gU2xvdGggVMO4bm5lc2VuIDxhc3RAZmliZXJieS5uZXQ+?=
Cc: netdev, linux-kernel, davem, edumazet, kuba, pabeni,
pieter.jansenvanvuuren
Hello:
This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:
On Wed, 10 Apr 2024 11:47:17 +0000 you wrote:
> include/net/flow_offload.h:351: warning:
> No description found for return value of 'flow_offload_has_one_action'
>
> Fixes: ab79af32b0a5 ("mlxsw: use intermediate representation for matchall offload")
> Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
> ---
> include/net/flow_offload.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Here is the summary with links:
- [net-next] flow_offload: fix flow_offload_has_one_action() kdoc
https://git.kernel.org/netdev/net-next/c/e1eb10f8ef10
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] 5+ messages in thread
* Re: [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc
2024-04-12 2:35 ` Jakub Kicinski
@ 2024-04-12 13:40 ` Pieter Jansen van Vuuren
0 siblings, 0 replies; 5+ messages in thread
From: Pieter Jansen van Vuuren @ 2024-04-12 13:40 UTC (permalink / raw)
To: Jakub Kicinski
Cc: Asbjørn Sloth Tønnesen, netdev, linux-kernel,
David S. Miller, Eric Dumazet, Paolo Abeni
On 12/04/2024 03:35, Jakub Kicinski wrote:
> On Thu, 11 Apr 2024 12:32:44 +0100 Pieter Jansen van Vuuren wrote:
>> [Removed my old email address from CC]
>>
>> This LGTM, thank you.
>>
>> Reviewed-by: Pieter Jansen van Vuuren <pieter.jansen-van-vuuren@amd.com>
>
> Thanks Pieter! :)
>
> Consider adding a .mailmap entry to remap the email addr.
> We already have Simon, Quentin and myself there, from @netronome :)
>
Thank you Kuba, will do.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-12 13:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-10 11:47 [PATCH net-next] flow_offload: fix flow_offload_has_one_action() kdoc Asbjørn Sloth Tønnesen
2024-04-11 11:32 ` Pieter Jansen van Vuuren
2024-04-12 2:35 ` Jakub Kicinski
2024-04-12 13:40 ` Pieter Jansen van Vuuren
2024-04-12 2:50 ` patchwork-bot+netdevbpf
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.