Lines Matching refs:cnt_ports
46 int cnt_ports; member
89 static void setup_ports(struct app_config *app_cfg, int cnt_ports) in setup_ports() argument
103 for (idx_port = 0; idx_port < cnt_ports; idx_port++) { in setup_ports()
193 for (idx_port = 0; idx_port < app_cfg.cnt_ports; idx_port++) { in worker_main()
264 for (portid = 0; portid < app_cfg.cnt_ports; portid++) { in close_ports()
279 uint32_t cnt_ports; in main() local
286 cnt_ports = rte_eth_dev_count_avail(); in main()
287 printf("Number of NICs: %i\n", cnt_ports); in main()
288 if (cnt_ports == 0) in main()
290 if (cnt_ports > MAX_PORTS) { in main()
292 cnt_ports, MAX_PORTS in main()
294 cnt_ports = MAX_PORTS; in main()
297 setup_ports(&app_cfg, cnt_ports); in main()
300 app_cfg.cnt_ports = cnt_ports; in main()