]> git.droids-corp.org - dpdk.git/commitdiff
mem: add virt2memseg function
authorAnatoly Burakov <anatoly.burakov@intel.com>
Wed, 11 Apr 2018 12:30:15 +0000 (13:30 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 11 Apr 2018 17:54:44 +0000 (19:54 +0200)
This can be used as a virt2iova function that only looks up
memory that is owned by DPDK (as opposed to doing pagemap walks).
Using this will result in less dependency on internals of mem API.

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 ea3c5a724e2a3762b60abdef8e49b4d6873fdb63..fd78d2f453d444ca2d6d3979ef0be0c5f892d851 100644 (file)
@@ -161,6 +161,43 @@ rte_mem_iova2virt(rte_iova_t iova)
        return vi.virt;
 }
 
+struct virtms {
+       const void *virt;
+       struct rte_memseg *ms;
+};
+static int
+find_memseg(const struct rte_memseg *ms, void *arg)
+{
+       struct virtms *vm = arg;
+
+       if (arg >= ms->addr && arg < RTE_PTR_ADD(ms->addr, ms->len)) {
+               struct rte_memseg *memseg, *found_ms;
+               int idx;
+
+               memseg = rte_eal_get_configuration()->mem_config->memseg;
+               idx = ms - memseg;
+               found_ms = &memseg[idx];
+
+               vm->ms = found_ms;
+               return 1;
+       }
+       return 0;
+}
+
+__rte_experimental struct rte_memseg *
+rte_mem_virt2memseg(const void *addr)
+{
+       struct virtms vm;
+
+       memset(&vm, 0, sizeof(vm));
+
+       vm.virt = addr;
+
+       rte_memseg_walk(find_memseg, &vm);
+
+       return vm.ms;
+}
+
 static int
 physmem_size(const struct rte_memseg *ms, void *arg)
 {
index 5c60b91a5638b61c6a4ce6abe510ec9f570e764d..b3d7e618020ac120aeca448d1b608f081e4370d6 100644 (file)
@@ -142,6 +142,17 @@ rte_iova_t rte_mem_virt2iova(const void *virt);
 __rte_experimental void *
 rte_mem_iova2virt(rte_iova_t iova);
 
+/**
+ * Get memseg to which a particular virtual address belongs.
+ *
+ * @param virt
+ *   The virtual address.
+ * @return
+ *   Memseg pointer on success, or NULL on error.
+ */
+__rte_experimental struct rte_memseg *
+rte_mem_virt2memseg(const void *virt);
+
 /**
  * Memseg walk function prototype.
  *
index dccfc359407309a53da40c823e1490989721feac..79433b72847be99852a501a85312518f61be29a2 100644 (file)
@@ -224,6 +224,7 @@ EXPERIMENTAL {
        rte_log_register_type_and_pick_level;
        rte_malloc_dump_heaps;
        rte_mem_iova2virt;
+       rte_mem_virt2memseg;
        rte_memseg_contig_walk;
        rte_memseg_walk;
        rte_mp_action_register;