On Thu, 19 Dec 2019 23:18:34 +0100 Alfredo Cardigliano <cardigli...@ntop.org> wrote:
> + adapter = rte_zmalloc("ionic", sizeof(*adapter), 0); > + > + if (!adapter) { Don't need a blank line here; better to have assignment and check next to each other. You probably want to use rte_zmalloc_socket to make sure that the adapter memory is on the same numa node as the device.