From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 8C17BA0096 for ; Wed, 5 Jun 2019 15:26:52 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4B76C1BB21; Wed, 5 Jun 2019 15:26:52 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id DB1FB1BA46; Wed, 5 Jun 2019 15:26:48 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Jun 2019 06:26:47 -0700 X-ExtLoop1: 1 Received: from npg-dpdk-virtio-tbie-2.sh.intel.com (HELO ___) ([10.67.104.151]) by orsmga003.jf.intel.com with ESMTP; 05 Jun 2019 06:26:46 -0700 Date: Wed, 5 Jun 2019 21:25:37 +0800 From: Tiwei Bie To: Maxime Coquelin Cc: dev@dpdk.org, ybrustin@cisco.com, jfreimann@redhat.com, david.marchand@redhat.com, stable@dpdk.org Message-ID: <20190605132537.GA12753@___> References: <20190605100039.18029-1-maxime.coquelin@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190605100039.18029-1-maxime.coquelin@redhat.com> User-Agent: Mutt/1.9.4 (2018-02-28) Subject: Re: [dpdk-stable] [PATCH v3 0/4] et/virtio: Fix packet segmentation bug X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Wed, Jun 05, 2019 at 12:00:35PM +0200, Maxime Coquelin wrote: > This series fixes a bug reported by Yaroslav, where segmented > packets miss some segments and head segment's data_len was set > to a wrong value. > > Last patch is not a fix, but it removes some useless checks > in Rx paths. > > v3: > - Fix properly haed segment's data_len (David) > v2: > - Fix head segment's data_len (Yaroslav) > > Maxime Coquelin (4): > net/virtio: fix segmented packet issue in in-order Rx path > net/virtio: fix segmented packet issue in mergeable Rx path > net/virtio: fix segment data len in mergeable packed Rx path > net/virtio: remove useless pointers checks > > drivers/net/virtio/virtio_rxtx.c | 27 ++++++--------------------- > 1 file changed, 6 insertions(+), 21 deletions(-) For the series, Reviewed-by: Tiwei Bie Thanks!