via-velocity: allow nesting of ethtool_ops begin() and complete()
authorMichal Kubecek <mkubecek@suse.cz>
Mon, 6 Jan 2020 06:39:36 +0000 (07:39 +0100)
committerDavid S. Miller <davem@davemloft.net>
Mon, 6 Jan 2020 21:54:55 +0000 (13:54 -0800)
Unlike most networking drivers using begin() and complete() ethtool_ops
callbacks to resume a device which is down and suspend it again when done,
via-velocity does not use standard refcounted infrastructure but sets
device sleep state directly.

With the introduction of netlink ethtool interface, we may have nested
begin-complete blocks so that inner complete() would put the device back to
sleep for the rest of the outer block.

To avoid rewriting an old and not very actively developed driver, just add
a nesting counter and only perform resume and suspend on the outermost
level.

Signed-off-by: Michal Kubecek <mkubecek@suse.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/via/via-velocity.c
drivers/net/ethernet/via/via-velocity.h

index 346e441..4b556b7 100644 (file)
@@ -3257,12 +3257,16 @@ static struct platform_driver velocity_platform_driver = {
  *     @dev: network device
  *
  *     Called before an ethtool operation. We need to make sure the
- *     chip is out of D3 state before we poke at it.
+ *     chip is out of D3 state before we poke at it. In case of ethtool
+ *     ops nesting, only wake the device up in the outermost block.
  */
 static int velocity_ethtool_up(struct net_device *dev)
 {
        struct velocity_info *vptr = netdev_priv(dev);
-       if (!netif_running(dev))
+
+       if (vptr->ethtool_ops_nesting == U32_MAX)
+               return -EBUSY;
+       if (!vptr->ethtool_ops_nesting++ && !netif_running(dev))
                velocity_set_power_state(vptr, PCI_D0);
        return 0;
 }
@@ -3272,12 +3276,14 @@ static int velocity_ethtool_up(struct net_device *dev)
  *     @dev: network device
  *
  *     Called after an ethtool operation. Restore the chip back to D3
- *     state if it isn't running.
+ *     state if it isn't running. In case of ethtool ops nesting, only
+ *     put the device to sleep in the outermost block.
  */
 static void velocity_ethtool_down(struct net_device *dev)
 {
        struct velocity_info *vptr = netdev_priv(dev);
-       if (!netif_running(dev))
+
+       if (!--vptr->ethtool_ops_nesting && !netif_running(dev))
                velocity_set_power_state(vptr, PCI_D3hot);
 }
 
index cdfe780..f196e71 100644 (file)
@@ -1483,6 +1483,7 @@ struct velocity_info {
        struct velocity_context context;
 
        u32 ticks;
+       u32 ethtool_ops_nesting;
 
        u8 rev_id;