[dpdk-stable] patch 'net/mlx: remove debug messages on datapath' has been queued to LTS release 18.11.2

Kevin Traynor ktraynor at redhat.com
Tue Apr 30 19:00:58 CEST 2019


Hi,

FYI, your patch has been queued to LTS release 18.11.2

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 05/07/19. 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 can be viewed on a temporary branch at:
	https://github.com/kevintraynor/dpdk-stable-queue.git

Thanks.

Kevin Traynor

---
>From 379748c96818b8e8d5c6c740e203918e6b98eafc Mon Sep 17 00:00:00 2001
From: Yongseok Koh <yskoh at mellanox.com>
Date: Mon, 1 Apr 2019 14:17:52 -0700
Subject: [PATCH] net/mlx: remove debug messages on datapath

[ upstream commit 3d1f3c7c8343b43bbb78368cfca7f329b54a19f0 ]

Signed-off-by: Yongseok Koh <yskoh at mellanox.com>
Acked-by: Shahaf Shuler <shahafs at mellanox.com>
---
 drivers/net/mlx4/mlx4_mr.c | 4 ----
 drivers/net/mlx5/mlx5_mr.c | 6 ------
 2 files changed, 10 deletions(-)

diff --git a/drivers/net/mlx4/mlx4_mr.c b/drivers/net/mlx4/mlx4_mr.c
index e4be46ab2..0d83d81e6 100644
--- a/drivers/net/mlx4/mlx4_mr.c
+++ b/drivers/net/mlx4/mlx4_mr.c
@@ -1027,6 +1027,4 @@ mlx4_rx_addr2mr_bh(struct rxq *rxq, uintptr_t addr)
 	struct mlx4_priv *priv = rxq->priv;
 
-	DEBUG("Rx queue %u: miss on top-half, mru=%u, head=%u, addr=%p",
-	      rxq->stats.idx, mr_ctrl->mru, mr_ctrl->head, (void *)addr);
 	return mlx4_mr_addr2mr_bh(ETH_DEV(priv), mr_ctrl, addr);
 }
@@ -1049,6 +1047,4 @@ mlx4_tx_addr2mr_bh(struct txq *txq, uintptr_t addr)
 	struct mlx4_priv *priv = txq->priv;
 
-	DEBUG("Tx queue %u: miss on top-half, mru=%u, head=%u, addr=%p",
-	      txq->stats.idx, mr_ctrl->mru, mr_ctrl->head, (void *)addr);
 	return mlx4_mr_addr2mr_bh(ETH_DEV(priv), mr_ctrl, addr);
 }
diff --git a/drivers/net/mlx5/mlx5_mr.c b/drivers/net/mlx5/mlx5_mr.c
index d336a77e4..8aaa87dd6 100644
--- a/drivers/net/mlx5/mlx5_mr.c
+++ b/drivers/net/mlx5/mlx5_mr.c
@@ -1031,7 +1031,4 @@ mlx5_rx_addr2mr_bh(struct mlx5_rxq_data *rxq, uintptr_t addr)
 	struct mlx5_priv *priv = rxq_ctrl->priv;
 
-	DRV_LOG(DEBUG,
-		"Rx queue %u: miss on top-half, mru=%u, head=%u, addr=%p",
-		rxq_ctrl->idx, mr_ctrl->mru, mr_ctrl->head, (void *)addr);
 	return mlx5_mr_addr2mr_bh(ETH_DEV(priv), mr_ctrl, addr);
 }
@@ -1056,7 +1053,4 @@ mlx5_tx_addr2mr_bh(struct mlx5_txq_data *txq, uintptr_t addr)
 	struct mlx5_priv *priv = txq_ctrl->priv;
 
-	DRV_LOG(DEBUG,
-		"Tx queue %u: miss on top-half, mru=%u, head=%u, addr=%p",
-		txq_ctrl->idx, mr_ctrl->mru, mr_ctrl->head, (void *)addr);
 	return mlx5_mr_addr2mr_bh(ETH_DEV(priv), mr_ctrl, addr);
 }
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2019-04-30 17:58:13.967518634 +0100
+++ 0003-net-mlx-remove-debug-messages-on-datapath.patch	2019-04-30 17:58:13.749140967 +0100
@@ -1 +1 @@
-From 3d1f3c7c8343b43bbb78368cfca7f329b54a19f0 Mon Sep 17 00:00:00 2001
+From 379748c96818b8e8d5c6c740e203918e6b98eafc Mon Sep 17 00:00:00 2001
@@ -6 +6 @@
-Cc: stable at dpdk.org
+[ upstream commit 3d1f3c7c8343b43bbb78368cfca7f329b54a19f0 ]
@@ -16 +16 @@
-index 01894faec..0ba55fda0 100644
+index e4be46ab2..0d83d81e6 100644
@@ -19 +19 @@
-@@ -1040,6 +1040,4 @@ mlx4_rx_addr2mr_bh(struct rxq *rxq, uintptr_t addr)
+@@ -1027,6 +1027,4 @@ mlx4_rx_addr2mr_bh(struct rxq *rxq, uintptr_t addr)
@@ -26 +26 @@
-@@ -1062,6 +1060,4 @@ mlx4_tx_addr2mr_bh(struct txq *txq, uintptr_t addr)
+@@ -1049,6 +1047,4 @@ mlx4_tx_addr2mr_bh(struct txq *txq, uintptr_t addr)
@@ -34 +34 @@
-index 88484dd50..371887729 100644
+index d336a77e4..8aaa87dd6 100644
@@ -37 +37 @@
-@@ -1032,7 +1032,4 @@ mlx5_rx_addr2mr_bh(struct mlx5_rxq_data *rxq, uintptr_t addr)
+@@ -1031,7 +1031,4 @@ mlx5_rx_addr2mr_bh(struct mlx5_rxq_data *rxq, uintptr_t addr)
@@ -45 +45 @@
-@@ -1057,7 +1054,4 @@ mlx5_tx_addr2mr_bh(struct mlx5_txq_data *txq, uintptr_t addr)
+@@ -1056,7 +1053,4 @@ mlx5_tx_addr2mr_bh(struct mlx5_txq_data *txq, uintptr_t addr)


More information about the stable mailing list