Lines Matching refs:stats
887 struct stat_block *stats; in free_shared_mem() local
897 stats = mac_control->stats_info; in free_shared_mem()
898 swstats = &stats->sw_stat; in free_shared_mem()
2373 struct stat_block *stats = mac_control->stats_info; in free_tx_buffers() local
2374 struct swStat *swstats = &stats->sw_stat; in free_tx_buffers()
2674 struct stat_block *stats = mac_control->stats_info; in free_rxd_blk() local
2675 struct swStat *swstats = &stats->sw_stat; in free_rxd_blk()
3015 struct stat_block *stats = nic->mac_control.stats_info; in tx_intr_handler() local
3016 struct swStat *swstats = &stats->sw_stat; in tx_intr_handler()
3248 struct stat_block *stats = sp->mac_control.stats_info; in s2io_updt_xpak_counter() local
3249 struct xpakStat *xstats = &stats->xpak_stat; in s2io_updt_xpak_counter()
3414 struct stat_block *stats; in s2io_reset() local
3468 memset(&sp->stats, 0, sizeof(struct net_device_stats)); in s2io_reset()
3470 stats = sp->mac_control.stats_info; in s2io_reset()
3471 swstats = &stats->sw_stat; in s2io_reset()
3483 memset(stats, 0, sizeof(struct stat_block)); in s2io_reset()
3739 struct stat_block *stats = nic->mac_control.stats_info; in s2io_enable_msi_x() local
3740 struct swStat *swstats = &stats->sw_stat; in s2io_enable_msi_x()
4029 struct stat_block *stats = mac_control->stats_info; in s2io_xmit() local
4030 struct swStat *swstats = &stats->sw_stat; in s2io_xmit()
4418 struct xpakStat *stats = &sp->mac_control.stats_info->xpak_stat; in s2io_handle_errors() local
4430 if (stats->xpak_timer_count < 72000) { in s2io_handle_errors()
4432 stats->xpak_timer_count++; in s2io_handle_errors()
4436 stats->xpak_timer_count = 0; in s2io_handle_errors()
4846 struct stat_block *stats = mac_control->stats_info; in s2io_get_stats() local
4859 delta = ((u64) le32_to_cpu(stats->rmac_vld_frms_oflow) << 32 | in s2io_get_stats()
4860 le32_to_cpu(stats->rmac_vld_frms)) - sp->stats.rx_packets; in s2io_get_stats()
4861 sp->stats.rx_packets += delta; in s2io_get_stats()
4862 dev->stats.rx_packets += delta; in s2io_get_stats()
4864 delta = ((u64) le32_to_cpu(stats->tmac_frms_oflow) << 32 | in s2io_get_stats()
4865 le32_to_cpu(stats->tmac_frms)) - sp->stats.tx_packets; in s2io_get_stats()
4866 sp->stats.tx_packets += delta; in s2io_get_stats()
4867 dev->stats.tx_packets += delta; in s2io_get_stats()
4869 delta = ((u64) le32_to_cpu(stats->rmac_data_octets_oflow) << 32 | in s2io_get_stats()
4870 le32_to_cpu(stats->rmac_data_octets)) - sp->stats.rx_bytes; in s2io_get_stats()
4871 sp->stats.rx_bytes += delta; in s2io_get_stats()
4872 dev->stats.rx_bytes += delta; in s2io_get_stats()
4874 delta = ((u64) le32_to_cpu(stats->tmac_data_octets_oflow) << 32 | in s2io_get_stats()
4875 le32_to_cpu(stats->tmac_data_octets)) - sp->stats.tx_bytes; in s2io_get_stats()
4876 sp->stats.tx_bytes += delta; in s2io_get_stats()
4877 dev->stats.tx_bytes += delta; in s2io_get_stats()
4879 delta = le64_to_cpu(stats->rmac_drop_frms) - sp->stats.rx_errors; in s2io_get_stats()
4880 sp->stats.rx_errors += delta; in s2io_get_stats()
4881 dev->stats.rx_errors += delta; in s2io_get_stats()
4883 delta = ((u64) le32_to_cpu(stats->tmac_any_err_frms_oflow) << 32 | in s2io_get_stats()
4884 le32_to_cpu(stats->tmac_any_err_frms)) - sp->stats.tx_errors; in s2io_get_stats()
4885 sp->stats.tx_errors += delta; in s2io_get_stats()
4886 dev->stats.tx_errors += delta; in s2io_get_stats()
4888 delta = le64_to_cpu(stats->rmac_drop_frms) - sp->stats.rx_dropped; in s2io_get_stats()
4889 sp->stats.rx_dropped += delta; in s2io_get_stats()
4890 dev->stats.rx_dropped += delta; in s2io_get_stats()
4892 delta = le64_to_cpu(stats->tmac_drop_frms) - sp->stats.tx_dropped; in s2io_get_stats()
4893 sp->stats.tx_dropped += delta; in s2io_get_stats()
4894 dev->stats.tx_dropped += delta; in s2io_get_stats()
4901 delta = (u64) le32_to_cpu(stats->rmac_vld_mcst_frms_oflow) << 32 | in s2io_get_stats()
4902 le32_to_cpu(stats->rmac_vld_mcst_frms); in s2io_get_stats()
4903 delta -= le64_to_cpu(stats->rmac_pause_ctrl_frms); in s2io_get_stats()
4904 delta -= sp->stats.multicast; in s2io_get_stats()
4905 sp->stats.multicast += delta; in s2io_get_stats()
4906 dev->stats.multicast += delta; in s2io_get_stats()
4908 delta = ((u64) le32_to_cpu(stats->rmac_usized_frms_oflow) << 32 | in s2io_get_stats()
4909 le32_to_cpu(stats->rmac_usized_frms)) + in s2io_get_stats()
4910 le64_to_cpu(stats->rmac_long_frms) - sp->stats.rx_length_errors; in s2io_get_stats()
4911 sp->stats.rx_length_errors += delta; in s2io_get_stats()
4912 dev->stats.rx_length_errors += delta; in s2io_get_stats()
4914 delta = le64_to_cpu(stats->rmac_fcs_err_frms) - sp->stats.rx_crc_errors; in s2io_get_stats()
4915 sp->stats.rx_crc_errors += delta; in s2io_get_stats()
4916 dev->stats.rx_crc_errors += delta; in s2io_get_stats()
4918 return &dev->stats; in s2io_get_stats()
6284 struct stat_block *stats = sp->mac_control.stats_info; in s2io_get_ethtool_stats() local
6285 struct swStat *swstats = &stats->sw_stat; in s2io_get_ethtool_stats()
6286 struct xpakStat *xstats = &stats->xpak_stat; in s2io_get_ethtool_stats()
6290 (u64)le32_to_cpu(stats->tmac_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6291 le32_to_cpu(stats->tmac_frms); in s2io_get_ethtool_stats()
6293 (u64)le32_to_cpu(stats->tmac_data_octets_oflow) << 32 | in s2io_get_ethtool_stats()
6294 le32_to_cpu(stats->tmac_data_octets); in s2io_get_ethtool_stats()
6295 tmp_stats[i++] = le64_to_cpu(stats->tmac_drop_frms); in s2io_get_ethtool_stats()
6297 (u64)le32_to_cpu(stats->tmac_mcst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6298 le32_to_cpu(stats->tmac_mcst_frms); in s2io_get_ethtool_stats()
6300 (u64)le32_to_cpu(stats->tmac_bcst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6301 le32_to_cpu(stats->tmac_bcst_frms); in s2io_get_ethtool_stats()
6302 tmp_stats[i++] = le64_to_cpu(stats->tmac_pause_ctrl_frms); in s2io_get_ethtool_stats()
6304 (u64)le32_to_cpu(stats->tmac_ttl_octets_oflow) << 32 | in s2io_get_ethtool_stats()
6305 le32_to_cpu(stats->tmac_ttl_octets); in s2io_get_ethtool_stats()
6307 (u64)le32_to_cpu(stats->tmac_ucst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6308 le32_to_cpu(stats->tmac_ucst_frms); in s2io_get_ethtool_stats()
6310 (u64)le32_to_cpu(stats->tmac_nucst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6311 le32_to_cpu(stats->tmac_nucst_frms); in s2io_get_ethtool_stats()
6313 (u64)le32_to_cpu(stats->tmac_any_err_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6314 le32_to_cpu(stats->tmac_any_err_frms); in s2io_get_ethtool_stats()
6315 tmp_stats[i++] = le64_to_cpu(stats->tmac_ttl_less_fb_octets); in s2io_get_ethtool_stats()
6316 tmp_stats[i++] = le64_to_cpu(stats->tmac_vld_ip_octets); in s2io_get_ethtool_stats()
6318 (u64)le32_to_cpu(stats->tmac_vld_ip_oflow) << 32 | in s2io_get_ethtool_stats()
6319 le32_to_cpu(stats->tmac_vld_ip); in s2io_get_ethtool_stats()
6321 (u64)le32_to_cpu(stats->tmac_drop_ip_oflow) << 32 | in s2io_get_ethtool_stats()
6322 le32_to_cpu(stats->tmac_drop_ip); in s2io_get_ethtool_stats()
6324 (u64)le32_to_cpu(stats->tmac_icmp_oflow) << 32 | in s2io_get_ethtool_stats()
6325 le32_to_cpu(stats->tmac_icmp); in s2io_get_ethtool_stats()
6327 (u64)le32_to_cpu(stats->tmac_rst_tcp_oflow) << 32 | in s2io_get_ethtool_stats()
6328 le32_to_cpu(stats->tmac_rst_tcp); in s2io_get_ethtool_stats()
6329 tmp_stats[i++] = le64_to_cpu(stats->tmac_tcp); in s2io_get_ethtool_stats()
6330 tmp_stats[i++] = (u64)le32_to_cpu(stats->tmac_udp_oflow) << 32 | in s2io_get_ethtool_stats()
6331 le32_to_cpu(stats->tmac_udp); in s2io_get_ethtool_stats()
6333 (u64)le32_to_cpu(stats->rmac_vld_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6334 le32_to_cpu(stats->rmac_vld_frms); in s2io_get_ethtool_stats()
6336 (u64)le32_to_cpu(stats->rmac_data_octets_oflow) << 32 | in s2io_get_ethtool_stats()
6337 le32_to_cpu(stats->rmac_data_octets); in s2io_get_ethtool_stats()
6338 tmp_stats[i++] = le64_to_cpu(stats->rmac_fcs_err_frms); in s2io_get_ethtool_stats()
6339 tmp_stats[i++] = le64_to_cpu(stats->rmac_drop_frms); in s2io_get_ethtool_stats()
6341 (u64)le32_to_cpu(stats->rmac_vld_mcst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6342 le32_to_cpu(stats->rmac_vld_mcst_frms); in s2io_get_ethtool_stats()
6344 (u64)le32_to_cpu(stats->rmac_vld_bcst_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6345 le32_to_cpu(stats->rmac_vld_bcst_frms); in s2io_get_ethtool_stats()
6346 tmp_stats[i++] = le32_to_cpu(stats->rmac_in_rng_len_err_frms); in s2io_get_ethtool_stats()
6347 tmp_stats[i++] = le32_to_cpu(stats->rmac_out_rng_len_err_frms); in s2io_get_ethtool_stats()
6348 tmp_stats[i++] = le64_to_cpu(stats->rmac_long_frms); in s2io_get_ethtool_stats()
6349 tmp_stats[i++] = le64_to_cpu(stats->rmac_pause_ctrl_frms); in s2io_get_ethtool_stats()
6350 tmp_stats[i++] = le64_to_cpu(stats->rmac_unsup_ctrl_frms); in s2io_get_ethtool_stats()
6352 (u64)le32_to_cpu(stats->rmac_ttl_octets_oflow) << 32 | in s2io_get_ethtool_stats()
6353 le32_to_cpu(stats->rmac_ttl_octets); in s2io_get_ethtool_stats()
6355 (u64)le32_to_cpu(stats->rmac_accepted_ucst_frms_oflow) << 32 in s2io_get_ethtool_stats()
6356 | le32_to_cpu(stats->rmac_accepted_ucst_frms); in s2io_get_ethtool_stats()
6358 (u64)le32_to_cpu(stats->rmac_accepted_nucst_frms_oflow) in s2io_get_ethtool_stats()
6359 << 32 | le32_to_cpu(stats->rmac_accepted_nucst_frms); in s2io_get_ethtool_stats()
6361 (u64)le32_to_cpu(stats->rmac_discarded_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6362 le32_to_cpu(stats->rmac_discarded_frms); in s2io_get_ethtool_stats()
6364 (u64)le32_to_cpu(stats->rmac_drop_events_oflow) in s2io_get_ethtool_stats()
6365 << 32 | le32_to_cpu(stats->rmac_drop_events); in s2io_get_ethtool_stats()
6366 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_less_fb_octets); in s2io_get_ethtool_stats()
6367 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_frms); in s2io_get_ethtool_stats()
6369 (u64)le32_to_cpu(stats->rmac_usized_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6370 le32_to_cpu(stats->rmac_usized_frms); in s2io_get_ethtool_stats()
6372 (u64)le32_to_cpu(stats->rmac_osized_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6373 le32_to_cpu(stats->rmac_osized_frms); in s2io_get_ethtool_stats()
6375 (u64)le32_to_cpu(stats->rmac_frag_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6376 le32_to_cpu(stats->rmac_frag_frms); in s2io_get_ethtool_stats()
6378 (u64)le32_to_cpu(stats->rmac_jabber_frms_oflow) << 32 | in s2io_get_ethtool_stats()
6379 le32_to_cpu(stats->rmac_jabber_frms); in s2io_get_ethtool_stats()
6380 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_64_frms); in s2io_get_ethtool_stats()
6381 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_65_127_frms); in s2io_get_ethtool_stats()
6382 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_128_255_frms); in s2io_get_ethtool_stats()
6383 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_256_511_frms); in s2io_get_ethtool_stats()
6384 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_512_1023_frms); in s2io_get_ethtool_stats()
6385 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_1024_1518_frms); in s2io_get_ethtool_stats()
6387 (u64)le32_to_cpu(stats->rmac_ip_oflow) << 32 | in s2io_get_ethtool_stats()
6388 le32_to_cpu(stats->rmac_ip); in s2io_get_ethtool_stats()
6389 tmp_stats[i++] = le64_to_cpu(stats->rmac_ip_octets); in s2io_get_ethtool_stats()
6390 tmp_stats[i++] = le32_to_cpu(stats->rmac_hdr_err_ip); in s2io_get_ethtool_stats()
6392 (u64)le32_to_cpu(stats->rmac_drop_ip_oflow) << 32 | in s2io_get_ethtool_stats()
6393 le32_to_cpu(stats->rmac_drop_ip); in s2io_get_ethtool_stats()
6395 (u64)le32_to_cpu(stats->rmac_icmp_oflow) << 32 | in s2io_get_ethtool_stats()
6396 le32_to_cpu(stats->rmac_icmp); in s2io_get_ethtool_stats()
6397 tmp_stats[i++] = le64_to_cpu(stats->rmac_tcp); in s2io_get_ethtool_stats()
6399 (u64)le32_to_cpu(stats->rmac_udp_oflow) << 32 | in s2io_get_ethtool_stats()
6400 le32_to_cpu(stats->rmac_udp); in s2io_get_ethtool_stats()
6402 (u64)le32_to_cpu(stats->rmac_err_drp_udp_oflow) << 32 | in s2io_get_ethtool_stats()
6403 le32_to_cpu(stats->rmac_err_drp_udp); in s2io_get_ethtool_stats()
6404 tmp_stats[i++] = le64_to_cpu(stats->rmac_xgmii_err_sym); in s2io_get_ethtool_stats()
6405 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q0); in s2io_get_ethtool_stats()
6406 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q1); in s2io_get_ethtool_stats()
6407 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q2); in s2io_get_ethtool_stats()
6408 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q3); in s2io_get_ethtool_stats()
6409 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q4); in s2io_get_ethtool_stats()
6410 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q5); in s2io_get_ethtool_stats()
6411 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q6); in s2io_get_ethtool_stats()
6412 tmp_stats[i++] = le64_to_cpu(stats->rmac_frms_q7); in s2io_get_ethtool_stats()
6413 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q0); in s2io_get_ethtool_stats()
6414 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q1); in s2io_get_ethtool_stats()
6415 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q2); in s2io_get_ethtool_stats()
6416 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q3); in s2io_get_ethtool_stats()
6417 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q4); in s2io_get_ethtool_stats()
6418 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q5); in s2io_get_ethtool_stats()
6419 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q6); in s2io_get_ethtool_stats()
6420 tmp_stats[i++] = le16_to_cpu(stats->rmac_full_q7); in s2io_get_ethtool_stats()
6422 (u64)le32_to_cpu(stats->rmac_pause_cnt_oflow) << 32 | in s2io_get_ethtool_stats()
6423 le32_to_cpu(stats->rmac_pause_cnt); in s2io_get_ethtool_stats()
6424 tmp_stats[i++] = le64_to_cpu(stats->rmac_xgmii_data_err_cnt); in s2io_get_ethtool_stats()
6425 tmp_stats[i++] = le64_to_cpu(stats->rmac_xgmii_ctrl_err_cnt); in s2io_get_ethtool_stats()
6427 (u64)le32_to_cpu(stats->rmac_accepted_ip_oflow) << 32 | in s2io_get_ethtool_stats()
6428 le32_to_cpu(stats->rmac_accepted_ip); in s2io_get_ethtool_stats()
6429 tmp_stats[i++] = le32_to_cpu(stats->rmac_err_tcp); in s2io_get_ethtool_stats()
6430 tmp_stats[i++] = le32_to_cpu(stats->rd_req_cnt); in s2io_get_ethtool_stats()
6431 tmp_stats[i++] = le32_to_cpu(stats->new_rd_req_cnt); in s2io_get_ethtool_stats()
6432 tmp_stats[i++] = le32_to_cpu(stats->new_rd_req_rtry_cnt); in s2io_get_ethtool_stats()
6433 tmp_stats[i++] = le32_to_cpu(stats->rd_rtry_cnt); in s2io_get_ethtool_stats()
6434 tmp_stats[i++] = le32_to_cpu(stats->wr_rtry_rd_ack_cnt); in s2io_get_ethtool_stats()
6435 tmp_stats[i++] = le32_to_cpu(stats->wr_req_cnt); in s2io_get_ethtool_stats()
6436 tmp_stats[i++] = le32_to_cpu(stats->new_wr_req_cnt); in s2io_get_ethtool_stats()
6437 tmp_stats[i++] = le32_to_cpu(stats->new_wr_req_rtry_cnt); in s2io_get_ethtool_stats()
6438 tmp_stats[i++] = le32_to_cpu(stats->wr_rtry_cnt); in s2io_get_ethtool_stats()
6439 tmp_stats[i++] = le32_to_cpu(stats->wr_disc_cnt); in s2io_get_ethtool_stats()
6440 tmp_stats[i++] = le32_to_cpu(stats->rd_rtry_wr_ack_cnt); in s2io_get_ethtool_stats()
6441 tmp_stats[i++] = le32_to_cpu(stats->txp_wr_cnt); in s2io_get_ethtool_stats()
6442 tmp_stats[i++] = le32_to_cpu(stats->txd_rd_cnt); in s2io_get_ethtool_stats()
6443 tmp_stats[i++] = le32_to_cpu(stats->txd_wr_cnt); in s2io_get_ethtool_stats()
6444 tmp_stats[i++] = le32_to_cpu(stats->rxd_rd_cnt); in s2io_get_ethtool_stats()
6445 tmp_stats[i++] = le32_to_cpu(stats->rxd_wr_cnt); in s2io_get_ethtool_stats()
6446 tmp_stats[i++] = le32_to_cpu(stats->txf_rd_cnt); in s2io_get_ethtool_stats()
6447 tmp_stats[i++] = le32_to_cpu(stats->rxf_wr_cnt); in s2io_get_ethtool_stats()
6452 le64_to_cpu(stats->rmac_ttl_1519_4095_frms); in s2io_get_ethtool_stats()
6454 le64_to_cpu(stats->rmac_ttl_4096_8191_frms); in s2io_get_ethtool_stats()
6456 le64_to_cpu(stats->rmac_ttl_8192_max_frms); in s2io_get_ethtool_stats()
6457 tmp_stats[i++] = le64_to_cpu(stats->rmac_ttl_gt_max_frms); in s2io_get_ethtool_stats()
6458 tmp_stats[i++] = le64_to_cpu(stats->rmac_osized_alt_frms); in s2io_get_ethtool_stats()
6459 tmp_stats[i++] = le64_to_cpu(stats->rmac_jabber_alt_frms); in s2io_get_ethtool_stats()
6460 tmp_stats[i++] = le64_to_cpu(stats->rmac_gt_max_alt_frms); in s2io_get_ethtool_stats()
6461 tmp_stats[i++] = le64_to_cpu(stats->rmac_vlan_frms); in s2io_get_ethtool_stats()
6462 tmp_stats[i++] = le32_to_cpu(stats->rmac_len_discard); in s2io_get_ethtool_stats()
6463 tmp_stats[i++] = le32_to_cpu(stats->rmac_fcs_discard); in s2io_get_ethtool_stats()
6464 tmp_stats[i++] = le32_to_cpu(stats->rmac_pf_discard); in s2io_get_ethtool_stats()
6465 tmp_stats[i++] = le32_to_cpu(stats->rmac_da_discard); in s2io_get_ethtool_stats()
6466 tmp_stats[i++] = le32_to_cpu(stats->rmac_red_discard); in s2io_get_ethtool_stats()
6467 tmp_stats[i++] = le32_to_cpu(stats->rmac_rts_discard); in s2io_get_ethtool_stats()
6468 tmp_stats[i++] = le32_to_cpu(stats->rmac_ingm_full_discard); in s2io_get_ethtool_stats()
6469 tmp_stats[i++] = le32_to_cpu(stats->link_fault_cnt); in s2io_get_ethtool_stats()
6803 struct swStat *stats = &sp->mac_control.stats_info->sw_stat; in set_rxd_buffer_pointer() local
6822 stats->mem_alloc_fail_cnt++; in set_rxd_buffer_pointer()
6825 stats->mem_allocated += (*skb)->truesize; in set_rxd_buffer_pointer()
6852 stats->mem_alloc_fail_cnt++; in set_rxd_buffer_pointer()
6855 stats->mem_allocated += (*skb)->truesize; in set_rxd_buffer_pointer()
6895 stats->pci_map_fail_cnt++; in set_rxd_buffer_pointer()
6896 stats->mem_freed += (*skb)->truesize; in set_rxd_buffer_pointer()
7393 dev->stats.rx_crc_errors++; in rx_osm_handler()