Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_stats.c1118 struct net_device_stats *nstats = &bp->dev->stats; in bnx2x_net_stats_update() local
1122 nstats->rx_packets = in bnx2x_net_stats_update()
1127 nstats->tx_packets = in bnx2x_net_stats_update()
1132 nstats->rx_bytes = bnx2x_hilo(&estats->total_bytes_received_hi); in bnx2x_net_stats_update()
1134 nstats->tx_bytes = bnx2x_hilo(&estats->total_bytes_transmitted_hi); in bnx2x_net_stats_update()
1142 nstats->rx_dropped = tmp + bp->net_stats_old.rx_dropped; in bnx2x_net_stats_update()
1144 nstats->tx_dropped = 0; in bnx2x_net_stats_update()
1146 nstats->multicast = in bnx2x_net_stats_update()
1149 nstats->collisions = in bnx2x_net_stats_update()
1152 nstats->rx_length_errors = in bnx2x_net_stats_update()
[all …]
/linux-6.12.1/drivers/net/ethernet/renesas/
Dravb_main.c2249 struct net_device_stats *nstats, *stats0, *stats1; in ravb_get_stats() local
2252 nstats = &ndev->stats; in ravb_get_stats()
2262 nstats->tx_dropped += ravb_read(ndev, TROCR); in ravb_get_stats()
2267 nstats->collisions += ravb_read(ndev, CXR41); in ravb_get_stats()
2269 nstats->tx_carrier_errors += ravb_read(ndev, CXR42); in ravb_get_stats()
2273 nstats->rx_packets = stats0->rx_packets; in ravb_get_stats()
2274 nstats->tx_packets = stats0->tx_packets; in ravb_get_stats()
2275 nstats->rx_bytes = stats0->rx_bytes; in ravb_get_stats()
2276 nstats->tx_bytes = stats0->tx_bytes; in ravb_get_stats()
2277 nstats->multicast = stats0->multicast; in ravb_get_stats()
[all …]
/linux-6.12.1/drivers/net/phy/mscc/
Dmscc_main.c130 return priv->nstats; in vsc85xx_get_sset_count()
141 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_strings()
171 for (i = 0; i < priv->nstats; i++) in vsc85xx_get_stats()
2225 vsc8531->nstats = ARRAY_SIZE(vsc85xx_hw_stats); in vsc8514_probe()
2226 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8514_probe()
2254 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8574_probe()
2255 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8574_probe()
2289 vsc8531->nstats = ARRAY_SIZE(vsc8584_hw_stats); in vsc8584_probe()
2290 vsc8531->stats = devm_kcalloc(&phydev->mdio.dev, vsc8531->nstats, in vsc8584_probe()
2329 vsc8531->nstats = ARRAY_SIZE(vsc85xx_hw_stats); in vsc85xx_probe()
[all …]
Dmscc.h372 int nstats; member
/linux-6.12.1/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.c1403 portparams.nstats = 6; in csio_get_phy_port_stats()
1405 portparams.nstats = 4; in csio_get_phy_port_stats()
/linux-6.12.1/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()
/linux-6.12.1/drivers/net/ethernet/fungible/funeth/
Dfuneth_main.c1474 unsigned int nstats; in fun_init_stats_area() local
1479 nstats = PORT_MAC_RX_STATS_MAX + PORT_MAC_TX_STATS_MAX + in fun_init_stats_area()
1482 fp->stats = dma_alloc_coherent(&fp->pdev->dev, nstats * sizeof(u64), in fun_init_stats_area()
1491 unsigned int nstats; in fun_free_stats_area() local
1494 nstats = PORT_MAC_RX_STATS_MAX + PORT_MAC_TX_STATS_MAX; in fun_free_stats_area()
1495 dma_free_coherent(&fp->pdev->dev, nstats * sizeof(u64), in fun_free_stats_area()