]> git.droids-corp.org - dpdk.git/commitdiff
mem: add contig walk function
authorAnatoly Burakov <anatoly.burakov@intel.com>
Wed, 11 Apr 2018 12:30:09 +0000 (13:30 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 11 Apr 2018 17:53:38 +0000 (19:53 +0200)
This function is meant to walk over first segment of each
VA-contiguous group of memsegs.

For future users of this function, this is done so that
there is less dependency on internals of mem API and less
noise later change sets.

Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Tested-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
Tested-by: Hemant Agrawal <hemant.agrawal@nxp.com>
Tested-by: Gowrishankar Muthukrishnan <gowrishankar.m@linux.vnet.ibm.com>
lib/librte_eal/common/eal_common_memory.c
lib/librte_eal/common/include/rte_memory.h
lib/librte_eal/rte_eal_version.map

index 4f588c74bab29cdbb89495a708d39f09d76df920..4b528b04baa41e86582e9eef1e7e9152750cfd81 100644 (file)
@@ -242,6 +242,43 @@ rte_memseg_walk(rte_memseg_walk_t func, void *arg)
        return 0;
 }
 
+int __rte_experimental
+rte_memseg_contig_walk(rte_memseg_contig_walk_t func, void *arg)
+{
+       struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
+       int i, j, ret;
+
+       for (i = 0; i < RTE_MAX_MEMSEG; i++) {
+               const struct rte_memseg *ms = &mcfg->memseg[i];
+               size_t total_len;
+               void *end_addr;
+
+               if (ms->addr == NULL)
+                       continue;
+
+               end_addr = RTE_PTR_ADD(ms->addr, ms->len);
+
+               /* check how many more segments are contiguous to this one */
+               for (j = i + 1; j < RTE_MAX_MEMSEG; j++) {
+                       const struct rte_memseg *next = &mcfg->memseg[j];
+
+                       if (next->addr != end_addr)
+                               break;
+
+                       end_addr = RTE_PTR_ADD(next->addr, next->len);
+                       i++;
+               }
+               total_len = RTE_PTR_DIFF(end_addr, ms->addr);
+
+               ret = func(ms, total_len, arg);
+               if (ret < 0)
+                       return -1;
+               if (ret > 0)
+                       return 1;
+       }
+       return 0;
+}
+
 /* init memory subsystem */
 int
 rte_eal_memory_init(void)
index 93eadaaff745495eb4431adec1d6b3aecedab4b3..45d067fc572b3029a0361fcca7b893fe2838e3ec 100644 (file)
@@ -139,6 +139,18 @@ rte_iova_t rte_mem_virt2iova(const void *virt);
  */
 typedef int (*rte_memseg_walk_t)(const struct rte_memseg *ms, void *arg);
 
+/**
+ * Memseg contig walk function prototype. This will trigger a callback on every
+ * VA-contiguous are starting at memseg ``ms``, so total valid VA space at each
+ * callback call will be [``ms->addr``, ``ms->addr + len``).
+ *
+ * Returning 0 will continue walk
+ * Returning 1 will stop the walk
+ * Returning -1 will stop the walk and report error
+ */
+typedef int (*rte_memseg_contig_walk_t)(const struct rte_memseg *ms,
+               size_t len, void *arg);
+
 /**
  * Walk list of all memsegs.
  *
@@ -154,6 +166,21 @@ typedef int (*rte_memseg_walk_t)(const struct rte_memseg *ms, void *arg);
 int __rte_experimental
 rte_memseg_walk(rte_memseg_walk_t func, void *arg);
 
+/**
+ * Walk each VA-contiguous area.
+ *
+ * @param func
+ *   Iterator function
+ * @param arg
+ *   Argument passed to iterator
+ * @return
+ *   0 if walked over the entire list
+ *   1 if stopped by the user
+ *   -1 if user function reported error
+ */
+int __rte_experimental
+rte_memseg_contig_walk(rte_memseg_contig_walk_t func, void *arg);
+
 /**
  * Get the layout of the available physical memory.
  *
index 716b9656203ea5fa63c8f609ec1459be4c3d8f14..93033b56d384d9af57d3d6a7e036180ba43928cc 100644 (file)
@@ -223,6 +223,7 @@ EXPERIMENTAL {
        rte_eal_mbuf_user_pool_ops;
        rte_log_register_type_and_pick_level;
        rte_malloc_dump_heaps;
+       rte_memseg_contig_walk;
        rte_memseg_walk;
        rte_mp_action_register;
        rte_mp_action_unregister;