DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue
@ 2018-05-10  2:22 Qi Zhang
  2018-05-10  8:37 ` Remy Horton
  0 siblings, 1 reply; 3+ messages in thread
From: Qi Zhang @ 2018-05-10  2:22 UTC (permalink / raw)
  To: remy.horton, ferruh.yigit; +Cc: dev, Qi Zhang, 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: 3be82f5cc5e ("ethdev: support PMD-tuned Tx/Rx parameters")
Signed-off-by: Qi Zhang <qi.z.zhang@ntel.com>
---

v2:
- directly copy to dev->data->dev_conf is not recommented, now we
  reconfigure every queues with same number

 app/test-pmd/testpmd.c | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index db23f23e5..cbf6d14a6 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -2467,12 +2467,8 @@ init_port_dcb_config(portid_t pid,
 		return retval;
 	port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
 
-	/**
-	 * Write the configuration into the device.
-	 * Set the numbers of RX & TX queues to 0, so
-	 * the RX & TX queues will not be setup.
-	 */
-	rte_eth_dev_configure(pid, 0, 0, &port_conf);
+	/* re-configure the device . */
+	rte_eth_dev_configure(pid, nb_rxq, nb_rxq, &port_conf);
 
 	rte_eth_dev_info_get(pid, &rte_port->dev_info);
 
-- 
2.13.6

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue
  2018-05-10  2:22 [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue Qi Zhang
@ 2018-05-10  8:37 ` Remy Horton
  2018-05-10 22:28   ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Remy Horton @ 2018-05-10  8:37 UTC (permalink / raw)
  To: Qi Zhang, ferruh.yigit; +Cc: dev, Qi Zhang


On 10/05/2018 03:22, Qi Zhang wrote:
[..]
> Fixes: 3be82f5cc5e ("ethdev: support PMD-tuned Tx/Rx parameters")
> Signed-off-by: Qi Zhang <qi.z.zhang@ntel.com>

Acked-by: Remy Horton <remy.horton@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue
  2018-05-10  8:37 ` Remy Horton
@ 2018-05-10 22:28   ` Ferruh Yigit
  0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2018-05-10 22:28 UTC (permalink / raw)
  To: Remy Horton, Qi Zhang; +Cc: dev, Qi Zhang

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 <qi.z.zhang@ntel.com>

Signed-off-by: Qi Zhang <qi.z.zhang@intel.com>
s/ntel/intel

> 
> Acked-by: Remy Horton <remy.horton@intel.com>

Applied to dpdk-next-net/master, thanks.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-05-10 22:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-10  2:22 [dpdk-dev] [PATCH v2] app/testpmd: fix device configure with zero queue Qi Zhang
2018-05-10  8:37 ` Remy Horton
2018-05-10 22:28   ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).