Skip to content
Snippets Groups Projects
Commit d61702f1 authored by Yevgeny Petrilin's avatar Yevgeny Petrilin Committed by David S. Miller
Browse files

mlx4_en: Fixed Ethtool statistics report


The values didn't match the title after removing the LRO
statistics in commit fa37a958

Signed-off-by: default avatarYevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ebc872c7
No related branches found
No related tags found
No related merge requests found
...@@ -107,7 +107,7 @@ static const char main_strings[][ETH_GSTRING_LEN] = { ...@@ -107,7 +107,7 @@ static const char main_strings[][ETH_GSTRING_LEN] = {
"tx_prio_1", "tx_prio_2", "tx_prio_3", "tx_prio_4", "tx_prio_5", "tx_prio_1", "tx_prio_2", "tx_prio_3", "tx_prio_4", "tx_prio_5",
"tx_prio_6", "tx_prio_7", "tx_prio_6", "tx_prio_7",
}; };
#define NUM_MAIN_STATS 18 #define NUM_MAIN_STATS 21
#define NUM_ALL_STATS (NUM_MAIN_STATS + NUM_PORT_STATS + NUM_PKT_STATS + NUM_PERF_STATS) #define NUM_ALL_STATS (NUM_MAIN_STATS + NUM_PORT_STATS + NUM_PKT_STATS + NUM_PERF_STATS)
static const char mlx4_en_test_names[][ETH_GSTRING_LEN]= { static const char mlx4_en_test_names[][ETH_GSTRING_LEN]= {
......
...@@ -385,7 +385,7 @@ struct mlx4_en_port_stats { ...@@ -385,7 +385,7 @@ struct mlx4_en_port_stats {
unsigned long rx_chksum_good; unsigned long rx_chksum_good;
unsigned long rx_chksum_none; unsigned long rx_chksum_none;
unsigned long tx_chksum_offload; unsigned long tx_chksum_offload;
#define NUM_PORT_STATS 11 #define NUM_PORT_STATS 8
}; };
struct mlx4_en_perf_stats { struct mlx4_en_perf_stats {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment