| 3536 | } |
| 3537 | |
| 3538 | __rte_noinline |
| 3539 | static uint16_t |
| 3540 | virtio_dev_tx_packed_legacy(struct virtio_net *dev, |
| 3541 | struct vhost_virtqueue *__rte_restrict vq, struct rte_mempool *mbuf_pool, |
| 3542 | struct rte_mbuf **__rte_restrict pkts, uint32_t count) |
| 3543 | __rte_shared_locks_required(&vq->access_lock) |
| 3544 | __rte_shared_locks_required(&vq->iotlb_lock) |
| 3545 | { |
| 3546 | return virtio_dev_tx_packed(dev, vq, mbuf_pool, pkts, count, true); |
| 3547 | } |
| 3548 | |
| 3549 | __rte_noinline |
| 3550 | static uint16_t |
no test coverage detected