MCPcopy Create free account
hub / github.com/F-Stack/f-stack / i40e_dev_rxtx_init

Function i40e_dev_rxtx_init

dpdk/drivers/net/i40e/i40e_ethdev.c:6489–6506  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6487}
6488
6489static int
6490i40e_dev_rxtx_init(struct i40e_pf *pf)
6491{
6492 int err;
6493
6494 err = i40e_dev_tx_init(pf);
6495 if (err) {
6496 PMD_DRV_LOG(ERR, "Failed to do TX initialization");
6497 return err;
6498 }
6499 err = i40e_dev_rx_init(pf);
6500 if (err) {
6501 PMD_DRV_LOG(ERR, "Failed to do RX initialization");
6502 return err;
6503 }
6504
6505 return err;
6506}
6507
6508static int
6509i40e_vmdq_setup(struct rte_eth_dev *dev)

Callers 1

i40e_dev_startFunction · 0.85

Calls 2

i40e_dev_tx_initFunction · 0.85
i40e_dev_rx_initFunction · 0.85

Tested by

no test coverage detected