| 600 | __rte_shared_locks_required(&vq->iotlb_lock); |
| 601 | |
| 602 | static __rte_always_inline void |
| 603 | vhost_log_write(struct virtio_net *dev, uint64_t addr, uint64_t len) |
| 604 | { |
| 605 | if (unlikely(dev->features & (1ULL << VHOST_F_LOG_ALL))) |
| 606 | __vhost_log_write(dev, addr, len); |
| 607 | } |
| 608 | |
| 609 | static __rte_always_inline void |
| 610 | vhost_log_cache_sync(struct virtio_net *dev, struct vhost_virtqueue *vq) |
no test coverage detected