Re: [dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-21 Thread Ferruh Yigit
] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD Hi Damo, Could you please respond to Ferruh's question? Regards, Kalesh On Thu, Jun 16, 2022 at 10:33 PM Ferruh Yigit <mailto:ferruh.yi...@xilinx.com>> wrote: On 6/15/2022 3:56 PM, Kalesh A P wrote:

RE: [dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-20 Thread Damodharam Ammepalli
Hi Ferruh, Please see my inline responses [Damo]; Thanks Damo From: Kalesh Anakkur Purayil Sent: Monday, June 20, 2022 9:47 PM To: Ferruh Yigit ; Damodharam Ammepalli Cc: Ajit Kumar Khaparde ; dpdk-dev Subject: Re: [dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs

Re: [dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-20 Thread Kalesh Anakkur Purayil
Hi Damo, Could you please respond to Ferruh's question? Regards, Kalesh On Thu, Jun 16, 2022 at 10:33 PM Ferruh Yigit wrote: > On 6/15/2022 3:56 PM, Kalesh A P wrote: > > > > > From: Damodharam Ammepalli > > > > Currently, we fail the init/probe of pmd if eth_dev->data->nb_tx_queues > > or et

Re: [dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-16 Thread Ferruh Yigit
On 6/15/2022 3:56 PM, Kalesh A P wrote: From: Damodharam Ammepalli Currently, we fail the init/probe of pmd if eth_dev->data->nb_tx_queues or eth_dev->data->nb_rx_queues is 0. We are removing this check. Is there a valid usecase for Rx only or Tx only config? I assume testpmd doesn't suppo

[dpdk-dev] [PATCH 4/8] net/bnxt: allow Tx only or Rx only configs in PMD

2022-06-15 Thread Kalesh A P
From: Damodharam Ammepalli Currently, we fail the init/probe of pmd if eth_dev->data->nb_tx_queues or eth_dev->data->nb_rx_queues is 0. We are removing this check. Fixes: daef48efe5e5 ("net/bnxt: support set MTU") Cc: sta...@dpdk.org Signed-off-by: Damodharam Ammepalli Reviewed-by: Ajit Khapar