Test-Label: iol-testing Test-Status: WARNING http://dpdk.org/patch/115599 _apply patch failure_ Submitter: David Marchand Date: Monday, August 29 2022 15:09:36 Applied on: CommitID:09521b1cbeffc81c85ef64564719a4b7e1d10e85 Apply patch set 115599-115598 failed: Checking patch lib/vhost/virtio_net.c... error: while searching for: 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)) return -1; if (virtio_net_with_host_offload(dev)) { if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) { error: patch failed: lib/vhost/virtio_net.c:2677 error: while searching for: update_shadow_used_ring_split(vq, head_idx, 0); err = virtio_dev_pktmbuf_prep(dev, pkts[i], buf_len); if (unlikely(err)) { /* error: patch failed: lib/vhost/virtio_net.c:2922 error: while searching for: VHOST_ACCESS_RO) < 0)) return -1; if (unlikely(virtio_dev_pktmbuf_prep(dev, pkts, buf_len))) { if (!allocerr_warned) { VHOST_LOG_DATA(dev->ifname, ERR, error: patch failed: lib/vhost/virtio_net.c:3124 error: while searching for: break; } err = virtio_dev_pktmbuf_prep(dev, pkt, buf_len); if (unlikely(err)) { /** error: patch failed: lib/vhost/virtio_net.c:3448 Applying patch lib/vhost/virtio_net.c with 4 rejects... Rejected hunk #1. Rejected hunk #2. Rejected hunk #3. Rejected hunk #4. diff a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c (rejected hunks) @@ -2677,8 +2677,10 @@ desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq, 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)) - return -1; + /* + * The caller has checked the descriptors chain is larger than the + * header size. + */ if (virtio_net_with_host_offload(dev)) { if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) { @@ -2922,6 +2924,14 @@ virtio_dev_tx_split(struct virtio_net *dev, struct vhost_virtqueue *vq, update_shadow_used_ring_split(vq, head_idx, 0); + if (unlikely(buf_len <= dev->vhost_hlen)) { + dropped += 1; + i++; + break; + } + + buf_len -= dev->vhost_hlen; + err = virtio_dev_pktmbuf_prep(dev, pkts[i], buf_len); if (unlikely(err)) { /* @@ -3124,6 +3134,11 @@ vhost_dequeue_single_packed(struct virtio_net *dev, VHOST_ACCESS_RO) < 0)) return -1; + if (unlikely(buf_len <= dev->vhost_hlen)) + return -1; + + buf_len -= dev->vhost_hlen; + if (unlikely(virtio_dev_pktmbuf_prep(dev, pkts, buf_len))) { if (!allocerr_warned) { VHOST_LOG_DATA(dev->ifname, ERR, @@ -3448,6 +3463,13 @@ virtio_dev_tx_async_split(struct virtio_net *dev, struct vhost_virtqueue *vq, break; } + if (unlikely(buf_len <= dev->vhost_hlen)) { + dropped = true; + break; + } + + buf_len -= dev->vhost_hlen; + err = virtio_dev_pktmbuf_prep(dev, pkt, buf_len); if (unlikely(err)) { /** Checking patch lib/vhost/virtio_net.c... error: while searching for: uint32_t buf_avail, buf_offset, buf_len; uint64_t buf_addr, buf_iova; uint32_t mbuf_avail, mbuf_offset; uint32_t cpy_len; struct rte_mbuf *cur = m, *prev = m; struct virtio_net_hdr tmp_hdr; struct virtio_net_hdr *hdr = NULL; /* A counter to avoid desc dead loop chain */ uint16_t vec_idx = 0; struct vhost_async *async = vq->async; struct async_inflight_info *pkts_info; buf_addr = buf_vec[vec_idx].buf_addr; buf_iova = buf_vec[vec_idx].buf_iova; buf_len = buf_vec[vec_idx].buf_len; /* * The caller has checked the descriptors chain is larger than the * header size. */ if (virtio_net_with_host_offload(dev)) { if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) { /* * No luck, the virtio-net header doesn't fit * in a contiguous virtual area. error: patch failed: lib/vhost/virtio_net.c:2664 error: while searching for: copy_vnet_hdr_from_desc(&tmp_hdr, buf_vec); hdr = &tmp_hdr; } else { hdr = (struct virtio_net_hdr *)((uintptr_t)buf_addr); } } /* * A virtio driver normally uses at least 2 desc buffers * for Tx: the first for storing the header, and others * for storing the data. */ 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 if (buf_len == dev->vhost_hlen) { if (unlikely(++vec_idx >= nr_vec)) goto error; 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; } else { buf_offset = dev->vhost_hlen; buf_avail = buf_vec[vec_idx].buf_len - dev->vhost_hlen; } PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset), (uint32_t)buf_avail, 0); error: patch failed: lib/vhost/virtio_net.c:2691 Applying patch lib/vhost/virtio_net.c with 2 rejects... Rejected hunk #1. Rejected hunk #2. diff a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c (rejected hunks) @@ -2664,26 +2664,22 @@ desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq, uint32_t buf_avail, buf_offset, buf_len; uint64_t buf_addr, buf_iova; uint32_t mbuf_avail, mbuf_offset; + uint32_t hdr_remain = dev->vhost_hlen; uint32_t cpy_len; struct rte_mbuf *cur = m, *prev = m; struct virtio_net_hdr tmp_hdr; struct virtio_net_hdr *hdr = NULL; - /* A counter to avoid desc dead loop chain */ - uint16_t vec_idx = 0; + uint16_t vec_idx; struct vhost_async *async = vq->async; struct async_inflight_info *pkts_info; - buf_addr = buf_vec[vec_idx].buf_addr; - buf_iova = buf_vec[vec_idx].buf_iova; - buf_len = buf_vec[vec_idx].buf_len; - /* * The caller has checked the descriptors chain is larger than the * header size. */ if (virtio_net_with_host_offload(dev)) { - if (unlikely(buf_len < sizeof(struct virtio_net_hdr))) { + if (unlikely(buf_vec[0].buf_len < sizeof(struct virtio_net_hdr))) { /* * No luck, the virtio-net header doesn't fit * in a contiguous virtual area. @@ -2691,36 +2687,23 @@ desc_to_mbuf(struct virtio_net *dev, struct vhost_virtqueue *vq, copy_vnet_hdr_from_desc(&tmp_hdr, buf_vec); hdr = &tmp_hdr; } else { - hdr = (struct virtio_net_hdr *)((uintptr_t)buf_addr); + hdr = (struct virtio_net_hdr *)((uintptr_t)buf_vec[0].buf_addr); } } - /* - * A virtio driver normally uses at least 2 desc buffers - * for Tx: the first for storing the header, and others - * for storing the data. - */ - 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 if (buf_len == dev->vhost_hlen) { - if (unlikely(++vec_idx >= nr_vec)) - goto error; - buf_addr = buf_vec[vec_idx].buf_addr; - buf_iova = buf_vec[vec_idx].buf_iova; - buf_len = buf_vec[vec_idx].buf_len; + for (vec_idx = 0; vec_idx < nr_vec; vec_idx++) { + if (buf_vec[vec_idx].buf_len > hdr_remain) + break; - buf_offset = 0; - buf_avail = buf_len; - } else { - buf_offset = dev->vhost_hlen; - buf_avail = buf_vec[vec_idx].buf_len - dev->vhost_hlen; + hdr_remain -= buf_vec[vec_idx].buf_len; } + 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 = hdr_remain; + buf_avail = buf_vec[vec_idx].buf_len - hdr_remain; + PRINT_PACKET(dev, (uintptr_t)(buf_addr + buf_offset), (uint32_t)buf_avail, 0); https://lab.dpdk.org/results/dashboard/patchsets/23337/ UNH-IOL DPDK Community Lab