| 614 | } |
| 615 | |
| 616 | static __rte_always_inline void |
| 617 | vhost_log_cache_write(struct virtio_net *dev, struct vhost_virtqueue *vq, |
| 618 | uint64_t addr, uint64_t len) |
| 619 | { |
| 620 | if (unlikely(dev->features & (1ULL << VHOST_F_LOG_ALL))) |
| 621 | __vhost_log_cache_write(dev, vq, addr, len); |
| 622 | } |
| 623 | |
| 624 | static __rte_always_inline void |
| 625 | vhost_log_cache_used_vring(struct virtio_net *dev, struct vhost_virtqueue *vq, |
nothing calls this directly
no test coverage detected