Home
last modified time | relevance | path

Searched refs:reset_stats (Results 1 – 8 of 8) sorted by relevance

/f-stack/dpdk/lib/librte_vhost/
H A Drte_vdpa_dev.h63 int (*reset_stats)(struct rte_vdpa_device *dev, int qid); member
H A Dvdpa.c293 RTE_FUNC_PTR_OR_ERR_RET(dev->ops->reset_stats, -ENOTSUP); in rte_vdpa_reset_stats()
295 return dev->ops->reset_stats(dev, qid); in rte_vdpa_reset_stats()
/f-stack/dpdk/app/proc-info/
H A Dmain.c64 static uint32_t reset_stats; variable
264 reset_stats = 1; in proc_info_parse_args()
1426 else if (reset_stats) in main()
/f-stack/dpdk/drivers/net/hns3/
H A Dhns3_stats.c722 struct hns3_reset_stats *reset_stats = &hw->reset.stats; in hns3_dev_xstats_get() local
766 addr = (char *)reset_stats + hns3_reset_stats_strings[i].offset; in hns3_dev_xstats_get()
/f-stack/dpdk/drivers/net/qede/base/
H A Decore_l2.c2042 if (!p_dev->reset_stats) in ecore_get_vport_stats()
2047 ((u64 *)stats)[i] -= ((u64 *)p_dev->reset_stats)[i]; in ecore_get_vport_stats()
2089 if (!p_dev->reset_stats) in ecore_reset_vport_stats()
2092 _ecore_get_vport_stats(p_dev, p_dev->reset_stats); in ecore_reset_vport_stats()
2093 p_dev->reset_stats->common.link_change_count = 0; in ecore_reset_vport_stats()
H A Decore.h905 struct ecore_eth_stats *reset_stats; member
H A Decore_dev.c1638 OSAL_FREE(p_dev, p_dev->reset_stats); in ecore_resc_free()
2542 p_dev->reset_stats = OSAL_ZALLOC(p_dev, GFP_KERNEL, in ecore_resc_alloc()
2543 sizeof(*p_dev->reset_stats)); in ecore_resc_alloc()
2544 if (!p_dev->reset_stats) { in ecore_resc_alloc()
/f-stack/dpdk/drivers/vdpa/mlx5/
H A Dmlx5_vdpa.c470 .reset_stats = mlx5_vdpa_reset_stats,