Home
last modified time | relevance | path

Searched refs:vstats (Results 1 – 10 of 10) sorted by relevance

/drivers/infiniband/ulp/opa_vnic/
Dopa_vnic_vema_iface.c87 struct opa_vnic_stats vstats; in opa_vnic_get_summary_counters() local
91 memset(&vstats, 0, sizeof(vstats)); in opa_vnic_get_summary_counters()
93 adapter->rn_ops->ndo_get_stats64(adapter->netdev, &vstats.netstats); in opa_vnic_get_summary_counters()
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()
111 for (dst = &cntrs->tx_unicast, src = &vstats.tx_grp.unicast; in opa_vnic_get_summary_counters()
[all …]
Dopa_vnic_ethtool.c143 struct opa_vnic_stats vstats; in vnic_get_ethtool_stats() local
146 memset(&vstats, 0, sizeof(vstats)); in vnic_get_ethtool_stats()
148 adapter->rn_ops->ndo_get_stats64(netdev, &vstats.netstats); in vnic_get_ethtool_stats()
151 char *p = (char *)&vstats + vnic_gstrings_stats[i].stat_offset; in vnic_get_ethtool_stats()
Dopa_vnic_netdev.c68 struct opa_vnic_stats vstats; in opa_vnic_get_stats64() local
70 memset(&vstats, 0, sizeof(vstats)); in opa_vnic_get_stats64()
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()
/drivers/net/vxlan/
Dvxlan_vnifilter.c216 struct vxlan_vni_stats vstats; in __vnifilter_entry_fill_stats() local
223 vxlan_vnifilter_stats_get(vbegin, &vstats); in __vnifilter_entry_fill_stats()
225 vstats.rx_bytes, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
227 vstats.rx_packets, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
229 vstats.rx_drops, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
231 vstats.rx_errors, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
233 vstats.tx_bytes, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
235 vstats.tx_packets, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
237 vstats.tx_drops, VNIFILTER_ENTRY_STATS_PAD) || in __vnifilter_entry_fill_stats()
239 vstats.tx_errors, VNIFILTER_ENTRY_STATS_PAD)) in __vnifilter_entry_fill_stats()
/drivers/net/ethernet/cisco/enic/
Denic_dev.c24 int enic_dev_stats_dump(struct enic *enic, struct vnic_stats **vstats) in enic_dev_stats_dump() argument
29 err = vnic_dev_stats_dump(enic->vdev, vstats); in enic_dev_stats_dump()
Denic_ethtool.c257 struct vnic_stats *vstats; in enic_get_ethtool_stats() local
261 err = enic_dev_stats_dump(enic, &vstats); in enic_get_ethtool_stats()
270 *(data++) = ((u64 *)&vstats->tx)[enic_tx_stats[i].index]; in enic_get_ethtool_stats()
272 *(data++) = ((u64 *)&vstats->rx)[enic_rx_stats[i].index]; in enic_get_ethtool_stats()
Denic_dev.h28 int enic_dev_stats_dump(struct enic *enic, struct vnic_stats **vstats);
/drivers/net/ethernet/mellanox/mlx5/core/
Den_stats.h284 #define VPORT_COUNTER_GET(vstats, c) MLX5_GET64(query_vport_counter_out, \ argument
285 vstats->query_vport_out, c)
Den_main.c3654 struct mlx5e_vport_stats *vstats = &priv->stats.vport; in mlx5e_get_stats() local
3664 stats->multicast = VPORT_COUNTER_GET(vstats, received_eth_multicast.packets); in mlx5e_get_stats()
/drivers/infiniband/hw/hfi1/
Dvnic_main.c184 struct opa_vnic_stats *vstats = (struct opa_vnic_stats *)stats; in hfi1_vnic_get_stats64() local
187 hfi1_vnic_update_stats(vinfo, vstats); in hfi1_vnic_get_stats64()