On Fri, 13 Dec 2024 09:08:22 -0800 Andre Muezerie <andre...@linux.microsoft.com> wrote:
> + struct rte_ipv6_addr *ip_batch = > + (struct rte_ipv6_addr *)rte_malloc("ip_batch", > + sizeof(struct rte_ipv6_addr) * NUM_IPS_ENTRIES, 0 Cast is not needed here. If you are going to allocate an array, use calloc() or rte_calloc()