* [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute
@ 2024-06-06 4:38 Parav Pandit
2024-06-06 4:40 ` Parav Pandit
2024-06-11 15:10 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Parav Pandit @ 2024-06-06 4:38 UTC (permalink / raw)
To: netdev, dsahern, stephen; +Cc: jiri, shayd, Parav Pandit
dl_opts_put() function missed to consider IO eqs option flag.
Due to this, when max_io_eqs setting is applied only when it
is combined with other attributes such as roce/hw_addr.
When max_io_eqs is the only attribute set, it missed to
apply the attribute.
Fix it by adding the missing flag.
Fixes: e8add23c59b7 ("devlink: Support setting max_io_eqs")
Signed-off-by: Parav Pandit <parav@nvidia.com>
---
devlink/devlink.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/devlink/devlink.c b/devlink/devlink.c
index 03d27202..3ab5a85d 100644
--- a/devlink/devlink.c
+++ b/devlink/devlink.c
@@ -2637,7 +2637,7 @@ static void dl_opts_put(struct nlmsghdr *nlh, struct dl *dl)
mnl_attr_put_u64(nlh, DEVLINK_ATTR_TRAP_POLICER_BURST,
opts->trap_policer_burst);
if (opts->present & (DL_OPT_PORT_FUNCTION_HW_ADDR | DL_OPT_PORT_FUNCTION_STATE |
- DL_OPT_PORT_FN_CAPS))
+ DL_OPT_PORT_FN_CAPS | DL_OPT_PORT_FN_MAX_IO_EQS))
dl_function_attr_put(nlh, opts);
if (opts->present & DL_OPT_PORT_FLAVOUR)
mnl_attr_put_u16(nlh, DEVLINK_ATTR_PORT_FLAVOUR, opts->port_flavour);
--
2.26.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute
2024-06-06 4:38 [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute Parav Pandit
@ 2024-06-06 4:40 ` Parav Pandit
2024-06-11 15:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Parav Pandit @ 2024-06-06 4:40 UTC (permalink / raw)
To: netdev@vger.kernel.org, dsahern@kernel.org,
stephen@networkplumber.org
Cc: Jiri Pirko, Shay Drori
> From: Parav Pandit <parav@nvidia.com>
> Sent: Thursday, June 6, 2024 10:08 AM
> To: netdev@vger.kernel.org; dsahern@kernel.org;
> stephen@networkplumber.org
> Cc: Jiri Pirko <jiri@nvidia.com>; Shay Drori <shayd@nvidia.com>; Parav
> Pandit <parav@nvidia.com>
> Subject: [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute
>
I missed to include iproute2 in the subject prefix. :(
Will avoid this mistake next time.
> dl_opts_put() function missed to consider IO eqs option flag.
> Due to this, when max_io_eqs setting is applied only when it is combined
> with other attributes such as roce/hw_addr.
> When max_io_eqs is the only attribute set, it missed to apply the attribute.
>
> Fix it by adding the missing flag.
>
> Fixes: e8add23c59b7 ("devlink: Support setting max_io_eqs")
> Signed-off-by: Parav Pandit <parav@nvidia.com>
> ---
> devlink/devlink.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/devlink/devlink.c b/devlink/devlink.c index 03d27202..3ab5a85d
> 100644
> --- a/devlink/devlink.c
> +++ b/devlink/devlink.c
> @@ -2637,7 +2637,7 @@ static void dl_opts_put(struct nlmsghdr *nlh,
> struct dl *dl)
> mnl_attr_put_u64(nlh,
> DEVLINK_ATTR_TRAP_POLICER_BURST,
> opts->trap_policer_burst);
> if (opts->present & (DL_OPT_PORT_FUNCTION_HW_ADDR |
> DL_OPT_PORT_FUNCTION_STATE |
> - DL_OPT_PORT_FN_CAPS))
> + DL_OPT_PORT_FN_CAPS |
> DL_OPT_PORT_FN_MAX_IO_EQS))
> dl_function_attr_put(nlh, opts);
> if (opts->present & DL_OPT_PORT_FLAVOUR)
> mnl_attr_put_u16(nlh, DEVLINK_ATTR_PORT_FLAVOUR,
> opts->port_flavour);
> --
> 2.26.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute
2024-06-06 4:38 [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute Parav Pandit
2024-06-06 4:40 ` Parav Pandit
@ 2024-06-11 15:10 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2024-06-11 15:10 UTC (permalink / raw)
To: Parav Pandit; +Cc: netdev, dsahern, stephen, jiri, shayd
Hello:
This patch was applied to iproute2/iproute2.git (main)
by Stephen Hemminger <stephen@networkplumber.org>:
On Thu, 6 Jun 2024 07:38:08 +0300 you wrote:
> dl_opts_put() function missed to consider IO eqs option flag.
> Due to this, when max_io_eqs setting is applied only when it
> is combined with other attributes such as roce/hw_addr.
> When max_io_eqs is the only attribute set, it missed to
> apply the attribute.
>
> Fix it by adding the missing flag.
>
> [...]
Here is the summary with links:
- [net] devlink: Fix setting max_io_eqs as the sole attribute
https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/commit/?id=c6c39f3c6da4
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:[~2024-06-11 15:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-06 4:38 [PATCH net] devlink: Fix setting max_io_eqs as the sole attribute Parav Pandit
2024-06-06 4:40 ` Parav Pandit
2024-06-11 15:10 ` 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.