]> git.droids-corp.org - dpdk.git/commitdiff
net/hns3: remove logging memory addresses
authorHuisong Li <lihuisong@huawei.com>
Sat, 22 Jan 2022 01:51:36 +0000 (09:51 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Thu, 27 Jan 2022 13:39:13 +0000 (14:39 +0100)
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
drivers/net/hns3/hns3_rxtx.c

index 5b42d38aa538d4080bd92aba5808ade513e04fb6..5dc874fd7aa9e8711f89645a26ae61a3bbe180d0 100644 (file)
@@ -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
index c43131cac68bcbfb5df23d642fe5c07f5701e1be..3b72c2375a60ff3fdf09ca512322f186035058f2 100644 (file)
@@ -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++) {