Searched refs:nstats (Results 1 – 12 of 12) sorted by relevance
/drivers/net/ethernet/broadcom/bnx2x/ |
D | bnx2x_stats.c | 1119 struct net_device_stats *nstats = &bp->dev->stats; in bnx2x_net_stats_update() local 1123 nstats->rx_packets = in bnx2x_net_stats_update() 1128 nstats->tx_packets = in bnx2x_net_stats_update() 1133 nstats->rx_bytes = bnx2x_hilo(&estats->total_bytes_received_hi); in bnx2x_net_stats_update() 1135 nstats->tx_bytes = bnx2x_hilo(&estats->total_bytes_transmitted_hi); in bnx2x_net_stats_update() 1143 nstats->rx_dropped = tmp + bp->net_stats_old.rx_dropped; in bnx2x_net_stats_update() 1145 nstats->tx_dropped = 0; in bnx2x_net_stats_update() 1147 nstats->multicast = in bnx2x_net_stats_update() 1150 nstats->collisions = in bnx2x_net_stats_update() 1153 nstats->rx_length_errors = in bnx2x_net_stats_update() [all …]
|
/drivers/net/ethernet/renesas/ |
D | ravb_main.c | 1638 struct net_device_stats *nstats, *stats0, *stats1; in ravb_get_stats() local 1640 nstats = &ndev->stats; in ravb_get_stats() 1645 nstats->tx_dropped += ravb_read(ndev, TROCR); in ravb_get_stats() 1649 nstats->rx_packets = stats0->rx_packets + stats1->rx_packets; in ravb_get_stats() 1650 nstats->tx_packets = stats0->tx_packets + stats1->tx_packets; in ravb_get_stats() 1651 nstats->rx_bytes = stats0->rx_bytes + stats1->rx_bytes; in ravb_get_stats() 1652 nstats->tx_bytes = stats0->tx_bytes + stats1->tx_bytes; in ravb_get_stats() 1653 nstats->multicast = stats0->multicast + stats1->multicast; in ravb_get_stats() 1654 nstats->rx_errors = stats0->rx_errors + stats1->rx_errors; in ravb_get_stats() 1655 nstats->rx_crc_errors = stats0->rx_crc_errors + stats1->rx_crc_errors; in ravb_get_stats() [all …]
|
/drivers/net/phy/mscc/ |
D | mscc_main.c | 127 return priv->nstats; in vsc85xx_get_sset_count() 138 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_strings() 168 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_stats() 2101 vsc8531->nstats = ARRAY_SIZE(vsc85xx_hw_stats); in vsc8514_probe() 2102 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8514_probe() 2130 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8574_probe() 2131 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8574_probe() 2165 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8584_probe() 2166 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8584_probe() 2205 vsc8531->nstats = ARRAY_SIZE(vsc85xx_hw_stats); in vsc85xx_probe() [all …]
|
D | mscc.h | 362 int nstats; member
|
/drivers/staging/ks7010/ |
D | ks_hostif.c | 353 priv->nstats.rx_errors++; in hostif_data_indication_wpa() 429 priv->nstats.rx_errors++; in hostif_data_indication() 442 priv->nstats.rx_errors++; in hostif_data_indication() 464 priv->nstats.rx_dropped++; in hostif_data_indication() 484 priv->nstats.rx_dropped++; in hostif_data_indication() 505 priv->nstats.rx_errors++; in hostif_data_indication() 516 priv->nstats.rx_packets++; in hostif_data_indication() 517 priv->nstats.rx_bytes += rx_ind_size; in hostif_data_indication()
|
D | ks_wlan.h | 441 struct net_device_stats nstats; member
|
D | ks7010_sdio.c | 938 memset(&priv->nstats, 0, sizeof(priv->nstats)); in ks7010_private_init()
|
D | ks_wlan_net.c | 2484 return &priv->nstats; in ks_wlan_get_stats() 2513 priv->nstats.tx_errors++; in ks_wlan_tx_timeout() 2548 priv->nstats.tx_packets++; in send_packet_complete() 2554 priv->nstats.tx_bytes += skb->len; in send_packet_complete()
|
/drivers/scsi/csiostor/ |
D | csio_mb.h | 51 uint8_t nstats; member
|
D | csio_mb.c | 1042 cmdp->u.ctl.nstats_port = FW_FCOE_STATS_CMD_NSTATS(portparams->nstats) | in csio_fcoe_read_portparams_init_mb() 1069 memcpy(dst, src, (portparams->nstats * 8)); in csio_mb_process_portparams_rsp()
|
D | csio_lnode.c | 1403 portparams.nstats = 6; in csio_get_phy_port_stats() 1405 portparams.nstats = 4; in csio_get_phy_port_stats()
|
/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | t4vf_hw.c | 1778 unsigned int nstats = min(6U, rem); in t4vf_get_port_stats() local 1793 FW_VI_STATS_CMD_NSTATS_V(nstats)); in t4vf_get_port_stats() 1798 memcpy(fwsp, &rpl.u.ctl.stat0, sizeof(__be64) * nstats); in t4vf_get_port_stats() 1800 rem -= nstats; in t4vf_get_port_stats() 1801 fwsp += nstats; in t4vf_get_port_stats()
|