Lines Matching refs:mac_stats

1259 		struct qlcnic_mac_statistics *mac_stats =
1261 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_frames);
1262 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_bytes);
1263 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_mcast_pkts);
1264 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_bcast_pkts);
1265 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_pause_cnt);
1266 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_ctrl_pkt);
1267 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_64b_pkts);
1268 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_127b_pkts);
1269 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_255b_pkts);
1270 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_511b_pkts);
1271 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_1023b_pkts);
1272 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_lt_1518b_pkts);
1273 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_tx_gt_1518b_pkts);
1274 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_frames);
1275 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_bytes);
1276 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_mcast_pkts);
1277 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_bcast_pkts);
1278 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_pause_cnt);
1279 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_ctrl_pkt);
1280 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_64b_pkts);
1281 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_127b_pkts);
1282 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_255b_pkts);
1283 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_511b_pkts);
1284 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_1023b_pkts);
1285 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_lt_1518b_pkts);
1286 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_gt_1518b_pkts);
1287 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_length_error);
1288 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_length_small);
1289 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_length_large);
1290 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_jabber);
1291 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_dropped);
1292 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_rx_crc_error);
1293 *data++ = QLCNIC_FILL_STATS(mac_stats->mac_align_error);
1352 struct qlcnic_mac_statistics mac_stats;
1381 memset(&mac_stats, 0, sizeof(struct qlcnic_mac_statistics));
1382 qlcnic_get_mac_stats(adapter, &mac_stats);
1383 data = qlcnic_fill_stats(data, &mac_stats, QLCNIC_MAC_STATS);