examples: skip build when missing dependencies
[dpdk.git] / lib / vhost / virtio_net.c
index a2044aa..cef4bcf 100644 (file)
@@ -791,139 +791,6 @@ copy_vnet_hdr_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
        }
 }
 
-static __rte_always_inline int
-copy_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
-                           struct rte_mbuf *m, struct buf_vector *buf_vec,
-                           uint16_t nr_vec, uint16_t num_buffers)
-{
-       uint32_t vec_idx = 0;
-       uint32_t mbuf_offset, mbuf_avail;
-       uint32_t buf_offset, buf_avail;
-       uint64_t buf_addr, buf_iova, buf_len;
-       uint32_t cpy_len;
-       uint64_t hdr_addr;
-       struct rte_mbuf *hdr_mbuf;
-       struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
-       struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
-       int error = 0;
-
-       if (unlikely(m == NULL)) {
-               error = -1;
-               goto out;
-       }
-
-       buf_addr = buf_vec[vec_idx].buf_addr;
-       buf_iova = buf_vec[vec_idx].buf_iova;
-       buf_len = buf_vec[vec_idx].buf_len;
-
-       if (unlikely(buf_len < dev->vhost_hlen && nr_vec <= 1)) {
-               error = -1;
-               goto out;
-       }
-
-       hdr_mbuf = m;
-       hdr_addr = buf_addr;
-       if (unlikely(buf_len < dev->vhost_hlen)) {
-               memset(&tmp_hdr, 0, sizeof(struct virtio_net_hdr_mrg_rxbuf));
-               hdr = &tmp_hdr;
-       } else
-               hdr = (struct virtio_net_hdr_mrg_rxbuf *)(uintptr_t)hdr_addr;
-
-       VHOST_LOG_DATA(DEBUG, "(%d) RX: num merge buffers %d\n",
-               dev->vid, num_buffers);
-
-       if (unlikely(buf_len < dev->vhost_hlen)) {
-               buf_offset = dev->vhost_hlen - buf_len;
-               vec_idx++;
-               buf_addr = buf_vec[vec_idx].buf_addr;
-               buf_iova = buf_vec[vec_idx].buf_iova;
-               buf_len = buf_vec[vec_idx].buf_len;
-               buf_avail = buf_len - buf_offset;
-       } else {
-               buf_offset = dev->vhost_hlen;
-               buf_avail = buf_len - dev->vhost_hlen;
-       }
-
-       mbuf_avail  = rte_pktmbuf_data_len(m);
-       mbuf_offset = 0;
-       while (mbuf_avail != 0 || m->next != NULL) {
-               /* done with current buf, get the next one */
-               if (buf_avail == 0) {
-                       vec_idx++;
-                       if (unlikely(vec_idx >= nr_vec)) {
-                               error = -1;
-                               goto out;
-                       }
-
-                       buf_addr = buf_vec[vec_idx].buf_addr;
-                       buf_iova = buf_vec[vec_idx].buf_iova;
-                       buf_len = buf_vec[vec_idx].buf_len;
-
-                       buf_offset = 0;
-                       buf_avail  = buf_len;
-               }
-
-               /* done with current mbuf, get the next one */
-               if (mbuf_avail == 0) {
-                       m = m->next;
-
-                       mbuf_offset = 0;
-                       mbuf_avail  = rte_pktmbuf_data_len(m);
-               }
-
-               if (hdr_addr) {
-                       virtio_enqueue_offload(hdr_mbuf, &hdr->hdr);
-                       if (rxvq_is_mergeable(dev))
-                               ASSIGN_UNLESS_EQUAL(hdr->num_buffers,
-                                               num_buffers);
-
-                       if (unlikely(hdr == &tmp_hdr)) {
-                               copy_vnet_hdr_to_desc(dev, vq, buf_vec, hdr);
-                       } else {
-                               PRINT_PACKET(dev, (uintptr_t)hdr_addr,
-                                               dev->vhost_hlen, 0);
-                               vhost_log_cache_write_iova(dev, vq,
-                                               buf_vec[0].buf_iova,
-                                               dev->vhost_hlen);
-                       }
-
-                       hdr_addr = 0;
-               }
-
-               cpy_len = RTE_MIN(buf_avail, mbuf_avail);
-
-               if (likely(cpy_len > MAX_BATCH_LEN ||
-                                       vq->batch_copy_nb_elems >= vq->size)) {
-                       rte_memcpy((void *)((uintptr_t)(buf_addr + buf_offset)),
-                               rte_pktmbuf_mtod_offset(m, void *, mbuf_offset),
-                               cpy_len);
-                       vhost_log_cache_write_iova(dev, vq,
-                                                  buf_iova + buf_offset,
-                                                  cpy_len);
-                       PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset),
-                               cpy_len, 0);
-               } else {
-                       batch_copy[vq->batch_copy_nb_elems].dst =
-                               (void *)((uintptr_t)(buf_addr + buf_offset));
-                       batch_copy[vq->batch_copy_nb_elems].src =
-                               rte_pktmbuf_mtod_offset(m, void *, mbuf_offset);
-                       batch_copy[vq->batch_copy_nb_elems].log_addr =
-                               buf_iova + buf_offset;
-                       batch_copy[vq->batch_copy_nb_elems].len = cpy_len;
-                       vq->batch_copy_nb_elems++;
-               }
-
-               mbuf_avail  -= cpy_len;
-               mbuf_offset += cpy_len;
-               buf_avail  -= cpy_len;
-               buf_offset += cpy_len;
-       }
-
-out:
-
-       return error;
-}
-
 static __rte_always_inline int
 async_iter_initialize(struct vhost_async *async)
 {
@@ -995,32 +862,76 @@ async_iter_reset(struct vhost_async *async)
        async->iovec_idx = 0;
 }
 
