Re: [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue

2018-05-10 Thread Ferruh Yigit
On 5/10/2018 9:37 AM, Remy Horton wrote: > > On 10/05/2018 03:22, Qi Zhang wrote: > [..] >> Fixes: 3be82f5cc5e ("ethdev: support PMD-tuned Tx/Rx parameters") >> Signed-off-by: Qi Zhang Signed-off-by: Qi Zhang s/ntel/intel > > Acked-by: Remy Horton Applied to dpdk-next-net/master, thanks.

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue

2018-05-10 Thread Remy Horton
On 10/05/2018 03:22, Qi Zhang wrote: [..] Fixes: 3be82f5cc5e ("ethdev: support PMD-tuned Tx/Rx parameters") Signed-off-by: Qi Zhang Acked-by: Remy Horton

[dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue

2018-05-09 Thread Qi Zhang
Setup number of Rx & Tx queues to 0 at rte_eth_dev_configure means take driver's default queue number, so if during a re-configureation previous queue number will be overwrite, this is not expected when we configure dcb. The patch fix it by re-confgure device with the original queue number. Fixes: