Re: [dpdk-dev] [PATCH v3 2/4] devargs: simplify parameters of removal function

2018-10-01 Thread Thomas Monjalon
01/10/2018 13:25, Andrew Rybchenko: > On 9/28/18 7:21 PM, Thomas Monjalon wrote: > > The function rte_devargs_remove(), which is intended to be internal, > > can take a devargs structure as argument. > > The matching is still using string comparison of bus name and > > device name. > > It is simple

Re: [dpdk-dev] [PATCH v3 2/4] devargs: simplify parameters of removal function

2018-10-01 Thread Andrew Rybchenko
On 9/28/18 7:21 PM, Thomas Monjalon wrote: The function rte_devargs_remove(), which is intended to be internal, can take a devargs structure as argument. The matching is still using string comparison of bus name and device name. It is simpler and may allow a different devargs matching in future.

[dpdk-dev] [PATCH v3 2/4] devargs: simplify parameters of removal function

2018-09-28 Thread Thomas Monjalon
The function rte_devargs_remove(), which is intended to be internal, can take a devargs structure as argument. The matching is still using string comparison of bus name and device name. It is simpler and may allow a different devargs matching in future. Signed-off-by: Thomas Monjalon --- drivers