| 411 | } |
| 412 | |
| 413 | void bnxt_stop_rxtx(struct rte_eth_dev *eth_dev) |
| 414 | { |
| 415 | eth_dev->rx_pkt_burst = rte_eth_pkt_burst_dummy; |
| 416 | eth_dev->tx_pkt_burst = rte_eth_pkt_burst_dummy; |
| 417 | |
| 418 | rte_eth_fp_ops[eth_dev->data->port_id].rx_pkt_burst = |
| 419 | eth_dev->rx_pkt_burst; |
| 420 | rte_eth_fp_ops[eth_dev->data->port_id].tx_pkt_burst = |
| 421 | eth_dev->tx_pkt_burst; |
| 422 | rte_mb(); |
| 423 | |
| 424 | /* Allow time for threads to exit the real burst functions. */ |
| 425 | rte_delay_ms(100); |
| 426 | } |
no test coverage detected