| 602 | } |
| 603 | |
| 604 | static int |
| 605 | eth_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 | |
| 615 | static void |
| 616 | eth_vhost_uninstall_intr(struct rte_eth_dev *dev) |
nothing calls this directly
no test coverage detected