Re: [dpdk-dev] [PATCH 5/7] ethdev: use hairpin helper functions

2020-08-29 Thread Andrew Rybchenko
On 8/24/20 12:40 PM, Ferruh Yigit wrote: > Hairpin helper functions were not used by drivers, but it was used only > local to ethdev. They are: > 'rte_eth_dev_is_rx_hairpin_queue()' > 'rte_eth_dev_is_tx_hairpin_queue()' > > Exposing them as internal APIs and update mlx5 driver (only user of > hair

[dpdk-dev] [PATCH 5/7] ethdev: use hairpin helper functions

2020-08-24 Thread Ferruh Yigit
Hairpin helper functions were not used by drivers, but it was used only local to ethdev. They are: 'rte_eth_dev_is_rx_hairpin_queue()' 'rte_eth_dev_is_tx_hairpin_queue()' Exposing them as internal APIs and update mlx5 driver (only user of hairpin) to use them. Signed-off-by: Ferruh Yigit --- dr