eal/bsd: fix build
authorThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 28 Jul 2015 08:29:51 +0000 (10:29 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 28 Jul 2015 08:29:51 +0000 (10:29 +0200)
The BSD function for contigmem init and attach must now use the same name
as Linux (hugepage prefix) to avoid code duplication.
The attach function was renamed but the init function was forgotten.

Fixes: d12b6da14bfa ("eal: deduplicate memory initialization")

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
lib/librte_eal/bsdapp/eal/eal_memory.c

index 937e8db..3614da8 100644 (file)
@@ -60,7 +60,7 @@ rte_mem_virt2phy(const void *virtaddr)
 }
 
 int
-rte_eal_contigmem_init(void)
+rte_eal_hugepage_init(void)
 {
        struct rte_mem_config *mcfg;
        uint64_t total_mem = 0;