Lines Matching refs:retval
62 int retval; in port_init_common() local
72 retval = rte_eth_dev_configure(port, default_params.rx_rings, in port_init_common()
74 if (retval != 0) in port_init_common()
75 return retval; in port_init_common()
78 retval = rte_eth_rx_queue_setup(port, q, rx_ring_size, in port_init_common()
80 if (retval < 0) in port_init_common()
81 return retval; in port_init_common()
85 retval = rte_eth_tx_queue_setup(port, q, tx_ring_size, in port_init_common()
87 if (retval < 0) in port_init_common()
88 return retval; in port_init_common()
92 retval = rte_eth_dev_start(port); in port_init_common()
93 if (retval < 0) in port_init_common()
94 return retval; in port_init_common()
98 retval = rte_eth_macaddr_get(port, &addr); in port_init_common()
99 if (retval < 0) in port_init_common()
100 return retval; in port_init_common()
106 retval = rte_eth_promiscuous_enable(port); in port_init_common()
107 if (retval != 0) in port_init_common()
108 return retval; in port_init_common()