remove extra parentheses in return statement
[dpdk.git] / lib / librte_eal / common / malloc_heap.c
index 21d8914..763fa32 100644 (file)
@@ -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,17 @@ 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++) {
+#ifdef RTE_LIBRTE_IVSHMEM
+               /*
+                * if segment has ioremap address set, it's an IVSHMEM segment and
+                * it is not memory to allocate from.
+                */
+               if (ms->ioremap_addr != 0)
+                       continue;
+#endif
                malloc_heap_add_memseg(&mcfg->malloc_heaps[ms->socket_id], ms);
+       }
 
        return 0;
 }