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

Function eth_rxq_intr_disable

dpdk/drivers/net/vhost/rte_eth_vhost.c:604–613  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

602}
603
604static int
605eth_rxq_intr_disable(struct rte_eth_dev *dev, uint16_t qid)
606{
607 struct vhost_queue *vq = dev->data->rx_queues[qid];
608
609 if (vq->vid >= 0)
610 rte_vhost_enable_guest_notification(vq->vid, (qid << 1) + 1, 0);
611
612 return 0;
613}
614
615static void
616eth_vhost_uninstall_intr(struct rte_eth_dev *dev)

Callers

nothing calls this directly

Tested by

no test coverage detected