Home
last modified time | relevance | path

Searched refs:vf_dev (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/drivers/net/netvsc/
H A Dhn_vf.c213 if (vf_dev) in hn_vf_info_get()
270 if (vf_dev) in hn_vf_start()
378 if (vf_dev) in hn_vf_mc_addr_list()
396 if (vf_dev) in hn_vf_tx_queue_setup()
410 if (vf_dev && vf_dev->dev_ops->tx_queue_release) { in hn_vf_tx_queue_release()
431 if (vf_dev) in hn_vf_rx_queue_setup()
445 if (vf_dev && vf_dev->dev_ops->rx_queue_release) { in hn_vf_rx_queue_release()
462 if (vf_dev) in hn_vf_stats_get()
547 if (vf_dev && vf_dev->dev_ops->rss_hash_update) in hn_vf_rss_hash_update()
564 if (vf_dev && vf_dev->dev_ops->reta_update) in hn_vf_reta_hash_update()
[all …]
H A Dhn_rxtx.c1477 struct rte_eth_dev *vf_dev; in hn_xmit_pkts() local
1496 vf_dev = hn_get_vf_dev(hv); in hn_xmit_pkts()
1497 if (vf_dev && vf_dev->data->dev_started) { in hn_xmit_pkts()
1498 void *sub_q = vf_dev->data->tx_queues[queue_id]; in hn_xmit_pkts()
1500 nb_tx = (*vf_dev->tx_pkt_burst)(sub_q, tx_pkts, nb_pkts); in hn_xmit_pkts()
1602 struct rte_eth_dev *vf_dev; in hn_recv_pkts() local
1618 vf_dev = hn_get_vf_dev(hv); in hn_recv_pkts()
1619 if (vf_dev && vf_dev->data->dev_started) in hn_recv_pkts()
1620 nb_rcv += hn_recv_vf(vf_dev->data->port_id, rxq, in hn_recv_pkts()