+static __rte_always_inline int
+async_mbuf_to_desc_seg(struct virtio_net *dev, struct vhost_virtqueue *vq,
+               struct rte_mbuf *m, uint32_t mbuf_offset,
+               uint64_t buf_iova, uint32_t cpy_len)
+{
+       struct vhost_async *async = vq->async;
+       uint64_t mapped_len;
+       uint32_t buf_offset = 0;
+       void *hpa;
+
+       while (cpy_len) {
+               hpa = (void *)(uintptr_t)gpa_to_first_hpa(dev,
+                               buf_iova + buf_offset, cpy_len, &mapped_len);
+               if (unlikely(!hpa)) {
+                       VHOST_LOG_DATA(ERR, "(%d) %s: failed to get hpa.\n", dev->vid, __func__);
+                       return -1;
+               }
+
+               if (unlikely(async_iter_add_iovec(async,
+                                               (void *)(uintptr_t)rte_pktmbuf_iova_offset(m,
+                                                       mbuf_offset),
+                                               hpa, (size_t)mapped_len)))
+                       return -1;
+
+               cpy_len -= (uint32_t)mapped_len;
+               mbuf_offset += (uint32_t)mapped_len;
+               buf_offset += (uint32_t)mapped_len;
+       }
+
+       return 0;
+}
+
 static __rte_always_inline void
-async_fill_descs(struct vhost_async *async, struct rte_vhost_async_desc *descs)
+sync_mbuf_to_desc_seg(struct virtio_net *dev, struct vhost_virtqueue *vq,
+               struct rte_mbuf *m, uint32_t mbuf_offset,
+               uint64_t buf_addr, uint64_t buf_iova, uint32_t cpy_len)
 {
-       int i;
+       struct batch_copy_elem *batch_copy = vq->batch_copy_elems;
 
-       for (i = 0; i < async->iter_idx; i++)
-               descs[i].iter = async->iov_iter + i;
+       if (likely(cpy_len > MAX_BATCH_LEN || vq->batch_copy_nb_elems >= vq->size)) {
+               rte_memcpy((void *)((uintptr_t)(buf_addr)),
+                               rte_pktmbuf_mtod_offset(m, void *, mbuf_offset),
+                               cpy_len);
+               vhost_log_cache_write_iova(dev, vq, buf_iova, cpy_len);
+               PRINT_PACKET(dev, (uintptr_t)(buf_addr), cpy_len, 0);
+       } else {
+               batch_copy[vq->batch_copy_nb_elems].dst =
+                       (void *)((uintptr_t)(buf_addr));
+               batch_copy[vq->batch_copy_nb_elems].src =
+                       rte_pktmbuf_mtod_offset(m, void *, mbuf_offset);
+               batch_copy[vq->batch_copy_nb_elems].log_addr = buf_iova;
+               batch_copy[vq->batch_copy_nb_elems].len = cpy_len;
+               vq->batch_copy_nb_elems++;
+       }
 }
 
 static __rte_always_inline int
