buf_iova = buf_vec[vec_idx].buf_iova;
buf_len = buf_vec[vec_idx].buf_len;
- rte_prefetch0((void *)(uintptr_t)buf_addr);
+ /*
+ * Prefecth desc n + 1 buffer while
+ * desc n buffer is processed.
+ */
+ if (vec_idx + 1 < nr_vec)
+ rte_prefetch0((void *)(uintptr_t)
+ buf_vec[vec_idx + 1].buf_addr);
buf_offset = 0;
buf_avail = buf_len;
if (likely(dev->dequeue_zero_copy == 0))
update_shadow_used_ring(vq, head_idx, 0);
+ rte_prefetch0((void *)(uintptr_t)buf_vec[0].buf_addr);
+
pkts[i] = rte_pktmbuf_alloc(mbuf_pool);
if (unlikely(pkts[i] == NULL)) {
RTE_LOG(ERR, VHOST_DATA,