* [net-next v2] net: ethtool: set a default driver name
@ 2021-11-25 7:25 xiangxia.m.yue
2021-11-25 14:01 ` Leon Romanovsky
0 siblings, 1 reply; 2+ messages in thread
From: xiangxia.m.yue @ 2021-11-25 7:25 UTC (permalink / raw)
To: netdev
Cc: Tonghao Zhang, David S. Miller, Jakub Kicinski, Leon Romanovsky,
Arnd Bergmann, Hao Chen, Heiner Kallweit, Gustavo A. R. Silva,
Danielle Ratson, Andrew Lunn
From: Tonghao Zhang <xiangxia.m.yue@gmail.com>
The netdev (e.g. ifb, bareudp), which not support ethtool ops
(e.g. .get_drvinfo), we can use the rtnl kind as a default name.
ifb netdev may be created by others prefix, not ifbX.
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jakub Kicinski <kuba@kernel.org>
Cc: Leon Romanovsky <leon@kernel.org>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Hao Chen <chenhao288@hisilicon.com>
Cc: Heiner Kallweit <hkallweit1@gmail.com>
Cc: "Gustavo A. R. Silva" <gustavoars@kernel.org>
Cc: Danielle Ratson <danieller@nvidia.com>
Cc: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
---
v1: https://lore.kernel.org/all/20211124181858.6c4668db@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com/
---
net/ethtool/ioctl.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/net/ethtool/ioctl.c b/net/ethtool/ioctl.c
index af2d4e022076..8bf161cd5487 100644
--- a/net/ethtool/ioctl.c
+++ b/net/ethtool/ioctl.c
@@ -734,6 +734,10 @@ ethtool_get_drvinfo(struct net_device *dev, struct ethtool_devlink_compat *rsp)
sizeof(rsp->info.bus_info));
strlcpy(rsp->info.driver, dev->dev.parent->driver->name,
sizeof(rsp->info.driver));
+ } else if (dev->rtnl_link_ops) {
+ strlcpy(rsp->info.driver, dev->rtnl_link_ops->kind,
+ sizeof(rsp->info.driver));
+
} else {
return -EOPNOTSUPP;
}
--
2.27.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [net-next v2] net: ethtool: set a default driver name
2021-11-25 7:25 [net-next v2] net: ethtool: set a default driver name xiangxia.m.yue
@ 2021-11-25 14:01 ` Leon Romanovsky
0 siblings, 0 replies; 2+ messages in thread
From: Leon Romanovsky @ 2021-11-25 14:01 UTC (permalink / raw)
To: xiangxia.m.yue
Cc: netdev, David S. Miller, Jakub Kicinski, Arnd Bergmann, Hao Chen,
Heiner Kallweit, Gustavo A. R. Silva, Danielle Ratson,
Andrew Lunn
On Thu, Nov 25, 2021 at 03:25:44PM +0800, xiangxia.m.yue@gmail.com wrote:
> From: Tonghao Zhang <xiangxia.m.yue@gmail.com>
>
> The netdev (e.g. ifb, bareudp), which not support ethtool ops
> (e.g. .get_drvinfo), we can use the rtnl kind as a default name.
>
> ifb netdev may be created by others prefix, not ifbX.
>
> Cc: "David S. Miller" <davem@davemloft.net>
> Cc: Jakub Kicinski <kuba@kernel.org>
> Cc: Leon Romanovsky <leon@kernel.org>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Hao Chen <chenhao288@hisilicon.com>
> Cc: Heiner Kallweit <hkallweit1@gmail.com>
> Cc: "Gustavo A. R. Silva" <gustavoars@kernel.org>
> Cc: Danielle Ratson <danieller@nvidia.com>
> Cc: Andrew Lunn <andrew@lunn.ch>
> Signed-off-by: Tonghao Zhang <xiangxia.m.yue@gmail.com>
> ---
> v1: https://lore.kernel.org/all/20211124181858.6c4668db@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com/
> ---
> net/ethtool/ioctl.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
Thanks,
Reviewed-by: Leon Romanovsky <leonro@nvidia.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-25 14:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-25 7:25 [net-next v2] net: ethtool: set a default driver name xiangxia.m.yue
2021-11-25 14:01 ` Leon Romanovsky
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).