* virtqueue_kick_prepare*() or the virtio_wmb() should be called * before this function to be sure that all the data is visible to vhost. */
| 520 | * before this function to be sure that all the data is visible to vhost. |
| 521 | */ |
| 522 | static inline void |
| 523 | virtqueue_notify(struct virtqueue *vq) |
| 524 | { |
| 525 | VIRTIO_OPS(vq->hw)->notify_queue(vq->hw, vq); |
| 526 | } |
| 527 | |
| 528 | #ifdef RTE_LIBRTE_VIRTIO_DEBUG_DUMP |
| 529 | #define VIRTQUEUE_DUMP(vq) do { \ |
no outgoing calls
no test coverage detected