]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ice: Report stats when VSI is down
authorDave Ertman <david.m.ertman@intel.com>
Thu, 8 Aug 2019 14:39:28 +0000 (07:39 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 4 Sep 2019 00:07:50 +0000 (17:07 -0700)
There is currently a check in get_ndo_stats that
returns before updating stats if the VSI is down
or there are no Tx or Rx queues.  This causes the
netdev to report zero stats with the netdev is down.

Remove the check so that the behavior of reporting
stats is the same as it was in IXGBE.

Signed-off-by: Dave Ertman <david.m.ertman@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ice/ice_main.c

index 732397a2e8fa9c0417e860c4b510bb994b2d6735..50a17a0337be0b27766016e16b057f2acd7442f6 100644 (file)
@@ -3477,12 +3477,16 @@ void ice_get_stats64(struct net_device *netdev, struct rtnl_link_stats64 *stats)
 
        vsi_stats = &vsi->net_stats;
 
-       if (test_bit(__ICE_DOWN, vsi->state) || !vsi->num_txq || !vsi->num_rxq)
+       if (!vsi->num_txq || !vsi->num_rxq)
                return;
+
        /* netdev packet/byte stats come from ring counter. These are obtained
         * by summing up ring counters (done by ice_update_vsi_ring_stats).
+        * But, only call the update routine and read the registers if VSI is
+        * not down.
         */
-       ice_update_vsi_ring_stats(vsi);
+       if (!test_bit(__ICE_DOWN, vsi->state))
+               ice_update_vsi_ring_stats(vsi);
        stats->tx_packets = vsi_stats->tx_packets;
        stats->tx_bytes = vsi_stats->tx_bytes;
        stats->rx_packets = vsi_stats->rx_packets;