[dpdk-users] (SOLVED) rte_eth_rx_queue_setup is returning error -28 (ENOSPC)

Victor Huertas vhuertas at gmail.com
Thu Feb 22 09:30:14 CET 2018


I have found myself the solution to the problem.

When the struct rte_mempool *pktmbuf_pool[NB_SOCKETS]; was declared, it was
not initialized with NULL and the memory pool was not created because the
if clause 'if (pktmbuf_pool[socketID]==NULL)' avoided it.

Once I forced the initialization of all *pktmbuf_pool[NB_SOCKETS] poistions
to NULL, then it worked well.

Regards,

-- 
Victor


More information about the users mailing list