From: "Gaoxiang Liu" <gaoxiangliu0@163.com>
To: "Xia, Chenbo" <chenbo.xia@intel.com>
Cc: "maxime.coquelin@redhat.com" <maxime.coquelin@redhat.com>,
"dev@dpdk.org" <dev@dpdk.org>,
"liugaoxiang@huawei.com" <liugaoxiang@huawei.com>,
"stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [PATCH v2] vhost: fix avail idx update error when desc copy failed
Date: Thu, 23 Jun 2022 14:23:21 +0800 (GMT+08:00) [thread overview]
Message-ID: <68146b2b.97fc.1818f3ac1a6.Coremail.gaoxiangliu0@163.com> (raw)
In-Reply-To: <SN6PR11MB35041E83B2F6D75B96A36DC39CB59@SN6PR11MB3504.namprd11.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 2465 bytes --]
Hi, Chenbo
Yes. It is the latest patch.
---- Replied Message ----
| From | Xia, Chenbo<chenbo.xia@intel.com> |
| Date | 06/23/2022 11:07 |
| To | Gaoxiang Liu<gaoxiangliu0@163.com>,
maxime.coquelin@redhat.com<maxime.coquelin@redhat.com> |
| Cc | dev@dpdk.org<dev@dpdk.org>,
liugaoxiang@huawei.com<liugaoxiang@huawei.com>,
stable@dpdk.org<stable@dpdk.org> |
| Subject | RE: [PATCH v2] vhost: fix avail idx update error when desc copy failed |
Hi Gaoxiang,
> -----Original Message-----
> From: Gaoxiang Liu <gaoxiangliu0@163.com>
> Sent: Wednesday, June 22, 2022 9:20 AM
> To: maxime.coquelin@redhat.com; Xia, Chenbo <chenbo.xia@intel.com>
> Cc: dev@dpdk.org; liugaoxiang@huawei.com; Gaoxiang Liu
> <gaoxiangliu0@163.com>; stable@dpdk.org
> Subject: [PATCH v2] vhost: fix avail idx update error when desc copy
> failed
>
> When copy_desc_to_mbuf function failed, i added 1.
> And last_avail_idx added i, other than i - 1.
> It may cause that the first mbuf in mbuf-list is dropped,
> the second mbuf in mbuf-list is received in the following
> rx procedure.
> And The pkt_len of the second mbuf is zero, resulting in
> segment fault when parsing the mbuf.
Guess this one is the latest? I believe something is wrong when you forward this,
it generates another patch because of your mail forwarding:
http://patchwork.dpdk.org/project/dpdk/list/?series=&submitter=&state=&q=&archive=&delegate=2642
/Chenbo
>
> Fixes: 0fd5608ef97f ("vhost: handle mbuf allocation failure")
> Cc: stable@dpdk.org
>
> Signed-off-by: Gaoxiang Liu <liugaoxiang@huawei.com>
>
> ---
> v2:
> * Fixed other idx update errors.
> ---
> lib/vhost/virtio_net.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c
> index 68a26eb17d..eb254e1024 100644
> --- a/lib/vhost/virtio_net.c
> +++ b/lib/vhost/virtio_net.c
> @@ -2850,11 +2850,11 @@ virtio_dev_tx_split(struct virtio_net *dev, struct
> vhost_virtqueue *vq,
> if (dropped)
> rte_pktmbuf_free_bulk(&pkts[i - 1], count - i + 1);
>
> - vq->last_avail_idx += i;
> + vq->last_avail_idx += i - dropped;
>
> do_data_copy_dequeue(vq);
> - if (unlikely(i < count))
> - vq->shadow_used_idx = i;
> + if (unlikely((i - dropped) < count))
> + vq->shadow_used_idx = i - dropped;
> if (likely(vq->shadow_used_idx)) {
> flush_shadow_used_ring_split(dev, vq);
> vhost_vring_call_split(dev, vq);
> --
> 2.32.0
[-- Attachment #2: Type: text/html, Size: 5737 bytes --]
next prev parent reply other threads:[~2022-06-23 6:39 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-22 0:56 [PATCH] " Gaoxiang Liu
2022-06-22 1:19 ` [PATCH v2] " Gaoxiang Liu
2022-06-23 3:07 ` Xia, Chenbo
2022-06-23 6:23 ` Gaoxiang Liu [this message]
2022-07-01 13:05 ` Xia, Chenbo
2022-07-02 3:00 ` Gaoxiang Liu
2022-07-04 7:51 ` Xia, Chenbo
2022-06-22 1:06 Gaoxiang Liu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=68146b2b.97fc.1818f3ac1a6.Coremail.gaoxiangliu0@163.com \
--to=gaoxiangliu0@163.com \
--cc=chenbo.xia@intel.com \
--cc=dev@dpdk.org \
--cc=liugaoxiang@huawei.com \
--cc=maxime.coquelin@redhat.com \
--cc=stable@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).