diff options
Diffstat (limited to 'drivers/net/s2io.h')
-rw-r--r-- | drivers/net/s2io.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/net/s2io.h b/drivers/net/s2io.h index a656d18b33df..54baa0b8ec7c 100644 --- a/drivers/net/s2io.h +++ b/drivers/net/s2io.h | |||
@@ -95,6 +95,32 @@ struct swStat { | |||
95 | unsigned long long flush_max_pkts; | 95 | unsigned long long flush_max_pkts; |
96 | unsigned long long sum_avg_pkts_aggregated; | 96 | unsigned long long sum_avg_pkts_aggregated; |
97 | unsigned long long num_aggregations; | 97 | unsigned long long num_aggregations; |
98 | /* Other statistics */ | ||
99 | unsigned long long mem_alloc_fail_cnt; | ||
100 | unsigned long long watchdog_timer_cnt; | ||
101 | unsigned long long mem_allocated; | ||
102 | unsigned long long mem_freed; | ||
103 | unsigned long long link_up_cnt; | ||
104 | unsigned long long link_down_cnt; | ||
105 | unsigned long long link_up_time; | ||
106 | unsigned long long link_down_time; | ||
107 | |||
108 | /* Transfer Code statistics */ | ||
109 | unsigned long long tx_buf_abort_cnt; | ||
110 | unsigned long long tx_desc_abort_cnt; | ||
111 | unsigned long long tx_parity_err_cnt; | ||
112 | unsigned long long tx_link_loss_cnt; | ||
113 | unsigned long long tx_list_proc_err_cnt; | ||
114 | |||
115 | unsigned long long rx_parity_err_cnt; | ||
116 | unsigned long long rx_abort_cnt; | ||
117 | unsigned long long rx_parity_abort_cnt; | ||
118 | unsigned long long rx_rda_fail_cnt; | ||
119 | unsigned long long rx_unkn_prot_cnt; | ||
120 | unsigned long long rx_fcs_err_cnt; | ||
121 | unsigned long long rx_buf_size_err_cnt; | ||
122 | unsigned long long rx_rxd_corrupt_cnt; | ||
123 | unsigned long long rx_unkn_err_cnt; | ||
98 | }; | 124 | }; |
99 | 125 | ||
100 | /* Xpak releated alarm and warnings */ | 126 | /* Xpak releated alarm and warnings */ |
@@ -308,6 +334,11 @@ struct stat_block { | |||
308 | #define MAX_TX_FIFOS 8 | 334 | #define MAX_TX_FIFOS 8 |
309 | #define MAX_RX_RINGS 8 | 335 | #define MAX_RX_RINGS 8 |
310 | 336 | ||
337 | #define MAX_RX_DESC_1 (MAX_RX_RINGS * MAX_RX_BLOCKS_PER_RING * 127 ) | ||
338 | #define MAX_RX_DESC_2 (MAX_RX_RINGS * MAX_RX_BLOCKS_PER_RING * 85 ) | ||
339 | #define MAX_RX_DESC_3 (MAX_RX_RINGS * MAX_RX_BLOCKS_PER_RING * 85 ) | ||
340 | #define MAX_TX_DESC (MAX_AVAILABLE_TXDS) | ||
341 | |||
311 | /* FIFO mappings for all possible number of fifos configured */ | 342 | /* FIFO mappings for all possible number of fifos configured */ |
312 | static int fifo_map[][MAX_TX_FIFOS] = { | 343 | static int fifo_map[][MAX_TX_FIFOS] = { |
313 | {0, 0, 0, 0, 0, 0, 0, 0}, | 344 | {0, 0, 0, 0, 0, 0, 0, 0}, |
@@ -819,6 +850,7 @@ struct s2io_nic { | |||
819 | #define LINK_UP 2 | 850 | #define LINK_UP 2 |
820 | 851 | ||
821 | int task_flag; | 852 | int task_flag; |
853 | unsigned long long start_time; | ||
822 | #define CARD_DOWN 1 | 854 | #define CARD_DOWN 1 |
823 | #define CARD_UP 2 | 855 | #define CARD_UP 2 |
824 | atomic_t card_state; | 856 | atomic_t card_state; |