* Tell the backend not to interrupt us. */
| 339 | * Tell the backend not to interrupt us. |
| 340 | */ |
| 341 | static inline void |
| 342 | virtqueue_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. |
no test coverage detected