DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] net/i40e: fix Rx instability with vector mode
@ 2018-10-25  7:40 Beilei Xing
  2018-10-25 16:47 ` Zhang, Qi Z
  2018-10-26  6:33 ` [dpdk-dev] [PATCH v2] " Beilei Xing
  0 siblings, 2 replies; 14+ messages in thread
From: Beilei Xing @ 2018-10-25  7:40 UTC (permalink / raw)
  To: qi.z.zhang; +Cc: dev, stable

Previously, there is instability during vector Rx if descriptor
number is not power of 2, e.g. process hang and some Rx packets
are unexpectedly empty. That's because vector Rx mode assumes Rx
descriptor number is power of 2 when doing bit mask.
This patch allows vector mode only when the number of Rx descriptor
is power of 2.

Fixes: 8e109464c022 ("i40e: allow vector Rx and Tx usage")
Fixes: a3c83a2527e1 ("net/i40e: enable runtime queue setup")
Cc: stable@dpdk.org

Signed-off-by: Beilei Xing <beilei.xing@intel.com>
---
 doc/guides/nics/i40e.rst     |  7 +++++++
 drivers/net/i40e/i40e_rxtx.c | 18 +++++++++++++++++-
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst
index ab3928a..bfacbd1 100644
--- a/doc/guides/nics/i40e.rst
+++ b/doc/guides/nics/i40e.rst
@@ -172,6 +172,13 @@ Runtime Config Options
 
   -w 84:00.0,use-latest-supported-vec=1
 
+Vector RX Pre-conditions
+~~~~~~~~~~~~~~~~~~~~~~~~
+For Vector RX it is assumed that the number of descriptor rings will be a power
+of 2. With this pre-condition, the ring pointer can easily scroll back to the
+head after hitting the tail without a conditional check. In addition Vector RX
+can use this assumption to do a bit mask using ``ring_size - 1``.
+
 Driver compilation and testing
 ------------------------------
 
diff --git a/drivers/net/i40e/i40e_rxtx.c b/drivers/net/i40e/i40e_rxtx.c
index a827456..aa46d83 100644
--- a/drivers/net/i40e/i40e_rxtx.c
+++ b/drivers/net/i40e/i40e_rxtx.c
@@ -1735,10 +1735,17 @@ i40e_dev_rx_queue_setup_runtime(struct rte_eth_dev *dev,
 		 * i40e_set_rx_function.
 		 */
 		ad->rx_bulk_alloc_allowed = true;
-		ad->rx_vec_allowed = true;
 		dev->data->scattered_rx = use_scattered_rx;
 		if (use_def_burst_func)
 			ad->rx_bulk_alloc_allowed = false;
+		/**
+		 * Vector mode is allowed only when number of Rx queue
+		 * descriptor is a power of 2.
+		 */
+		if ((rxq->nb_rx_desc & (rxq->nb_rx_desc - 1)))
+			ad->rx_vec_allowed = false;
+		else
+			ad->rx_vec_allowed = true;
 		i40e_set_rx_function(dev);
 		return 0;
 	}
@@ -1811,6 +1818,15 @@ i40e_dev_rx_queue_setup(struct rte_eth_dev *dev,
 		return -EINVAL;
 	}
 
+	/**
+	 * Vector mode is allowed only when number of Rx queue
+	 * descriptor is a power of 2.
+	 */
+	if ((nb_desc & (nb_desc - 1)))
+		ad->rx_vec_allowed = false;
+	else
+		ad->rx_vec_allowed = true;
+
 	/* Free memory if needed */
 	if (dev->data->rx_queues[queue_idx]) {
 		i40e_dev_rx_queue_release(dev->data->rx_queues[queue_idx]);
-- 
2.5.5

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

end of thread, other threads:[~2018-11-05 15:53 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-25  7:40 [dpdk-dev] [PATCH] net/i40e: fix Rx instability with vector mode Beilei Xing
2018-10-25 16:47 ` Zhang, Qi Z
2018-10-26  6:33 ` [dpdk-dev] [PATCH v2] " Beilei Xing
2018-10-26  8:47   ` Ananyev, Konstantin
2018-10-26 15:41     ` Zhang, Qi Z
2018-10-29  1:48       ` Xing, Beilei
2018-10-26 11:11   ` Bruce Richardson
2018-10-26 15:49     ` Zhang, Qi Z
2018-11-01  5:53   ` [dpdk-dev] [PATCH v3] " Beilei Xing
2018-11-01 11:48     ` Ananyev, Konstantin
2018-11-01 13:13       ` Zhang, Qi Z
2018-11-05  3:18     ` [dpdk-dev] [PATCH v4] " Beilei Xing
2018-11-05 11:05       ` Ananyev, Konstantin
2018-11-05 15:53         ` Zhang, Qi Z

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).