-async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
-                       struct rte_mbuf *m, struct buf_vector *buf_vec,
-                       uint16_t nr_vec, uint16_t num_buffers)
+mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
+               struct rte_mbuf *m, struct buf_vector *buf_vec,
+               uint16_t nr_vec, uint16_t num_buffers, bool is_async)
 {
-       struct vhost_async *async = vq->async;
-       struct rte_mbuf *hdr_mbuf;
-       struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
-       uint64_t buf_addr, buf_iova;
-       uint64_t hdr_addr;
-       uint64_t mapped_len;
        uint32_t vec_idx = 0;
        uint32_t mbuf_offset, mbuf_avail;
        uint32_t buf_offset, buf_avail;
-       uint32_t cpy_len, buf_len;
-
-       void *hpa;
+       uint64_t buf_addr, buf_iova, buf_len;
+       uint32_t cpy_len;
+       uint64_t hdr_addr;
+       struct rte_mbuf *hdr_mbuf;
+       struct virtio_net_hdr_mrg_rxbuf tmp_hdr, *hdr = NULL;
+       struct vhost_async *async = vq->async;
 
        if (unlikely(m == NULL))
                return -1;
@@ -1058,8 +969,10 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
        mbuf_avail  = rte_pktmbuf_data_len(m);
        mbuf_offset = 0;
 
-       if (async_iter_initialize(async))
-               return -1;
+       if (is_async) {
+               if (async_iter_initialize(async))
+                       return -1;
+       }
 
        while (mbuf_avail != 0 || m->next != NULL) {
                /* done with current buf, get the next one */
@@ -1073,7 +986,7 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
                        buf_len = buf_vec[vec_idx].buf_len;
 
                        buf_offset = 0;
-                       buf_avail = buf_len;
+                       buf_avail  = buf_len;
                }
 
                /* done with current mbuf, get the next one */
@@ -1081,7 +994,7 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
                        m = m->next;
 
                        mbuf_offset = 0;
-                       mbuf_avail = rte_pktmbuf_data_len(m);
+                       mbuf_avail  = rte_pktmbuf_data_len(m);
                }
 
                if (hdr_addr) {
@@ -1105,35 +1018,29 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
 
                cpy_len = RTE_MIN(buf_avail, mbuf_avail);
 
-               while (unlikely(cpy_len)) {
-                       hpa = (void *)(uintptr_t)gpa_to_first_hpa(dev,
-                                       buf_iova + buf_offset,
-                                       cpy_len, &mapped_len);
-                       if (unlikely(!hpa)) {
-                               VHOST_LOG_DATA(ERR, "(%d) %s: failed to get hpa.\n",
-                               dev->vid, __func__);
-                               goto error;
-                       }
-
-                       if (unlikely(async_iter_add_iovec(async,
-                                       (void *)(uintptr_t)rte_pktmbuf_iova_offset(m,
-                                               mbuf_offset),
-                                       hpa, (size_t)mapped_len)))
+               if (is_async) {
+                       if (async_mbuf_to_desc_seg(dev, vq, m, mbuf_offset,
+                                               buf_iova + buf_offset, cpy_len) < 0)
                                goto error;
-
-                       cpy_len -= (uint32_t)mapped_len;
-                       mbuf_avail  -= (uint32_t)mapped_len;
-                       mbuf_offset += (uint32_t)mapped_len;
-                       buf_avail  -= (uint32_t)mapped_len;
-                       buf_offset += (uint32_t)mapped_len;
+               } else {
+                       sync_mbuf_to_desc_seg(dev, vq, m, mbuf_offset,
+                                       buf_addr + buf_offset,
+                                       buf_iova + buf_offset, cpy_len);
                }
+
+               mbuf_avail  -= cpy_len;
+               mbuf_offset += cpy_len;
+               buf_avail  -= cpy_len;
+               buf_offset += cpy_len;
        }
 
-       async_iter_finalize(async);
+       if (is_async)
+               async_iter_finalize(async);
 
        return 0;
 error:
-       async_iter_cancel(async);
+       if (is_async)
+               async_iter_cancel(async);
 
        return -1;
 }
@@ -1192,7 +1099,7 @@ vhost_enqueue_single_packed(struct virtio_net *dev,
                        avail_idx -= vq->size;
        }
 
