| 3547 | } |
| 3548 | |
| 3549 | __rte_noinline |
| 3550 | static uint16_t |
| 3551 | virtio_dev_tx_packed_compliant(struct virtio_net *dev, |
| 3552 | struct vhost_virtqueue *__rte_restrict vq, struct rte_mempool *mbuf_pool, |
| 3553 | struct rte_mbuf **__rte_restrict pkts, uint32_t count) |
| 3554 | __rte_shared_locks_required(&vq->access_lock) |
| 3555 | __rte_shared_locks_required(&vq->iotlb_lock) |
| 3556 | { |
| 3557 | return virtio_dev_tx_packed(dev, vq, mbuf_pool, pkts, count, false); |
| 3558 | } |
| 3559 | |
| 3560 | uint16_t |
| 3561 | rte_vhost_dequeue_burst(int vid, uint16_t queue_id, |
no test coverage detected