<div dir="ltr">Hi,<br><br>I have a question from dpdk-ethtool.<br><br><i>file: examples/ethtool/lib/rte_ethtool.c</i><br><br><font face="times new roman, serif"><b>int<br>rte_ethtool_net_open(uint16_t port_id)<br>{<br>      int ret;<br><br><font color="#ff0000">      ret = rte_eth_dev_stop(port_id);</font><br> if (ret != 0)<br>         return ret;<br><br> return rte_eth_dev_start(port_id);<br>}</b></font><br><br>Does anyone know the purpose of calling rte_eth_dev_stop(port_id) before calling the start function, it stops the port and then starts it again. Why not just call rte_eth_dev_start(port_id)?<br></div>