-       if (copy_mbuf_to_desc(dev, vq, pkt, buf_vec, nr_vec, num_buffers) < 0)
+       if (mbuf_to_desc(dev, vq, pkt, buf_vec, nr_vec, num_buffers, false) < 0)
                return -1;
 
        vhost_shadow_enqueue_single_packed(dev, vq, buffer_len, buffer_buf_id,
@@ -1236,9 +1143,8 @@ virtio_dev_rx_split(struct virtio_net *dev, struct vhost_virtqueue *vq,
                        dev->vid, vq->last_avail_idx,
                        vq->last_avail_idx + num_buffers);
 
-               if (copy_mbuf_to_desc(dev, vq, pkts[pkt_idx],
-                                               buf_vec, nr_vec,
-                                               num_buffers) < 0) {
+               if (mbuf_to_desc(dev, vq, pkts[pkt_idx], buf_vec, nr_vec,
+                                       num_buffers, false) < 0) {
                        vq->shadow_used_idx -= num_buffers;
                        break;
                }
@@ -1499,11 +1405,14 @@ rte_vhost_enqueue_burst(int vid, uint16_t queue_id,
 }
 
 static __rte_always_inline uint16_t
-virtio_dev_rx_async_get_info_idx(uint16_t pkts_idx,
-       uint16_t vq_size, uint16_t n_inflight)
+async_get_first_inflight_pkt_idx(struct vhost_virtqueue *vq)
 {
-       return pkts_idx > n_inflight ? (pkts_idx - n_inflight) :
-               (vq_size - n_inflight + pkts_idx) % vq_size;
+       struct vhost_async *async = vq->async;
+
+       if (async->pkts_idx >= async->pkts_inflight_n)
+               return async->pkts_idx - async->pkts_inflight_n;
+       else
+               return vq->size - async->pkts_inflight_n + async->pkts_idx;
 }
 
 static __rte_always_inline void
@@ -1550,7 +1459,6 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
        uint16_t avail_head;
 
        struct vhost_async *async = vq->async;
-       struct rte_vhost_async_desc async_descs[MAX_PKT_BURST];
        struct async_inflight_info *pkts_info = async->pkts_info;
        uint32_t pkt_err = 0;
        int32_t n_xfer;
@@ -1580,7 +1488,7 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
                VHOST_LOG_DATA(DEBUG, "(%d) current index %d | end index %d\n",
                        dev->vid, vq->last_avail_idx, vq->last_avail_idx + num_buffers);
 
-               if (async_mbuf_to_desc(dev, vq, pkts[pkt_idx], buf_vec, nr_vec, num_buffers) < 0) {
+               if (mbuf_to_desc(dev, vq, pkts[pkt_idx], buf_vec, nr_vec, num_buffers, true) < 0) {
                        vq->shadow_used_idx -= num_buffers;
                        break;
                }
@@ -1595,9 +1503,7 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
        if (unlikely(pkt_idx == 0))
                return 0;
 
-       async_fill_descs(async, async_descs);
-
-       n_xfer = async->ops.transfer_data(dev->vid, queue_id, async_descs, 0, pkt_idx);
+       n_xfer = async->ops.transfer_data(dev->vid, queue_id, async->iov_iter, 0, pkt_idx);
        if (unlikely(n_xfer < 0)) {
                VHOST_LOG_DATA(ERR, "(%d) %s: failed to transfer data for queue id %d.\n",
                                dev->vid, __func__, queue_id);
@@ -1631,7 +1537,11 @@ virtio_dev_rx_async_submit_split(struct virtio_net *dev,
                                vq->shadow_used_idx);
 
                async->desc_idx_split += vq->shadow_used_idx;
+
                async->pkts_idx += pkt_idx;
+               if (async->pkts_idx >= vq->size)
+                       async->pkts_idx -= vq->size;
+
                async->pkts_inflight_n += pkt_idx;
                vq->shadow_used_idx = 0;
        }
@@ -1747,8 +1657,7 @@ vhost_enqueue_async_packed(struct virtio_net *dev,
                        avail_idx -= vq->size;
        }
 
-       if (unlikely(async_mbuf_to_desc(dev, vq, pkt, buf_vec, nr_vec,
-                                       *nr_buffers) < 0))
+       if (unlikely(mbuf_to_desc(dev, vq, pkt, buf_vec, nr_vec, *nr_buffers, true) < 0))
                return -1;
 
        vhost_shadow_enqueue_packed(vq, buffer_len, buffer_buf_id, buffer_desc_count, *nr_buffers);
@@ -1812,7 +1721,6 @@ virtio_dev_rx_async_submit_packed(struct virtio_net *dev,
        uint16_t num_descs;
 
        struct vhost_async *async = vq->async;
-       struct rte_vhost_async_desc async_descs[MAX_PKT_BURST];
        struct async_inflight_info *pkts_info = async->pkts_info;
        uint32_t pkt_err = 0;
        uint16_t slot_idx = 0;
@@ -1840,9 +1748,7 @@ virtio_dev_rx_async_submit_packed(struct virtio_net *dev,
        if (unlikely(pkt_idx == 0))
                return 0;
 
-       async_fill_descs(async, async_descs);
-
-       n_xfer = async->ops.transfer_data(dev->vid, queue_id, async_descs, 0, pkt_idx);
+       n_xfer = async->ops.transfer_data(dev->vid, queue_id, async->iov_iter, 0, pkt_idx);
        if (unlikely(n_xfer < 0)) {
                VHOST_LOG_DATA(ERR, "(%d) %s: failed to transfer data for queue id %d.\n",
                                dev->vid, __func__, queue_id);
@@ -1936,68 +1842,43 @@ static __rte_always_inline uint16_t
 vhost_poll_enqueue_completed(struct virtio_net *dev, uint16_t queue_id,
                struct rte_mbuf **pkts, uint16_t count)
 {
-       struct vhost_virtqueue *vq;
-       struct vhost_async *async;
-       struct async_inflight_info *pkts_info;
+       struct vhost_virtqueue *vq = dev->virtqueue[queue_id];
+       struct vhost_async *async = vq->async;
+       struct async_inflight_info *pkts_info = async->pkts_info;
        int32_t n_cpl;
-       uint16_t n_pkts_cpl = 0, n_pkts_put = 0, n_descs = 0, n_buffers = 0;
-       uint16_t start_idx, pkts_idx, vq_size;
-       uint16_t from, i;
+       uint16_t n_descs = 0, n_buffers = 0;
+       uint16_t start_idx, from, i;
 
-       vq = dev->virtqueue[queue_id];
-       async = vq->async;
-       pkts_idx = async->pkts_idx % vq->size;
-       pkts_info = async->pkts_info;
-       vq_size = vq->size;
-       start_idx = virtio_dev_rx_async_get_info_idx(pkts_idx,
-               vq_size, async->pkts_inflight_n);
-
-       if (count > async->last_pkts_n) {
-               n_cpl = async->ops.check_completed_copies(dev->vid,
-                       queue_id, 0, count - async->last_pkts_n);
-               if (likely(n_cpl >= 0)) {
-                       n_pkts_cpl = n_cpl;
-               } else {
-                       VHOST_LOG_DATA(ERR,
-                               "(%d) %s: failed to check completed copies for queue id %d.\n",
+       n_cpl = async->ops.check_completed_copies(dev->vid, queue_id, 0, count);
+       if (unlikely(n_cpl < 0)) {
+               VHOST_LOG_DATA(ERR, "(%d) %s: failed to check completed copies for queue id %d.\n",
                                dev->vid, __func__, queue_id);
-                       n_pkts_cpl = 0;
-               }
+               return 0;
        }
 
-       n_pkts_cpl += async->last_pkts_n;
-       n_pkts_put = RTE_MIN(n_pkts_cpl, count);
-       if (unlikely(n_pkts_put == 0)) {
-               async->last_pkts_n = n_pkts_cpl;
+       if (n_cpl == 0)
                return 0;
-       }
 
-       if (vq_is_packed(dev)) {
-               for (i = 0; i < n_pkts_put; i++) {
-                       from = (start_idx + i) % vq_size;
-                       n_buffers += pkts_info[from].nr_buffers;
-                       pkts[i] = pkts_info[from].mbuf;
-               }
-       } else {
-               for (i = 0; i < n_pkts_put; i++) {
-                       from = (start_idx + i) & (vq_size - 1);
-                       n_descs += pkts_info[from].descs;
-                       pkts[i] = pkts_info[from].mbuf;
-               }
+       start_idx = async_get_first_inflight_pkt_idx(vq);
+
+       for (i = 0; i < n_cpl; i++) {
+               from = (start_idx + i) % vq->size;
+               /* Only used with packed ring */
+               n_buffers += pkts_info[from].nr_buffers;
+               /* Only used with split ring */
+               n_descs += pkts_info[from].descs;
+               pkts[i] = pkts_info[from].mbuf;
        }
-       async->last_pkts_n = n_pkts_cpl - n_pkts_put;
-       async->pkts_inflight_n -= n_pkts_put;
+
+       async->pkts_inflight_n -= n_cpl;
 
        if (likely(vq->enabled && vq->access_ok)) {
                if (vq_is_packed(dev)) {
                        write_back_completed_descs_packed(vq, n_buffers);
-
                        vhost_vring_call_packed(dev, vq);
                } else {
                        write_back_completed_descs_split(vq, n_descs);
-
-                       __atomic_add_fetch(&vq->used->idx, n_descs,
-                                       __ATOMIC_RELEASE);
+                       __atomic_add_fetch(&vq->used->idx, n_descs, __ATOMIC_RELEASE);
                        vhost_vring_call_split(dev, vq);
                }
        } else {
@@ -2010,7 +1891,7 @@ vhost_poll_enqueue_completed(struct virtio_net *dev, uint16_t queue_id,
                }
        }
 
-       return n_pkts_put;
+       return n_cpl;
 }
 
 uint16_t