Lines Matching defs:stat
400 int stat;
410 stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo);
411 if (stat != 0)
412 return stat;
414 stat = rte_eth_tx_queue_info_get(port_id, 0, &tx_qinfo);
415 if (stat != 0)
416 return stat;
433 int stat;
438 stat = rte_eth_rx_queue_info_get(port_id, 0, &rx_qinfo);
439 if (stat != 0)
440 return stat;
442 stat = rte_eth_dev_stop(port_id);
443 if (stat != 0)
444 return stat;
446 stat = rte_eth_tx_queue_setup(port_id, 0, ring_param->tx_pending,
448 if (stat != 0)
449 return stat;
451 stat = rte_eth_rx_queue_setup(port_id, 0, ring_param->rx_pending,
453 if (stat != 0)
454 return stat;