Searched refs:netstats (Results 1 – 11 of 11) sorted by relevance
/linux-6.3-rc2/drivers/infiniband/hw/hfi1/ |
A D | vnic_main.c | 54 stats->netstats.tx_packets += qnstats->tx_packets; in hfi1_vnic_update_stats() 55 stats->netstats.tx_bytes += qnstats->tx_bytes; in hfi1_vnic_update_stats() 71 stats->netstats.rx_bytes += qnstats->rx_bytes; in hfi1_vnic_update_stats() 74 stats->netstats.tx_errors = stats->netstats.tx_fifo_errors + in hfi1_vnic_update_stats() 75 stats->netstats.tx_carrier_errors + in hfi1_vnic_update_stats() 77 stats->netstats.tx_dropped = stats->netstats.tx_errors; in hfi1_vnic_update_stats() 79 stats->netstats.rx_errors = stats->netstats.rx_fifo_errors + in hfi1_vnic_update_stats() 80 stats->netstats.rx_nohandler + in hfi1_vnic_update_stats() 83 stats->netstats.rx_dropped = stats->netstats.rx_errors; in hfi1_vnic_update_stats() 131 stats->netstats.tx_packets++; in hfi1_vnic_update_tx_counters() [all …]
|
/linux-6.3-rc2/drivers/infiniband/ulp/opa_vnic/ |
A D | opa_vnic_ethtool.c | 71 {"rx_packets", VNIC_STAT(netstats.rx_packets)}, 72 {"tx_packets", VNIC_STAT(netstats.tx_packets)}, 73 {"rx_bytes", VNIC_STAT(netstats.rx_bytes)}, 74 {"tx_bytes", VNIC_STAT(netstats.tx_bytes)}, 75 {"rx_errors", VNIC_STAT(netstats.rx_errors)}, 76 {"tx_errors", VNIC_STAT(netstats.tx_errors)}, 77 {"rx_dropped", VNIC_STAT(netstats.rx_dropped)}, 78 {"tx_dropped", VNIC_STAT(netstats.tx_dropped)}, 108 {"rx_fifo_errors", VNIC_STAT(netstats.rx_fifo_errors)}, 109 {"rx_length_errors", VNIC_STAT(netstats.rx_length_errors)}, [all …]
|
A D | opa_vnic_vema_iface.c | 100 cntrs->tx_errors = cpu_to_be64(vstats.netstats.tx_errors); in opa_vnic_get_summary_counters() 101 cntrs->rx_errors = cpu_to_be64(vstats.netstats.rx_errors); in opa_vnic_get_summary_counters() 102 cntrs->tx_packets = cpu_to_be64(vstats.netstats.tx_packets); in opa_vnic_get_summary_counters() 103 cntrs->rx_packets = cpu_to_be64(vstats.netstats.rx_packets); in opa_vnic_get_summary_counters() 104 cntrs->tx_bytes = cpu_to_be64(vstats.netstats.tx_bytes); in opa_vnic_get_summary_counters() 105 cntrs->rx_bytes = cpu_to_be64(vstats.netstats.rx_bytes); in opa_vnic_get_summary_counters() 139 cntrs->tx_errors = cpu_to_be64(vstats.netstats.tx_errors); in opa_vnic_get_error_counters() 140 cntrs->rx_errors = cpu_to_be64(vstats.netstats.rx_errors); in opa_vnic_get_error_counters() 143 cntrs->tx_logic = cpu_to_be64(vstats.netstats.tx_fifo_errors + in opa_vnic_get_error_counters() 144 vstats.netstats.tx_carrier_errors); in opa_vnic_get_error_counters() [all …]
|
A D | opa_vnic_netdev.c | 72 adapter->rn_ops->ndo_get_stats64(netdev, &vstats.netstats); in opa_vnic_get_stats64() 74 memcpy(stats, &vstats.netstats, sizeof(*stats)); in opa_vnic_get_stats64()
|
/linux-6.3-rc2/include/rdma/ |
A D | opa_vnic.h | 79 struct rtnl_link_stats64 netstats; member
|
/linux-6.3-rc2/drivers/net/wireless/microchip/wilc1000/ |
A D | netdev.c | 632 return &vif->netstats; in mac_stats() 748 vif->netstats.tx_packets++; in wilc_mac_xmit() 749 vif->netstats.tx_bytes += tx_data->size; in wilc_mac_xmit() 832 vif->netstats.rx_packets++; in wilc_frmw_to_host() 833 vif->netstats.rx_bytes += frame_len; in wilc_frmw_to_host()
|
A D | netdev.h | 175 struct net_device_stats netstats; member
|
/linux-6.3-rc2/drivers/net/ethernet/freescale/dpaa/ |
A D | dpaa_eth.c | 353 u64 *netstats = (u64 *)s; in dpaa_get_stats64() local 364 netstats[j] += cpustats[j]; in dpaa_get_stats64()
|
/linux-6.3-rc2/drivers/net/ethernet/freescale/dpaa2/ |
A D | dpaa2-eth.c | 2369 u64 *netstats = (u64 *)stats; in dpaa2_eth_get_stats() local 2377 netstats[j] += cpustats[j]; in dpaa2_eth_get_stats()
|
/linux-6.3-rc2/include/linux/ |
A D | netdevice.h | 4673 const struct pcpu_sw_netstats __percpu *netstats);
|
/linux-6.3-rc2/net/core/ |
A D | dev.c | 10452 const struct pcpu_sw_netstats __percpu *netstats) in dev_fetch_sw_netstats() argument 10461 stats = per_cpu_ptr(netstats, cpu); in dev_fetch_sw_netstats()
|
Completed in 59 milliseconds