Home
last modified time | relevance | path

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

/dpdk/lib/vhost/
H A Dvdpa_driver.h73 int (*reset_stats)(struct rte_vdpa_device *dev, int qid); member
H A Dvdpa.c292 RTE_FUNC_PTR_OR_ERR_RET(dev->ops->reset_stats, -ENOTSUP); in rte_vdpa_reset_stats()
294 return dev->ops->reset_stats(dev, qid); in rte_vdpa_reset_stats()
/dpdk/app/proc-info/
H A Dmain.c68 static uint32_t reset_stats; variable
279 reset_stats = 1; in proc_info_parse_args()
1527 else if (reset_stats) in main()
/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()
/dpdk/drivers/net/hns3/
H A Dhns3_stats.c1047 struct hns3_reset_stats *reset_stats = &hw->reset.stats; in hns3_dev_xstats_get() local
1096 addr = (char *)reset_stats + hns3_reset_stats_strings[i].offset; in hns3_dev_xstats_get()
/dpdk/drivers/vdpa/mlx5/
H A Dmlx5_vdpa.c461 .reset_stats = mlx5_vdpa_reset_stats,