Re: [PATCH net-next v2 0/3] net: ethtool: Untangle PHYLIB dependency

2020-07-07 Thread David Miller
From: Florian Fainelli Date: Sun, 5 Jul 2020 21:27:55 -0700 > This patch series untangles the ethtool netlink dependency with PHYLIB > which exists because the cable test feature calls directly into PHY > library functions. The approach taken here is to introduce > ethtool_phy_ops function point

Re: [PATCH net-next v2 0/3] net: ethtool: Untangle PHYLIB dependency

2020-07-06 Thread Andrew Lunn
On Sun, Jul 05, 2020 at 09:27:55PM -0700, Florian Fainelli wrote: > Hi all, > > This patch series untangles the ethtool netlink dependency with PHYLIB > which exists because the cable test feature calls directly into PHY > library functions. The approach taken here is to introduce > ethtool_phy_op

[PATCH net-next v2 0/3] net: ethtool: Untangle PHYLIB dependency

2020-07-05 Thread Florian Fainelli
Hi all, This patch series untangles the ethtool netlink dependency with PHYLIB which exists because the cable test feature calls directly into PHY library functions. The approach taken here is to introduce ethtool_phy_ops function pointers which can be dynamically registered when PHYLIB loads. Fl