Signed-off-by: speech_white <humin29@huawei.com> (cherry picked from commit cde27f08d4dbefb7f03bfca6229f95cb88bf08a2)
80 lines
2.5 KiB
Diff
80 lines
2.5 KiB
Diff
From 5608b54756d91505e66e58c2562601b3f7e2fe80 Mon Sep 17 00:00:00 2001
|
|
From: Huisong Li <lihuisong@huawei.com>
|
|
Date: Sat, 22 Jan 2022 09:51:36 +0800
|
|
Subject: [PATCH] net/hns3: remove logging memory addresses
|
|
|
|
Remove the printing of memory addresses.
|
|
|
|
Signed-off-by: Huisong Li <lihuisong@huawei.com>
|
|
Acked-by: Min Hu (Connor) <humin29@huawei.com>
|
|
---
|
|
drivers/net/hns3/hns3_cmd.c | 12 ++++--------
|
|
drivers/net/hns3/hns3_rxtx.c | 6 ------
|
|
2 files changed, 4 insertions(+), 14 deletions(-)
|
|
|
|
diff --git a/drivers/net/hns3/hns3_cmd.c b/drivers/net/hns3/hns3_cmd.c
|
|
index 5b42d38aa5..5dc874fd7a 100644
|
|
--- a/drivers/net/hns3/hns3_cmd.c
|
|
+++ b/drivers/net/hns3/hns3_cmd.c
|
|
@@ -60,18 +60,14 @@ hns3_allocate_dma_mem(struct hns3_hw *hw, struct hns3_cmq_ring *ring,
|
|
ring->desc = mz->addr;
|
|
ring->desc_dma_addr = mz->iova;
|
|
ring->zone = (const void *)mz;
|
|
- hns3_dbg(hw, "memzone %s allocated with physical address: %" PRIu64,
|
|
- mz->name, ring->desc_dma_addr);
|
|
+ hns3_dbg(hw, "cmd ring memzone name: %s", mz->name);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
-hns3_free_dma_mem(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
|
|
+hns3_free_dma_mem(struct hns3_cmq_ring *ring)
|
|
{
|
|
- hns3_dbg(hw, "memzone %s to be freed with physical address: %" PRIu64,
|
|
- ((const struct rte_memzone *)ring->zone)->name,
|
|
- ring->desc_dma_addr);
|
|
rte_memzone_free((const struct rte_memzone *)ring->zone);
|
|
ring->buf_size = 0;
|
|
ring->desc = NULL;
|
|
@@ -93,10 +89,10 @@ hns3_alloc_cmd_desc(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
|
|
}
|
|
|
|
static void
|
|
-hns3_free_cmd_desc(struct hns3_hw *hw, struct hns3_cmq_ring *ring)
|
|
+hns3_free_cmd_desc(__rte_unused struct hns3_hw *hw, struct hns3_cmq_ring *ring)
|
|
{
|
|
if (ring->desc)
|
|
- hns3_free_dma_mem(hw, ring);
|
|
+ hns3_free_dma_mem(ring);
|
|
}
|
|
|
|
static int
|
|
diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c
|
|
index c43131cac6..3b72c2375a 100644
|
|
--- a/drivers/net/hns3/hns3_rxtx.c
|
|
+++ b/drivers/net/hns3/hns3_rxtx.c
|
|
@@ -1382,9 +1382,6 @@ hns3_alloc_rxq_and_dma_zone(struct rte_eth_dev *dev,
|
|
rxq->rx_ring = (struct hns3_desc *)rx_mz->addr;
|
|
rxq->rx_ring_phys_addr = rx_mz->iova;
|
|
|
|
- hns3_dbg(hw, "No.%u rx descriptors iova 0x%" PRIx64, q_info->idx,
|
|
- rxq->rx_ring_phys_addr);
|
|
-
|
|
return rxq;
|
|
}
|
|
|
|
@@ -1469,9 +1466,6 @@ hns3_alloc_txq_and_dma_zone(struct rte_eth_dev *dev,
|
|
txq->tx_ring = (struct hns3_desc *)tx_mz->addr;
|
|
txq->tx_ring_phys_addr = tx_mz->iova;
|
|
|
|
- hns3_dbg(hw, "No.%u tx descriptors iova 0x%" PRIx64, q_info->idx,
|
|
- txq->tx_ring_phys_addr);
|
|
-
|
|
/* Clear tx bd */
|
|
desc = txq->tx_ring;
|
|
for (i = 0; i < txq->nb_tx_desc; i++) {
|
|
--
|
|
2.33.0
|
|
|