]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: mana: Allow setting the number of queues while the NIC is down
authorHaiyang Zhang <haiyangz@microsoft.com>
Mon, 25 Oct 2021 18:37:34 +0000 (11:37 -0700)
committerDavid S. Miller <davem@davemloft.net>
Tue, 26 Oct 2021 13:56:19 +0000 (14:56 +0100)
The existing code doesn't allow setting the number of queues while the
NIC is down.

Update the ethtool handler functions to support setting the number of
queues while the NIC is at down state.

Signed-off-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/microsoft/mana/mana_en.c
drivers/net/ethernet/microsoft/mana/mana_ethtool.c

index d65697c239c84a89644ea3226a8914f55c22ac2c..ef95f4017c6dbd4240eb89b5900eba16c4c4e6dc 100644 (file)
@@ -1667,24 +1667,23 @@ int mana_attach(struct net_device *ndev)
        if (err)
                return err;
 
-       err = mana_alloc_queues(ndev);
-       if (err) {
-               kfree(apc->rxqs);
-               apc->rxqs = NULL;
-               return err;
+       if (apc->port_st_save) {
+               err = mana_alloc_queues(ndev);
+               if (err) {
+                       mana_cleanup_port_context(apc);
+                       return err;
+               }
        }
 
-       netif_device_attach(ndev);
-
        apc->port_is_up = apc->port_st_save;
 
        /* Ensure port state updated before txq state */
        smp_wmb();
 
-       if (apc->port_is_up) {
+       if (apc->port_is_up)
                netif_carrier_on(ndev);
-               netif_tx_wake_all_queues(ndev);
-       }
+
+       netif_device_attach(ndev);
 
        return 0;
 }
index 7e74339f39ae35a66abc79cc0479adcc3136be29..c3c81ae3fafd348f83126184c765513ef31b5ba0 100644 (file)
@@ -211,9 +211,6 @@ static int mana_set_channels(struct net_device *ndev,
        unsigned int old_count = apc->num_queues;
        int err, err2;
 
-       if (!apc->port_is_up)
-               return -EOPNOTSUPP;
-
        err = mana_detach(ndev, false);
        if (err) {
                netdev_err(ndev, "mana_detach failed: %d\n", err);