]> git.droids-corp.org - dpdk.git/commitdiff
bus/fslmc: remove unused internal symbol
authorHemant Agrawal <hemant.agrawal@nxp.com>
Fri, 15 May 2020 09:47:52 +0000 (15:17 +0530)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 19 May 2020 13:49:53 +0000 (15:49 +0200)
rte_dpaa2_memsegs is not being used by any other library
or even within bus.

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
doc/guides/rel_notes/deprecation.rst
drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c
drivers/bus/fslmc/portal/dpaa2_hw_pvt.h
drivers/bus/fslmc/rte_bus_fslmc_version.map

index 20aa745b7753fbb160a3247ef44a315c35c6bc74..cf8b1eb7b0a939868f3efc5f44b709f6645cf91d 100644 (file)
@@ -59,12 +59,6 @@ Deprecation Notices
   us extending existing enum/define.
   One solution can be using a fixed size array instead of ``.*MAX.*`` value.
 
-* dpaa2: removal of ``rte_dpaa2_memsegs`` structure which has been replaced
-  by a pa-va search library. This structure was earlier being used for holding
-  memory segments used by dpaa2 driver for faster pa->va translation. This
-  structure would be made internal (or removed if all dependencies are cleared)
-  in future releases.
-
 * ethdev: the legacy filter API, including
   ``rte_eth_dev_filter_supported()``, ``rte_eth_dev_filter_ctrl()`` as well
   as filter types MACVLAN, ETHERTYPE, FLEXIBLE, SYN, NTUPLE, TUNNEL, FDIR,
index 79b148f20b7c6f3c6e1d3aff29fd761fd591a907..d9619848d8c494d4cf3a799f297932a34f802819 100644 (file)
 #include "portal/dpaa2_hw_pvt.h"
 #include "portal/dpaa2_hw_dpio.h"
 
-/* List of all the memseg information locally maintained in dpaa2 driver. This
- * is to optimize the PA_to_VA searches until a better mechanism (algo) is
- * available.
- */
-struct dpaa2_memseg_list rte_dpaa2_memsegs
-       = TAILQ_HEAD_INITIALIZER(rte_dpaa2_memsegs);
 
 TAILQ_HEAD(dpbp_dev_list, dpaa2_dpbp_dev);
 static struct dpbp_dev_list dpbp_dev_list
index 4074995ed02b027511df464f53484fe69dd0dbab..4682a52998914e00bb9558ee0306d64aef89e011 100644 (file)
@@ -325,9 +325,6 @@ struct dpaa2_memseg {
        size_t len;
 };
 
-TAILQ_HEAD(dpaa2_memseg_list, dpaa2_memseg);
-extern struct dpaa2_memseg_list rte_dpaa2_memsegs;
-
 #ifdef RTE_LIBRTE_DPAA2_USE_PHYS_IOVA
 extern uint8_t dpaa2_virt_mode;
 static void *dpaa2_mem_ptov(phys_addr_t paddr) __rte_unused;
index 80da19a277e6a065df63f8910cdae88ba26e7a9a..69e7dc6ad9ad761dd39ef81e35cbe29c4ea284b5 100644 (file)
@@ -106,7 +106,6 @@ INTERNAL {
        rte_dpaa2_free_dpci_dev;
        rte_dpaa2_intr_disable;
        rte_dpaa2_intr_enable;
-       rte_dpaa2_memsegs;
        rte_fslmc_driver_register;
        rte_fslmc_driver_unregister;
        rte_fslmc_get_device_count;