Home
last modified time | relevance | path

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

/dpdk/drivers/net/hns3/
H A Dhns3_ethdev.c6039 speed_fec_capa[0].speed = speed_fec_capa_tbl[1].speed; in hns3_get_speed_fec_capa()
6040 speed_fec_capa[0].capa = speed_fec_capa_tbl[1].capa; in hns3_get_speed_fec_capa()
6043 speed_fec_capa[1].speed = speed_fec_capa_tbl[0].speed; in hns3_get_speed_fec_capa()
6044 speed_fec_capa[1].capa = speed_fec_capa_tbl[0].capa; in hns3_get_speed_fec_capa()
6047 speed_fec_capa[0].speed = speed_fec_capa_tbl[4].speed; in hns3_get_speed_fec_capa()
6048 speed_fec_capa[0].capa = speed_fec_capa_tbl[4].capa; in hns3_get_speed_fec_capa()
6051 speed_fec_capa[0].speed = speed_fec_capa_tbl[5].speed; in hns3_get_speed_fec_capa()
6052 speed_fec_capa[0].capa = speed_fec_capa_tbl[5].capa; in hns3_get_speed_fec_capa()
6063 struct rte_eth_fec_capa *speed_fec_capa, in hns3_fec_get_capability() argument
6079 if (speed_fec_capa == NULL || num < capa_num) in hns3_fec_get_capability()
[all …]
/dpdk/drivers/net/cxgbe/
H A Dcxgbe_ethdev.c1514 struct rte_eth_fec_capa *speed_fec_capa, in cxgbe_fec_get_capability() argument
1525 if (!speed_fec_capa || num < num_entries) in cxgbe_fec_get_capability()
1528 return cxgbe_fec_get_capa_speed_to_fec(lc, speed_fec_capa); in cxgbe_fec_get_capability()
/dpdk/lib/ethdev/
H A Dethdev_driver.h803 struct rte_eth_fec_capa *speed_fec_capa, unsigned int num);
H A Drte_ethdev.c4084 struct rte_eth_fec_capa *speed_fec_capa, in rte_eth_fec_get_capability() argument
4093 if (speed_fec_capa == NULL && num > 0) { in rte_eth_fec_get_capability()
4101 ret = (*dev->dev_ops->fec_get_capability)(dev, speed_fec_capa, num); in rte_eth_fec_get_capability()
H A Drte_ethdev.h4091 struct rte_eth_fec_capa *speed_fec_capa,
/dpdk/app/test-pmd/
H A Dtestpmd.h1030 void show_fec_capability(uint32_t num, struct rte_eth_fec_capa *speed_fec_capa);
H A Dconfig.c4744 show_fec_capability(unsigned int num, struct rte_eth_fec_capa *speed_fec_capa) in show_fec_capability() argument
4752 rte_eth_link_speed_to_str(speed_fec_capa[i].speed)); in show_fec_capability()
4756 speed_fec_capa[i].capa) in show_fec_capability()
H A Dcmdline.c17094 struct rte_eth_fec_capa *speed_fec_capa; in cmd_show_fec_capability_parsed() local
17113 speed_fec_capa = calloc(num, sizeof(*speed_fec_capa)); in cmd_show_fec_capability_parsed()
17114 if (speed_fec_capa == NULL) { in cmd_show_fec_capability_parsed()
17119 ret = rte_eth_fec_get_capability(res->cmd_pid, speed_fec_capa, num); in cmd_show_fec_capability_parsed()
17125 show_fec_capability(num, speed_fec_capa); in cmd_show_fec_capability_parsed()
17127 free(speed_fec_capa); in cmd_show_fec_capability_parsed()