* [PATCH net-next] ethtool: reset #lanes when lanes is omitted
@ 2023-03-30 16:56 Andy Roulin
2023-03-30 17:38 ` Jakub Kicinski
0 siblings, 1 reply; 3+ messages in thread
From: Andy Roulin @ 2023-03-30 16:56 UTC (permalink / raw)
To: netdev
Cc: davem, kuba, jiri, andrew, f.fainelli, mkubecek, mlxsw, idosch,
Danielle Ratson
If the number of lanes was forced and then subsequently the user
omits this parameter, the ksettings->lanes is reset. The driver
should then reset the number of lanes to the device's default
for the specified speed.
However, although the ksettings->lanes is set to 0, the mod variable
is not set to true to indicate the driver and userspace should be
notified of the changes.
Fixes: 012ce4dd3102 ("ethtool: Extend link modes settings uAPI with lanes")
Signed-off-by: Andy Roulin <aroulin@nvidia.com>
Reviewed-by: Danielle Ratson <danieller@nvidia.com>
---
net/ethtool/linkmodes.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/net/ethtool/linkmodes.c b/net/ethtool/linkmodes.c
index fab66c169b9f..20165e07ef90 100644
--- a/net/ethtool/linkmodes.c
+++ b/net/ethtool/linkmodes.c
@@ -270,11 +270,12 @@ static int ethnl_update_linkmodes(struct genl_info *info, struct nlattr **tb,
"lanes configuration not supported by device");
return -EOPNOTSUPP;
}
- } else if (!lsettings->autoneg) {
- /* If autoneg is off and lanes parameter is not passed from user,
- * set the lanes parameter to 0.
+ } else if (!lsettings->autoneg && ksettings->lanes) {
+ /* If autoneg is off and lanes parameter is not passed from user but
+ * it was defined previously then set the lanes parameter to 0.
*/
ksettings->lanes = 0;
+ *mod = true;
}
ret = ethnl_update_bitset(ksettings->link_modes.advertising,
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net-next] ethtool: reset #lanes when lanes is omitted
2023-03-30 16:56 [PATCH net-next] ethtool: reset #lanes when lanes is omitted Andy Roulin
@ 2023-03-30 17:38 ` Jakub Kicinski
2023-03-30 18:18 ` Andy Roulin
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Kicinski @ 2023-03-30 17:38 UTC (permalink / raw)
To: Andy Roulin
Cc: netdev, davem, jiri, andrew, f.fainelli, mkubecek, mlxsw, idosch,
Danielle Ratson
On Thu, 30 Mar 2023 09:56:58 -0700 Andy Roulin wrote:
> Subject: [PATCH net-next] ethtool: reset #lanes when lanes is omitted
This should have been tagged for net, right?
> If the number of lanes was forced and then subsequently the user
> omits this parameter, the ksettings->lanes is reset. The driver
> should then reset the number of lanes to the device's default
> for the specified speed.
>
> However, although the ksettings->lanes is set to 0, the mod variable
> is not set to true to indicate the driver and userspace should be
> notified of the changes.
>
> Fixes: 012ce4dd3102 ("ethtool: Extend link modes settings uAPI with lanes")
> Signed-off-by: Andy Roulin <aroulin@nvidia.com>
> Reviewed-by: Danielle Ratson <danieller@nvidia.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net-next] ethtool: reset #lanes when lanes is omitted
2023-03-30 17:38 ` Jakub Kicinski
@ 2023-03-30 18:18 ` Andy Roulin
0 siblings, 0 replies; 3+ messages in thread
From: Andy Roulin @ 2023-03-30 18:18 UTC (permalink / raw)
To: Jakub Kicinski
Cc: netdev, davem, jiri, andrew, f.fainelli, mkubecek, mlxsw, idosch,
Danielle Ratson
On 3/30/23 10:38 AM, Jakub Kicinski wrote:
> On Thu, 30 Mar 2023 09:56:58 -0700 Andy Roulin wrote:
>> Subject: [PATCH net-next] ethtool: reset #lanes when lanes is omitted
>
> This should have been tagged for net, right?
>
Yes, sorry, I will resend.
>> If the number of lanes was forced and then subsequently the user
>> omits this parameter, the ksettings->lanes is reset. The driver
>> should then reset the number of lanes to the device's default
>> for the specified speed.
>>
>> However, although the ksettings->lanes is set to 0, the mod variable
>> is not set to true to indicate the driver and userspace should be
>> notified of the changes.
>>
>> Fixes: 012ce4dd3102 ("ethtool: Extend link modes settings uAPI with lanes")
>> Signed-off-by: Andy Roulin <aroulin@nvidia.com>
>> Reviewed-by: Danielle Ratson <danieller@nvidia.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-03-30 18:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-30 16:56 [PATCH net-next] ethtool: reset #lanes when lanes is omitted Andy Roulin
2023-03-30 17:38 ` Jakub Kicinski
2023-03-30 18:18 ` Andy Roulin
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).