Re: [dpdk-dev] [PATCH v6 2/2] ethdev: change queue release callback

2021-10-03 Thread Ajit Khaparde
On Sun, Oct 3, 2021 at 12:38 AM Matan Azrad wrote: > > > From: Xueming(Steven) Li > > Currently, most ethdev callback API use queue ID as parameter, but Rx > > and Tx queue release callback use queue object which is used by Rx and > > Tx burst data plane callback. > > > > To align with other eth

Re: [dpdk-dev] [PATCH v6 2/2] ethdev: change queue release callback

2021-10-03 Thread Matan Azrad
From: Xueming(Steven) Li > Currently, most ethdev callback API use queue ID as parameter, but Rx > and Tx queue release callback use queue object which is used by Rx and > Tx burst data plane callback. > > To align with other eth device queue configuration callbacks: > - queue release callbacks

[dpdk-dev] [PATCH v6 2/2] ethdev: change queue release callback

2021-09-30 Thread Xueming Li
Currently, most ethdev callback API use queue ID as parameter, but Rx and Tx queue release callback use queue object which is used by Rx and Tx burst data plane callback. To align with other eth device queue configuration callbacks: - queue release callbacks are changed to use queue ID - all drive