patches for DPDK stable branches
 help / color / mirror / Atom feed
From: Christian Ehrhardt <christian.ehrhardt@canonical.com>
To: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
Cc: Somnath Kotur <somnath.kotur@broadcom.com>,
	Ajit Khaparde <ajit.khaparde@broadcom.com>,
	dpdk stable <stable@dpdk.org>
Subject: [dpdk-stable] patch 'net/bnxt: fix max rings computation' has been queued to stable release 19.11.7
Date: Thu,  4 Feb 2021 12:29:39 +0100	[thread overview]
Message-ID: <20210204112954.2488123-124-christian.ehrhardt@canonical.com> (raw)
In-Reply-To: <20210204112954.2488123-1-christian.ehrhardt@canonical.com>

Hi,

FYI, your patch has been queued to stable release 19.11.7

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 02/06/21. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Queued patches are on a temporary branch at:
https://github.com/cpaelzer/dpdk-stable-queue

This queued commit can be viewed at:
https://github.com/cpaelzer/dpdk-stable-queue/commit/aa28e799271805406646dd6834a2001ace7eb80d

Thanks.

Christian Ehrhardt <christian.ehrhardt@canonical.com>

---
From aa28e799271805406646dd6834a2001ace7eb80d Mon Sep 17 00:00:00 2001
From: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
Date: Fri, 28 Aug 2020 07:13:22 -0400
Subject: [PATCH] net/bnxt: fix max rings computation

[ upstream commit c72fe7ac3b63629f1f46e4d91d9abc0d7c064d93 ]

The current max_rings computation does not take into account the case
when max_nq_rings is <= num_async_cpr. This results in a wrong value
like 0, when max_nq_rings is 1. Fix this by subtracting num_async_cpr
only when max_cp_rings > num_async_cpr.

Apart from this, the entire logic is currently spread across a few
macros, making it hard to read and debug this code. Move this code
into an inline function.

max_msix is not used in the max_rings calculation.
Apparently the max_msix field returned in HWRM_RESC_QCAPS is only valid
for Thor and newer chips. On Wh+ it will be equal to min_compl_rings.
Also, when a function reset is performed on an application quit, FW
will not reset the VF resource pool as per design.
This can lead to a strange condition wherein the max_msix field
on Wh+ keeps changing on each application re-load thereby throwing
throwing off the max_rings computation.

Fixes: f03e66cb64ce ("net/bnxt: limit queue count for NS3/Stingray devices")

Signed-off-by: Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
Reviewed-by: Ajit Khaparde <ajit.khaparde@broadcom.com>
---
 drivers/net/bnxt/bnxt.h        | 41 +++++++++++++++++++++++-----------
 drivers/net/bnxt/bnxt_ethdev.c |  2 +-
 drivers/net/bnxt/bnxt_rxq.c    |  7 +++---
 drivers/net/bnxt/bnxt_txq.c    |  2 +-
 4 files changed, 34 insertions(+), 18 deletions(-)

