List cover comments

GET /api/covers/54403/comments/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Link: 
<http://patches.dpdk.org/api/covers/54403/comments/?format=api&page=1>; rel="first",
<http://patches.dpdk.org/api/covers/54403/comments/?format=api&page=1>; rel="last"
Vary: Accept
[ { "id": 96769, "web_url": "http://patches.dpdk.org/comment/96769/", "msgid": "<20190605132537.GA12753@___>", "list_archive_url": "https://inbox.dpdk.org/dev/20190605132537.GA12753@___", "date": "2019-06-05T13:25:37", "subject": "Re: [dpdk-dev] [PATCH v3 0/4] et/virtio: Fix packet segmentation bug", "submitter": { "id": 617, "url": "http://patches.dpdk.org/api/people/617/?format=api", "name": "Tiwei Bie", "email": "tiwei.bie@intel.com" }, "content": "On Wed, Jun 05, 2019 at 12:00:35PM +0200, Maxime Coquelin wrote:\n> This series fixes a bug reported by Yaroslav, where segmented\n> packets miss some segments and head segment's data_len was set\n> to a wrong value.\n> \n> Last patch is not a fix, but it removes some useless checks\n> in Rx paths.\n> \n> v3:\n> - Fix properly haed segment's data_len (David)\n> v2:\n> - Fix head segment's data_len (Yaroslav)\n> \n> Maxime Coquelin (4):\n> net/virtio: fix segmented packet issue in in-order Rx path\n> net/virtio: fix segmented packet issue in mergeable Rx path\n> net/virtio: fix segment data len in mergeable packed Rx path\n> net/virtio: remove useless pointers checks\n> \n> drivers/net/virtio/virtio_rxtx.c | 27 ++++++---------------------\n> 1 file changed, 6 insertions(+), 21 deletions(-)\n\nFor the series,\nReviewed-by: Tiwei Bie <tiwei.bie@intel.com>\n\nThanks!", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@dpdk.org", "Delivered-To": "patchwork@dpdk.org", "Received": [ "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 7B5601BA65;\n\tWed, 5 Jun 2019 15:26:50 +0200 (CEST)", "from mga06.intel.com (mga06.intel.com [134.134.136.31])\n\tby dpdk.org (Postfix) with ESMTP id DB1FB1BA46;\n\tWed, 5 Jun 2019 15:26:48 +0200 (CEST)", "from orsmga003.jf.intel.com ([10.7.209.27])\n\tby orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t05 Jun 2019 06:26:47 -0700", "from npg-dpdk-virtio-tbie-2.sh.intel.com (HELO ___)\n\t([10.67.104.151])\n\tby orsmga003.jf.intel.com with ESMTP; 05 Jun 2019 06:26:46 -0700" ], "X-Amp-Result": "UNSCANNABLE", "X-Amp-File-Uploaded": "False", "X-ExtLoop1": "1", "Date": "Wed, 5 Jun 2019 21:25:37 +0800", "From": "Tiwei Bie <tiwei.bie@intel.com>", "To": "Maxime Coquelin <maxime.coquelin@redhat.com>", "Cc": "dev@dpdk.org, ybrustin@cisco.com, jfreimann@redhat.com,\n\tdavid.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-dev] [PATCH v3 0/4] et/virtio: Fix packet segmentation bug", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null }, { "id": 96839, "web_url": "http://patches.dpdk.org/comment/96839/", "msgid": "<324a6143-6c77-433f-90a8-aa0b2aced4a8@redhat.com>", "list_archive_url": "https://inbox.dpdk.org/dev/324a6143-6c77-433f-90a8-aa0b2aced4a8@redhat.com", "date": "2019-06-06T09:31:40", "subject": "Re: [dpdk-dev] [PATCH v3 0/4] et/virtio: Fix packet segmentation bug", "submitter": { "id": 512, "url": "http://patches.dpdk.org/api/people/512/?format=api", "name": "Maxime Coquelin", "email": "maxime.coquelin@redhat.com" }, "content": "On 6/5/19 12:00 PM, Maxime Coquelin wrote:\n> This series fixes a bug reported by Yaroslav, where segmented\n> packets miss some segments and head segment's data_len was set\n> to a wrong value.\n> \n> Last patch is not a fix, but it removes some useless checks\n> in Rx paths.\n> \n> v3:\n> - Fix properly haed segment's data_len (David)\n> v2:\n> - Fix head segment's data_len (Yaroslav)\n> \n> Maxime Coquelin (4):\n> net/virtio: fix segmented packet issue in in-order Rx path\n> net/virtio: fix segmented packet issue in mergeable Rx path\n> net/virtio: fix segment data len in mergeable packed Rx path\n> net/virtio: remove useless pointers checks\n> \n> drivers/net/virtio/virtio_rxtx.c | 27 ++++++---------------------\n> 1 file changed, 6 insertions(+), 21 deletions(-)\n> \n\nSeries applied to dpdk-next-virtio/master with typos in commit messages\nfixed.\n\nThanks,\nMaxime", "headers": { "Return-Path": "<dev-bounces@dpdk.org>", "X-Original-To": "patchwork@dpdk.org", "Delivered-To": "patchwork@dpdk.org", "Received": [ "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 3B28F1B996;\n\tThu, 6 Jun 2019 11:31:54 +0200 (CEST)", "from mx1.redhat.com (mx1.redhat.com [209.132.183.28])\n\tby dpdk.org (Postfix) with ESMTP id 6461B1B95A;\n\tThu, 6 Jun 2019 11:31:52 +0200 (CEST)", "from smtp.corp.redhat.com\n\t(int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby mx1.redhat.com (Postfix) with ESMTPS id B899B3086204;\n\tThu, 6 Jun 2019 09:31:49 +0000 (UTC)", "from [10.36.112.53] (ovpn-112-53.ams2.redhat.com [10.36.112.53])\n\tby smtp.corp.redhat.com (Postfix) with ESMTPS id DC11067C8E;\n\tThu, 6 Jun 2019 09:31:41 +0000 (UTC)" ], "To": "dev@dpdk.org, ybrustin@cisco.com, tiwei.bie@intel.com,\n\tjfreimann@redhat.com, david.marchand@redhat.com", "Cc": "stable@dpdk.org", "References": "<20190605100039.18029-1-maxime.coquelin@redhat.com>", "From": "Maxime Coquelin <maxime.coquelin@redhat.com>", "Message-ID": "<324a6143-6c77-433f-90a8-aa0b2aced4a8@redhat.com>", "Date": "Thu, 6 Jun 2019 11:31:40 +0200", "User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101\n\tThunderbird/60.6.1", "MIME-Version": "1.0", "In-Reply-To": "<20190605100039.18029-1-maxime.coquelin@redhat.com>", "Content-Type": "text/plain; charset=utf-8; format=flowed", "Content-Language": "en-US", "Content-Transfer-Encoding": "7bit", "X-Scanned-By": "MIMEDefang 2.79 on 10.5.11.14", "X-Greylist": "Sender IP whitelisted, not delayed by milter-greylist-4.5.16\n\t(mx1.redhat.com [10.5.110.42]); Thu, 06 Jun 2019 09:31:49 +0000 (UTC)", "Subject": "Re: [dpdk-dev] [PATCH v3 0/4] et/virtio: Fix packet segmentation bug", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "DPDK patches and discussions <dev.dpdk.org>", "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://mails.dpdk.org/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "Errors-To": "dev-bounces@dpdk.org", "Sender": "\"dev\" <dev-bounces@dpdk.org>" }, "addressed": null } ]