MCPcopy Create free account
hub / github.com/F-Stack/f-stack / virtqueue_disable_intr

Function virtqueue_disable_intr

dpdk/drivers/net/virtio/virtqueue.h:341–348  ·  view source on GitHub ↗

* Tell the backend not to interrupt us. */

Source from the content-addressed store, hash-verified

339 * Tell the backend not to interrupt us.
340 */
341static inline void
342virtqueue_disable_intr(struct virtqueue *vq)
343{
344 if (virtio_with_packed_queue(vq->hw))
345 virtqueue_disable_intr_packed(vq);
346 else
347 virtqueue_disable_intr_split(vq);
348}
349
350/**
351 * Tell the backend to interrupt. Implementation for packed virtqueues.

Callers 4

virtio_init_vringFunction · 0.70

Calls 3

virtio_with_packed_queueFunction · 0.85

Tested by

no test coverage detected