vhost: remove useless fields in async iterator struct
authorMaxime Coquelin <maxime.coquelin@redhat.com>
Tue, 26 Oct 2021 16:28:56 +0000 (18:28 +0200)
committerMaxime Coquelin <maxime.coquelin@redhat.com>
Fri, 29 Oct 2021 10:32:30 +0000 (12:32 +0200)
Offset and count fields are unused and so can be removed.
The offset field was actually in the Vhost example, but
in a way that does not make sense.

Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
Reviewed-by: Jiayu Hu <jiayu.hu@intel.com>
examples/vhost/ioat.c
lib/vhost/rte_vhost_async.h
lib/vhost/virtio_net.c

index dcbcf65..a8c588d 100644 (file)
@@ -142,10 +142,8 @@ ioat_transfer_data_cb(int vid, uint16_t queue_id,
                                break;
                        while (i_seg < iter->nr_segs) {
                                rte_ioat_enqueue_copy(dev_id,
-                                       (uintptr_t)(iter->iov[i_seg].src_addr)
-                                               + iter->offset,
-                                       (uintptr_t)(iter->iov[i_seg].dst_addr)
-                                               + iter->offset,
+                                       (uintptr_t)(iter->iov[i_seg].src_addr),
+                                       (uintptr_t)(iter->iov[i_seg].dst_addr),
                                        iter->iov[i_seg].len,
                                        0,
                                        0);
index d7bb77b..4ea5cfa 100644 (file)
@@ -20,10 +20,6 @@ struct rte_vhost_iovec {
  * iovec iterator
  */
 struct rte_vhost_iov_iter {
-       /** offset to the first byte of interesting data */
-       size_t offset;
-       /** total bytes of data in this iterator */
-       size_t count;
        /** pointer to the iovec array */
        struct rte_vhost_iovec *iov;
        /** number of iovec in this iterator */
index 3c8be48..29254a1 100644 (file)
@@ -933,19 +933,10 @@ async_fill_vec(struct rte_vhost_iovec *v, void *src, void *dst, size_t len)
 }
 
 static __rte_always_inline void
-async_fill_iter(struct rte_vhost_iov_iter *it, size_t count,
-       struct rte_vhost_iovec *vec, unsigned long nr_seg)
+async_fill_iter(struct rte_vhost_iov_iter *it, struct rte_vhost_iovec *vec, unsigned long nr_seg)
 {
-       it->offset = 0;
-       it->count = count;
-
-       if (count) {
-               it->iov = vec;
-               it->nr_segs = nr_seg;
-       } else {
-               it->iov = 0;
-               it->nr_segs = 0;
-       }
+       it->iov = vec;
+       it->nr_segs = nr_seg;
 }
 
 static __rte_always_inline void
@@ -971,7 +962,6 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
        uint32_t cpy_len, buf_len;
        int error = 0;
 
-       uint32_t tlen = 0;
        int tvec_idx = 0;
        void *hpa;
 
@@ -1076,7 +1066,6 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
                                (void *)(uintptr_t)rte_pktmbuf_iova_offset(m,
                                mbuf_offset), hpa, (size_t)mapped_len);
 
-                       tlen += (uint32_t)mapped_len;
                        cpy_len -= (uint32_t)mapped_len;
                        mbuf_avail  -= (uint32_t)mapped_len;
                        mbuf_offset += (uint32_t)mapped_len;
@@ -1086,7 +1075,7 @@ async_mbuf_to_desc(struct virtio_net *dev, struct vhost_virtqueue *vq,
                }
        }
 
-       async_fill_iter(iter, tlen, iovec, tvec_idx);
+       async_fill_iter(iter, iovec, tvec_idx);
 out:
        return error;
 }