ixgbe: rename LL_EXTENDED_STATS to use queue instead of q
authorJacob Keller <jacob.e.keller@intel.com>
Tue, 16 Jul 2013 07:57:46 +0000 (07:57 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 31 Jul 2013 08:08:47 +0000 (01:08 -0700)
This patch renames the stats introduced by the busy poll feature so that they
are more inline with the current statistics naming schemes.

Signed-off-by: Jacob Keller <jacob.e.keller@intel.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_ethtool.c

index da1ea28b5d68bdc959b6604b6b510f7d6593c4be..50c1e9b2fd806584b69e650d9bf551093f7445d8 100644 (file)
@@ -1141,11 +1141,11 @@ static void ixgbe_get_strings(struct net_device *netdev, u32 stringset,
                        sprintf(p, "tx_queue_%u_bytes", i);
                        p += ETH_GSTRING_LEN;
 #ifdef LL_EXTENDED_STATS
-                       sprintf(p, "tx_q_%u_napi_yield", i);
+                       sprintf(p, "tx_queue_%u_ll_napi_yield", i);
                        p += ETH_GSTRING_LEN;
-                       sprintf(p, "tx_q_%u_misses", i);
+                       sprintf(p, "tx_queue_%u_ll_misses", i);
                        p += ETH_GSTRING_LEN;
-                       sprintf(p, "tx_q_%u_cleaned", i);
+                       sprintf(p, "tx_queue_%u_ll_cleaned", i);
                        p += ETH_GSTRING_LEN;
 #endif /* LL_EXTENDED_STATS */
                }
@@ -1155,11 +1155,11 @@ static void ixgbe_get_strings(struct net_device *netdev, u32 stringset,
                        sprintf(p, "rx_queue_%u_bytes", i);
                        p += ETH_GSTRING_LEN;
 #ifdef LL_EXTENDED_STATS
-                       sprintf(p, "rx_q_%u_ll_poll_yield", i);
+                       sprintf(p, "rx_queue_%u_ll_poll_yield", i);
                        p += ETH_GSTRING_LEN;
-                       sprintf(p, "rx_q_%u_misses", i);
+                       sprintf(p, "rx_queue_%u_ll_misses", i);
                        p += ETH_GSTRING_LEN;
-                       sprintf(p, "rx_q_%u_cleaned", i);
+                       sprintf(p, "rx_queue_%u_ll_cleaned", i);
                        p += ETH_GSTRING_LEN;
 #endif /* LL_EXTENDED_STATS */
                }
This page took 0.027575 seconds and 5 git commands to generate.