Home
last modified time | relevance | path

Searched refs:ref_port_id (Results 1 – 2 of 2) sorted by relevance

/dpdk/lib/ethdev/
H A Drte_ethdev.h2257 rte_eth_find_next_sibling(uint16_t port_id_start, uint16_t ref_port_id);
2269 #define RTE_ETH_FOREACH_DEV_SIBLING(port_id, ref_port_id) \ argument
2270 for (port_id = rte_eth_find_next_sibling(0, ref_port_id); \
2272 port_id = rte_eth_find_next_sibling(port_id + 1, ref_port_id))
H A Drte_ethdev.c365 rte_eth_find_next_sibling(uint16_t port_id, uint16_t ref_port_id) in rte_eth_find_next_sibling() argument
367 RTE_ETH_VALID_PORTID_OR_ERR_RET(ref_port_id, RTE_MAX_ETHPORTS); in rte_eth_find_next_sibling()
369 rte_eth_devices[ref_port_id].device); in rte_eth_find_next_sibling()