X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Fmalloc_heap.c;h=267a4c6cd5d45980d524c92d8412c2a02742aeb6;hb=8082845f8aea8407a3741783951f182a48f2855f;hp=21d8914405f19cc837b160a2fe988149c51cab82;hpb=fafcc11985a2d79c88334b10a6284068670954da;p=dpdk.git diff --git a/lib/librte_eal/common/malloc_heap.c b/lib/librte_eal/common/malloc_heap.c index 21d8914405..267a4c6cd5 100644 --- a/lib/librte_eal/common/malloc_heap.c +++ b/lib/librte_eal/common/malloc_heap.c @@ -87,7 +87,7 @@ check_hugepage_sz(unsigned flags, uint64_t hugepage_sz) check_flag = RTE_MEMZONE_16GB; } - return (check_flag & flags); + return check_flag & flags; } /* @@ -220,8 +220,9 @@ rte_eal_malloc_heap_init(void) for (ms = &mcfg->memseg[0], ms_cnt = 0; (ms_cnt < RTE_MAX_MEMSEG) && (ms->len > 0); - ms_cnt++, ms++) + ms_cnt++, ms++) { malloc_heap_add_memseg(&mcfg->malloc_heaps[ms->socket_id], ms); + } return 0; }