Re: [dpdk-dev] [PATCH v7 0/7] replace attach/detach functions

2018-10-23 Thread Ferruh Yigit
On 10/23/2018 9:28 AM, Thomas Monjalon wrote: > The functions for EAL attach/detach had already some replacements, > so they are removed. > The functions for ethdev attach/detach are removed and replaced > thanks to a new ethdev iterator working with devargs. > > rte_eth_dev_attach(devargs, &p

[dpdk-dev] [PATCH v7 0/7] replace attach/detach functions

2018-10-23 Thread Thomas Monjalon
The functions for EAL attach/detach had already some replacements, so they are removed. The functions for ethdev attach/detach are removed and replaced thanks to a new ethdev iterator working with devargs. rte_eth_dev_attach(devargs, &port_id) is replaced by: rte_dev_probe(devargs); RT