* [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins
@ 2023-05-03 16:51 David Ahern
2023-05-03 18:27 ` Alexander Duyck
2023-05-07 22:40 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: David Ahern @ 2023-05-03 16:51 UTC (permalink / raw)
To: mkubecek; +Cc: netdev, David Ahern, Alexander Duyck
ethtool is not exiting non-0 when -N fails. e.g.,
$ sudo ethtool -N eth0 flow-type tcp4 src-ip 1.2.3.4 action 3 loc 1023
rmgr: Cannot insert RX class rule: No such device
$ echo $?
0
Update rxclass_rule_ins to return err.
Fixes: 8d63f72ccdcb ("Add RX packet classification interface")
Cc: Alexander Duyck <alexanderduyck@fb.com>
Signed-off-by: David Ahern <dsahern@kernel.org>
---
rxclass.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rxclass.c b/rxclass.c
index 6cf81fdafc85..66cf00ba7728 100644
--- a/rxclass.c
+++ b/rxclass.c
@@ -598,7 +598,7 @@ int rxclass_rule_ins(struct cmd_context *ctx,
else if (loc & RX_CLS_LOC_SPECIAL)
printf("Added rule with ID %d\n", nfccmd.fs.location);
- return 0;
+ return err;
}
int rxclass_rule_del(struct cmd_context *ctx, __u32 loc)
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins
2023-05-03 16:51 [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins David Ahern
@ 2023-05-03 18:27 ` Alexander Duyck
2023-05-07 22:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Alexander Duyck @ 2023-05-03 18:27 UTC (permalink / raw)
To: David Ahern, mkubecek@suse.cz; +Cc: netdev@vger.kernel.org
> -----Original Message-----
> From: David Ahern <dsahern@kernel.org>
> Sent: Wednesday, May 3, 2023 9:51 AM
> To: mkubecek@suse.cz
> Cc: netdev@vger.kernel.org; David Ahern <dsahern@kernel.org>; Alexander
> Duyck <alexanderduyck@meta.com>
> Subject: [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins
>
> >
> ethtool is not exiting non-0 when -N fails. e.g.,
>
> $ sudo ethtool -N eth0 flow-type tcp4 src-ip 1.2.3.4 action 3 loc 1023
> rmgr: Cannot insert RX class rule: No such device $ echo $?
> 0
>
> Update rxclass_rule_ins to return err.
>
> Fixes: 8d63f72ccdcb ("Add RX packet classification interface")
> Cc: Alexander Duyck <alexanderduyck@fb.com>
> Signed-off-by: David Ahern <dsahern@kernel.org>
> ---
> rxclass.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/rxclass.c b/rxclass.c
> index 6cf81fdafc85..66cf00ba7728 100644
> --- a/rxclass.c
> +++ b/rxclass.c
> @@ -598,7 +598,7 @@ int rxclass_rule_ins(struct cmd_context *ctx,
> else if (loc & RX_CLS_LOC_SPECIAL)
> printf("Added rule with ID %d\n", nfccmd.fs.location);
>
> - return 0;
> + return err;
> }
>
> int rxclass_rule_del(struct cmd_context *ctx, __u32 loc)
> --
> 2.25.1
Yeah, looks like it was a brain-o on my part that I just went straight to return 0.
Acked-by: Alexander Duyck <alexanderduyck@fb.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins
2023-05-03 16:51 [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins David Ahern
2023-05-03 18:27 ` Alexander Duyck
@ 2023-05-07 22:40 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-05-07 22:40 UTC (permalink / raw)
To: David Ahern; +Cc: mkubecek, netdev, alexanderduyck
Hello:
This patch was applied to ethtool/ethtool.git (master)
by Michal Kubecek <mkubecek@suse.cz>:
On Wed, 3 May 2023 10:51:06 -0600 you wrote:
> ethtool is not exiting non-0 when -N fails. e.g.,
>
> $ sudo ethtool -N eth0 flow-type tcp4 src-ip 1.2.3.4 action 3 loc 1023
> rmgr: Cannot insert RX class rule: No such device
> $ echo $?
> 0
>
> [...]
Here is the summary with links:
- [ethtool] rxclass: Fix return code in rxclass_rule_ins
https://git.kernel.org/pub/scm/network/ethtool/ethtool.git/commit/?id=67c9ebf907d4
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] 3+ messages in thread
end of thread, other threads:[~2023-05-07 22:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-03 16:51 [PATCH ethtool] rxclass: Fix return code in rxclass_rule_ins David Ahern
2023-05-03 18:27 ` Alexander Duyck
2023-05-07 22:40 ` 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;
as well as URLs for NNTP newsgroup(s).