| 135 | } |
| 136 | |
| 137 | static uint16_t |
| 138 | modern_set_queue_irq(struct virtio_crypto_hw *hw, struct virtqueue *vq, |
| 139 | uint16_t vec) |
| 140 | { |
| 141 | rte_write16(vq->vq_queue_index, &hw->common_cfg->queue_select); |
| 142 | rte_write16(vec, &hw->common_cfg->queue_msix_vector); |
| 143 | return rte_read16(&hw->common_cfg->queue_msix_vector); |
| 144 | } |
| 145 | |
| 146 | static uint16_t |
| 147 | modern_get_queue_num(struct virtio_crypto_hw *hw, uint16_t queue_id) |
nothing calls this directly
no test coverage detected