Hi. I've got a SCB-8973 machine equipped with i212 network controller (6 ports). My dpdk application (see the code snippet below) returns zeros for both dev_info.max_tx_queues and dev_info.max_rx_queues
Have anybody got an experience of addressing this problem?
Regards,
Sergey
for (portid = 0; portid < nb_ports; portid++) {
struct rte_eth_dev_info di;
rte_eth_dev_info_get(portid, &di);
ELOG_INFO(MAIN, "%-6d %-6d %-6d", portid, di.max_tx_queues,
di.max_rx_queues);
}

