Home
last modified time | relevance | path

Searched refs:nstats (Results 1 – 11 of 11) sorted by relevance

/Linux-v5.4/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_stats.c1117 struct net_device_stats *nstats = &bp->dev->stats; in bnx2x_net_stats_update() local
1121 nstats->rx_packets = in bnx2x_net_stats_update()
1126 nstats->tx_packets = in bnx2x_net_stats_update()
1131 nstats->rx_bytes = bnx2x_hilo(&estats->total_bytes_received_hi); in bnx2x_net_stats_update()
1133 nstats->tx_bytes = bnx2x_hilo(&estats->total_bytes_transmitted_hi); in bnx2x_net_stats_update()
1141 nstats->rx_dropped = tmp + bp->net_stats_old.rx_dropped; in bnx2x_net_stats_update()
1143 nstats->tx_dropped = 0; in bnx2x_net_stats_update()
1145 nstats->multicast = in bnx2x_net_stats_update()
1148 nstats->collisions = in bnx2x_net_stats_update()
1151 nstats->rx_length_errors = in bnx2x_net_stats_update()
[all …]
/Linux-v5.4/drivers/net/ethernet/renesas/
Dravb_main.c1615 struct net_device_stats *nstats, *stats0, *stats1; in ravb_get_stats() local
1617 nstats = &ndev->stats; in ravb_get_stats()
1622 nstats->tx_dropped += ravb_read(ndev, TROCR); in ravb_get_stats()
1626 nstats->rx_packets = stats0->rx_packets + stats1->rx_packets; in ravb_get_stats()
1627 nstats->tx_packets = stats0->tx_packets + stats1->tx_packets; in ravb_get_stats()
1628 nstats->rx_bytes = stats0->rx_bytes + stats1->rx_bytes; in ravb_get_stats()
1629 nstats->tx_bytes = stats0->tx_bytes + stats1->tx_bytes; in ravb_get_stats()
1630 nstats->multicast = stats0->multicast + stats1->multicast; in ravb_get_stats()
1631 nstats->rx_errors = stats0->rx_errors + stats1->rx_errors; in ravb_get_stats()
1632 nstats->rx_crc_errors = stats0->rx_crc_errors + stats1->rx_crc_errors; in ravb_get_stats()
[all …]
/Linux-v5.4/drivers/net/phy/
Dmscc.c413 int nstats; member
452 return priv->nstats; in vsc85xx_get_sset_count()
463 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_strings()
493 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_stats()
2228 vsc8531->nstats = ARRAY_SIZE(vsc85xx_hw_stats); in vsc8514_probe()
2229 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8514_probe()
2253 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8574_probe()
2254 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8574_probe()
2283 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8584_probe()
2284 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8584_probe()
[all …]
/Linux-v5.4/drivers/staging/ks7010/
Dks_hostif.c354 priv->nstats.rx_errors++; in hostif_data_indication_wpa()
430 priv->nstats.rx_errors++; in hostif_data_indication()
447 priv->nstats.rx_errors++; in hostif_data_indication()
469 priv->nstats.rx_dropped++; in hostif_data_indication()
489 priv->nstats.rx_dropped++; in hostif_data_indication()
510 priv->nstats.rx_errors++; in hostif_data_indication()
521 priv->nstats.rx_packets++; in hostif_data_indication()
522 priv->nstats.rx_bytes += rx_ind_size; in hostif_data_indication()
Dks_wlan.h441 struct net_device_stats nstats; member
Dks7010_sdio.c937 memset(&priv->nstats, 0, sizeof(priv->nstats)); in ks7010_private_init()
Dks_wlan_net.c2480 return &priv->nstats; in ks_wlan_get_stats()
2509 priv->nstats.tx_errors++; in ks_wlan_tx_timeout()
2544 priv->nstats.tx_packets++; in send_packet_complete()
2550 priv->nstats.tx_bytes += skb->len; in send_packet_complete()
/Linux-v5.4/drivers/scsi/csiostor/
Dcsio_mb.h51 uint8_t nstats; member
Dcsio_mb.c1042 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()
Dcsio_lnode.c1401 portparams.nstats = 6; in csio_get_phy_port_stats()
1403 portparams.nstats = 4; in csio_get_phy_port_stats()
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4vf/
Dt4vf_hw.c1779 unsigned int nstats = min(6U, rem); in t4vf_get_port_stats() local
1794 FW_VI_STATS_CMD_NSTATS_V(nstats)); in t4vf_get_port_stats()
1799 memcpy(fwsp, &rpl.u.ctl.stat0, sizeof(__be64) * nstats); in t4vf_get_port_stats()
1801 rem -= nstats; in t4vf_get_port_stats()
1802 fwsp += nstats; in t4vf_get_port_stats()