Re: [dpdk-dev] [PATCH v3] ethdev: fix representor port ID search by name

2021-08-31 Thread Andrew Rybchenko
On 8/20/21 3:18 PM, Andrew Rybchenko wrote: > From: Viacheslav Galaktionov > > Getting a list of representors from a representor does not make sense. > Instead, a parent device should be used. > > To this end, extend the rte_eth_dev_data structure to include the port ID > of the parent device fo

[dpdk-dev] [PATCH v3] ethdev: fix representor port ID search by name

2021-08-20 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Getting a list of representors from a representor does not make sense. Instead, a parent device should be used. To this end, extend the rte_eth_dev_data structure to include the port ID of the parent device for representors. Signed-off-by: Viacheslav Galaktionov Si