Home
last modified time | relevance | path

Searched refs:shadow_idx (Results 1 – 1 of 1) sorted by relevance

/qemu/hw/virtio/
H A Dvirtio.c756 static bool virtio_queue_split_poll(VirtQueue *vq, unsigned shadow_idx) in virtio_queue_split_poll() argument
762 return (uint16_t)shadow_idx != vring_avail_idx(vq); in virtio_queue_split_poll()
765 static bool virtio_queue_packed_poll(VirtQueue *vq, unsigned shadow_idx) in virtio_queue_packed_poll() argument
780 shadow_idx, true); in virtio_queue_packed_poll()
785 static bool virtio_queue_poll(VirtQueue *vq, unsigned shadow_idx) in virtio_queue_poll() argument
792 return virtio_queue_packed_poll(vq, shadow_idx); in virtio_queue_poll()
794 return virtio_queue_split_poll(vq, shadow_idx); in virtio_queue_poll()