Show a cover letter.

GET /api/covers/77017/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 77017,
    "url": "http://patches.dpdk.org/api/covers/77017/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20200909092339.31488-1-huwei013@chinasoftinc.com/",
    "project": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<20200909092339.31488-1-huwei013@chinasoftinc.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20200909092339.31488-1-huwei013@chinasoftinc.com",
    "date": "2020-09-09T09:23:31",
    "name": "[v2,0/8] net/hns3: updates for Rx Tx",
    "submitter": {
        "id": 1537,
        "url": "http://patches.dpdk.org/api/people/1537/?format=api",
        "name": "Wei Hu (Xavier)",
        "email": "huwei013@chinasoftinc.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20200909092339.31488-1-huwei013@chinasoftinc.com/mbox/",
    "series": [
        {
            "id": 12050,
            "url": "http://patches.dpdk.org/api/series/12050/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=12050",
            "date": "2020-09-09T09:23:31",
            "name": "net/hns3: updates for Rx Tx",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/12050/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/77017/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id BDFC7A04B1;\n\tWed,  9 Sep 2020 11:23:52 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id B96C81C0AD;\n\tWed,  9 Sep 2020 11:23:51 +0200 (CEST)",
            "from mail.chinasoftinc.com (unknown [114.113.233.8])\n by dpdk.org (Postfix) with ESMTP id 4247ADE0\n for <dev@dpdk.org>; Wed,  9 Sep 2020 11:23:49 +0200 (CEST)",
            "from localhost.localdomain (65.49.108.226) by INCCAS001.ito.icss\n (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Wed, 9 Sep 2020\n 17:23:46 +0800"
        ],
        "From": "\"Wei Hu (Xavier)\" <huwei013@chinasoftinc.com>",
        "To": "<dev@dpdk.org>",
        "CC": "<xavier.huwei@huawei.com>",
        "Date": "Wed, 9 Sep 2020 17:23:31 +0800",
        "Message-ID": "<20200909092339.31488-1-huwei013@chinasoftinc.com>",
        "X-Mailer": "git-send-email 2.9.5",
        "In-Reply-To": "<20200907090825.1761-1-huwei013@chinasoftinc.com>",
        "References": "<20200907090825.1761-1-huwei013@chinasoftinc.com>",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain",
        "X-Originating-IP": "[65.49.108.226]",
        "Subject": "[dpdk-dev] [PATCH v2 0/8] net/hns3: updates for Rx Tx",
        "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 <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This series are updates for Rx/Tx process.\n\nChengchang Tang (1):\n  net/hns3: fix segfault when Tx multiple buffer packets\n\nWei Hu (Xavier) (7):\n  net/hns3: report Rx free threshold\n  net/hns3: reduce address calculation in Rx\n  net/hns3: add simple Rx process function\n  net/hns3: add simple Tx process function\n  net/hns3: add vector Tx burst with NEON instructions\n  net/hns3: add vector Rx burst with NEON instructions\n  net/hns3: add restriction on setting VF MTU\n\n drivers/net/hns3/hns3_ethdev.c        |   18 +-\n drivers/net/hns3/hns3_ethdev.h        |   54 +-\n drivers/net/hns3/hns3_ethdev_vf.c     |   41 +-\n drivers/net/hns3/hns3_rxtx.c          | 1014 +++++++++++++++++++++++----------\n drivers/net/hns3/hns3_rxtx.h          |  237 +++++++-\n drivers/net/hns3/hns3_rxtx_vec.c      |  214 +++++++\n drivers/net/hns3/hns3_rxtx_vec.h      |   77 +++\n drivers/net/hns3/hns3_rxtx_vec_neon.h |  288 ++++++++++\n drivers/net/hns3/hns3_stats.c         |   16 +-\n drivers/net/hns3/meson.build          |    4 +\n 10 files changed, 1645 insertions(+), 318 deletions(-)\n create mode 100644 drivers/net/hns3/hns3_rxtx_vec.c\n create mode 100644 drivers/net/hns3/hns3_rxtx_vec.h\n create mode 100644 drivers/net/hns3/hns3_rxtx_vec_neon.h"
}