diff --git a/drivers/net/bnxt/bnxt.h b/drivers/net/bnxt/bnxt.h
index 940b41767c..0a0ecaafa8 100644
--- a/drivers/net/bnxt/bnxt.h
+++ b/drivers/net/bnxt/bnxt.h
@@ -620,19 +620,6 @@ struct bnxt {
 	uint16_t		max_tx_rings;
 	uint16_t		max_rx_rings;
 #define MAX_STINGRAY_RINGS		128U
-/* For sake of symmetry, max Tx rings == max Rx rings, one stat ctx for each */
-#define BNXT_MAX_RX_RINGS(bp) \
-	(BNXT_STINGRAY(bp) ? RTE_MIN(RTE_MIN(bp->max_rx_rings / 2U, \
-					     MAX_STINGRAY_RINGS), \
-				     bp->max_stat_ctx / 2U) : \
-				RTE_MIN(bp->max_rx_rings / 2U, \
-					bp->max_stat_ctx / 2U))
-#define BNXT_MAX_TX_RINGS(bp) \
-	(RTE_MIN((bp)->max_tx_rings, BNXT_MAX_RX_RINGS(bp)))
-
-#define BNXT_MAX_RINGS(bp) \
-	(RTE_MIN((((bp)->max_cp_rings - BNXT_NUM_ASYNC_CPR(bp)) / 2U), \
-		 BNXT_MAX_TX_RINGS(bp)))
 	uint16_t		max_nq_rings;
 	uint16_t		max_l2_ctx;
 	uint16_t		max_rx_em_flows;
@@ -668,6 +655,34 @@ struct bnxt {
 	struct bnxt_error_recovery_info *recovery_info;
 };
 
+static
+inline uint16_t bnxt_max_rings(struct bnxt *bp)
+{
+	uint16_t max_tx_rings = bp->max_tx_rings;
+	uint16_t max_rx_rings = bp->max_rx_rings;
+	uint16_t max_cp_rings = bp->max_cp_rings;
+	uint16_t max_rings;
+
+	/* For the sake of symmetry:
+	 * max Tx rings == max Rx rings, one stat ctx for each.
+	 */
+	if (BNXT_STINGRAY(bp)) {
+		max_rx_rings = RTE_MIN(RTE_MIN(max_rx_rings / 2U,
+					       MAX_STINGRAY_RINGS),
+				       bp->max_stat_ctx / 2U);
+	} else {
+		max_rx_rings = RTE_MIN(max_rx_rings / 2U,
+				       bp->max_stat_ctx / 2U);
+	}
+
+	max_tx_rings = RTE_MIN(max_tx_rings, max_rx_rings);
+	if (max_cp_rings > BNXT_NUM_ASYNC_CPR(bp))
+		max_cp_rings -= BNXT_NUM_ASYNC_CPR(bp);
+	max_rings = RTE_MIN(max_cp_rings / 2U, max_tx_rings);
+
+	return max_rings;
+}
+
 int bnxt_mtu_set_op(struct rte_eth_dev *eth_dev, uint16_t new_mtu);
 int bnxt_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete,
 		     bool exp_link_status);
diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnxt_ethdev.c
index 0279eeba8f..b499ca5a00 100644
--- a/drivers/net/bnxt/bnxt_ethdev.c
+++ b/drivers/net/bnxt/bnxt_ethdev.c
@@ -526,7 +526,7 @@ static int bnxt_dev_info_get_op(struct rte_eth_dev *eth_dev,
 	if (BNXT_PF(bp))
 		dev_info->max_vfs = pdev->max_vfs;
 
-	max_rx_rings = BNXT_MAX_RINGS(bp);
+	max_rx_rings = bnxt_max_rings(bp);
 	/* For the sake of symmetry, max_rx_queues = max_tx_queues */
 	dev_info->max_rx_queues = max_rx_rings;
 	dev_info->max_tx_queues = max_rx_rings;
diff --git a/drivers/net/bnxt/bnxt_rxq.c b/drivers/net/bnxt/bnxt_rxq.c
index d3a5ef5677..df00191c09 100644
--- a/drivers/net/bnxt/bnxt_rxq.c
+++ b/drivers/net/bnxt/bnxt_rxq.c
@@ -304,7 +304,7 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
 	if (rc)
 		return rc;
 
-	if (queue_idx >= BNXT_MAX_RINGS(bp)) {
+	if (queue_idx >= bnxt_max_rings(bp)) {
 		PMD_DRV_LOG(ERR,
 			"Cannot create Rx ring %d. Only %d rings available\n",
 			queue_idx, bp->max_rx_rings);
@@ -356,8 +356,9 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
 
 	eth_dev->data->rx_queues[queue_idx] = rxq;
 	/* Allocate RX ring hardware descriptors */
-	if (bnxt_alloc_rings(bp, queue_idx, NULL, rxq, rxq->cp_ring, NULL,
-			     "rxr")) {
+	rc = bnxt_alloc_rings(bp, queue_idx, NULL, rxq, rxq->cp_ring, NULL,
+			     "rxr");
+	if (rc) {
 		PMD_DRV_LOG(ERR,
 			    "ring_dma_zone_reserve for rx_ring failed!\n");
 		goto err;
diff --git a/drivers/net/bnxt/bnxt_txq.c b/drivers/net/bnxt/bnxt_txq.c
index 160e841576..78625eef60 100644
--- a/drivers/net/bnxt/bnxt_txq.c
+++ b/drivers/net/bnxt/bnxt_txq.c
@@ -98,7 +98,7 @@ int bnxt_tx_queue_setup_op(struct rte_eth_dev *eth_dev,
 	if (rc)
 		return rc;
 
-	if (queue_idx >= BNXT_MAX_RINGS(bp)) {
+	if (queue_idx >= bnxt_max_rings(bp)) {
 		PMD_DRV_LOG(ERR,
 			"Cannot create Tx ring %d. Only %d rings available\n",
 			queue_idx, bp->max_tx_rings);
-- 
2.30.0

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2021-02-04 12:04:33.088997661 +0100
+++ 0124-net-bnxt-fix-max-rings-computation.patch	2021-02-04 12:04:28.186789880 +0100
@@ -1 +1 @@
-From c72fe7ac3b63629f1f46e4d91d9abc0d7c064d93 Mon Sep 17 00:00:00 2001
+From aa28e799271805406646dd6834a2001ace7eb80d Mon Sep 17 00:00:00 2001
@@ -5,0 +6,2 @@
+[ upstream commit c72fe7ac3b63629f1f46e4d91d9abc0d7c064d93 ]
+
@@ -25 +26,0 @@
-Cc: stable@dpdk.org
@@ -38 +39 @@
-index 9c1c87489e..bc0935272a 100644
+index 940b41767c..0a0ecaafa8 100644
@@ -41 +42 @@
-@@ -752,19 +752,6 @@ struct bnxt {
+@@ -620,19 +620,6 @@ struct bnxt {
@@ -58,5 +59,5 @@
- 
- #define BNXT_MAX_VF_REP_RINGS	8
- 
-@@ -822,6 +809,34 @@ struct bnxt {
- 	uint16_t		tx_cfa_action;
+ 	uint16_t		max_nq_rings;
+ 	uint16_t		max_l2_ctx;
+ 	uint16_t		max_rx_em_flows;
+@@ -668,6 +655,34 @@ struct bnxt {
+ 	struct bnxt_error_recovery_info *recovery_info;
@@ -93,3 +94,3 @@
- #define BNXT_FC_TIMER	1 /* Timer freq in Sec Flow Counters */
- 
- /**
+ int bnxt_mtu_set_op(struct rte_eth_dev *eth_dev, uint16_t new_mtu);
+ int bnxt_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete,
+ 		     bool exp_link_status);
@@ -97 +98 @@
-index 0b14ca2342..bf89635776 100644
+index 0279eeba8f..b499ca5a00 100644
@@ -100 +101 @@
-@@ -920,7 +920,7 @@ static int bnxt_dev_info_get_op(struct rte_eth_dev *eth_dev,
+@@ -526,7 +526,7 @@ static int bnxt_dev_info_get_op(struct rte_eth_dev *eth_dev,
@@ -110 +111 @@
-index 328cc994da..19e11e47bf 100644
+index d3a5ef5677..df00191c09 100644
@@ -113 +114 @@
-@@ -311,7 +311,7 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
+@@ -304,7 +304,7 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
@@ -122 +123 @@
-@@ -364,8 +364,9 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
+@@ -356,8 +356,9 @@ int bnxt_rx_queue_setup_op(struct rte_eth_dev *eth_dev,
@@ -135 +136 @@
-index c9792a2af2..99a31cef28 100644
+index 160e841576..78625eef60 100644

  parent reply	other threads:[~2021-02-04 11:38 UTC|newest]

Thread overview: 166+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-04 11:27 [dpdk-stable] patch 'rib: fix insertion in some cases' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'app/procinfo: fix _filters stats reporting' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'app/procinfo: fix check on xstats-ids' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'app/procinfo: remove useless memset' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/pcap: remove local variable shadowing outer one' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bonding: " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/af_xdp: remove useless assignment' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'app/crypto-perf: remove always true condition' " Christian Ehrhardt
2021-02-04 13:00   ` Zhang, Roy Fan
2021-02-04 13:12     ` Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/avp: " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'eal/linux: fix handling of error events from epoll' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bonding: fix port id validity check on parsing' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: fix memory leak when mapping fails' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: disable end of packet padding for Rx' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/ice: fix outer UDP Tx checksum offload' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/i40e: fix L4 checksum flag' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/i40e: fix global register recovery' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/ixgbe: detect failed VF MTU set' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: fix Rx rings in RSS redirection table' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: fix VNIC config on Rx queue stop' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: release HWRM lock in error' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: propagate FW command failure to application' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: fix cleanup on mutex init failure' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/bnxt: fix VNIC RSS configure function' " Christian Ehrhardt
2021-02-04 11:27 ` [dpdk-stable] patch 'net/netvsc: ignore unsupported packet on sync command' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/bonding: fix PCI address comparison on non-PCI ports' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix stats counters' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix VLAN stripping in VF' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ixgbe: fix flex bytes flow director rule' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix Rx bytes statistics' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice: check Rx queue number on RSS init' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice/base: fix tunnel destroy' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice/base: fix null pointer dereference' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/virtio-user: fix run closing stdin and close callfd' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice/base: fix memory handling' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix returned code for RSS hardware failure' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'lpm: fix vector IPv4 lookup' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/octeontx: fix build with SVE' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice: fix RSS lookup table initialization' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice: disable IPv4 checksum offload in vector Tx' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ice: enlarge Rx queue rearm threshold to 64' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: add null input checks' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/mvneta: check allocation in Rx queue flush' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/octeontx2: fix corruption in segments list' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'common/mlx5: fix pointer cast on Windows' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'ip_frag: remove padding length of fragment' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'test/mcslock: remove unneeded per lcore copy' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'test: fix buffer overflow in Tx burst' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'fbarray: fix overlap check' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'examples/l3fwd: remove limitation on Tx queue count' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'app/crypto-perf: fix spelling in output' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix X722 for 802.1ad frames ability' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: fix interception with flow director' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: fix error code in xstats' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/qede: fix promiscuous enable' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'ethdev: fix max Rx packet length check' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'app/testpmd: fix max Rx packet length for VLAN packets' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/dpaa: fix jumbo frame flag condition for MTU set' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/e1000: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/i40e: fix jumbo frame flag condition' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/iavf: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/ipn3ke: fix jumbo frame flag condition for MTU set' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/octeontx2: fix jumbo frame flag condition for MTU' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/qede: fix jumbo frame flag condition for MTU set' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/sfc: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/thunderx: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/cxgbe: fix jumbo frame flag condition' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/enetc: fix jumbo frame flag condition for MTU set' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/nfp: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/liquidio: " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'app/testpmd: fix IP checksum calculation' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: fix VF query link status in dev init' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: use new opcode for clearing hardware resource' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'net/hns3: fix register length when dumping registers' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'build: provide suitable error for "both" libraries option' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'eal: fix reciprocal header include' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'ethdev: fix missing " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'rib: fix missing header includes' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'ipsec: fix missing header include' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'fib: fix missing header includes' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'app: fix build with extra include paths' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'eal/arm: fix debug build with gcc for 128-bit atomics' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'test/distributor: fix return buffer queue overload' " Christian Ehrhardt
2021-02-04 11:28 ` [dpdk-stable] patch 'power: create guest channel public header file' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: make channel message functions public' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: rename public structs' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: rename constants' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: clean up includes' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/eventdev: adjust event count order for pipeline test' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/eventdev: remove redundant enqueue in burst Tx' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'examples/eventdev: add info output for main core' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/eventdev: fix SMP barrier in performance test' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'test/event_crypto: set cipher operation in transform' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/crypto-perf: fix latency CSV output' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/crypto-perf: fix CSV output format' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'test/ipsec: fix result code for not supported' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'crypto/dpaa2_sec: fix memory allocation check' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'eal: fix MCS lock header include' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: fix missing header includes' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'rib: fix missing header include' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/e1000: fix flow control mode setting' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mlx4: fix handling of probing failure' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/bnxt: fix FW version log' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/testpmd: fix key for RSS flow rule' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/bnxt: fix null termination of Rx mbuf chain' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/octeontx2: fix PF flow action for Tx' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mlx5: refuse empty VLAN in flow pattern' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'doc: update flow mark action in mlx5 guide' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mlx4: fix port attach in secondary process' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/ixgbe: disable NFS filtering' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/sfc: fix generic byte statistics to exclude FCS bytes' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mvpp2: fix stack corruption' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mvpp2: remove debug log on fast-path' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mvpp2: remove VLAN flush' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mvpp2: remove CRC length from MRU validation' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mvpp2: fix frame size checking' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/hns3: adjust format specifier for enum' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/testpmd: avoid exit without terminal restore' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/nfp: read chip model from PluDevice register' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/ena: flush Rx buffers memory pool cache' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/iavf: fix vector mapping with queue' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'build: fix plugin load on static build' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'mbuf: add C++ include guard for dynamic fields header' " Christian Ehrhardt
2021-02-04 11:29 ` Christian Ehrhardt [this message]
2021-02-04 11:29 ` [dpdk-stable] patch 'app/testpmd: release flows left before port stop' " Christian Ehrhardt
2021-03-09  8:33   ` Ali Alnubani
2021-03-10  9:34     ` Christian Ehrhardt
2021-03-10 10:02       ` Gregory Etelson
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mlx5: fix leak on Rx queue creation failure' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/mlx5: fix leak on Tx " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'build: fix linker flags on Windows' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'common/octeontx2: fix build with SVE' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'test: fix terminal settings on exit' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/dpaa2: fix jumbo frame flag condition for MTU set' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/hns3: fix data overwriting during register dump' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/hns3: fix dump register out of range' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'mbuf: fix missing header include' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'power: export guest channel header file' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'examples/eventdev: check CPU core enabling' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'examples/eventdev: move ethdev stop to the end' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'net/hns3: fix memory leak on secondary process exit' " Christian Ehrhardt
2021-02-04 11:29 ` [dpdk-stable] patch 'app/testpmd: fix setting maximum packet length' " Christian Ehrhardt
2021-02-08 11:14 ` [dpdk-stable] patch 'net/mlx5: fix crash on secondary process port close' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/mlx5: fix port attach in secondary process' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'doc: fix QinQ flow rules in testpmd guide' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/enic: fix filter type used for flow API' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'doc: fix product link in hns3 guide' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/sfc: fix TSO and checksum offloads for EF10' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'vhost: fix vid allocation race' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/hns3: remove MPLS from supported flow items' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/hns3: fix flow director rule residue on malloc failure' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/hns3: fix firmware exceptions by concurrent commands' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/hns3: fix VF reset on mailbox failure' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/hns3: validate requested maximum Rx frame length' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/pcap: fix byte stats for drop Tx' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/pcap: fix infinite Rx with large files' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'net/enic: fix filter log message' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'eventdev: fix a return value comment' " Christian Ehrhardt
2021-02-08 11:14   ` [dpdk-stable] patch 'mempool: fix panic on dump or audit' " Christian Ehrhardt
2021-02-15 13:28 ` [dpdk-stable] patch 'net/ixgbe: fix UDP zero checksum on x86' " Christian Ehrhardt
2021-02-15 13:28   ` [dpdk-stable] patch 'vhost: fix packed ring dequeue offloading' " Christian Ehrhardt
2021-02-15 13:28   ` [dpdk-stable] patch 'doc: fix mark action zero value in mlx5 guide' " Christian Ehrhardt
2021-02-15 13:28   ` [dpdk-stable] patch 'app/testpmd: fix help of metering commands' " Christian Ehrhardt
2021-02-15 13:28   ` [dpdk-stable] patch 'usertools: fix binding built-in kernel driver' " Christian Ehrhardt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210204112954.2488123-124-christian.ehrhardt@canonical.com \
    --to=christian.ehrhardt@canonical.com \
    --cc=ajit.khaparde@broadcom.com \
    --cc=somnath.kotur@broadcom.com \
    --cc=sriharsha.basavapatna@broadcom.com \
    --cc=stable@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).