Show a cover letter.

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

{
    "id": 51688,
    "url": "http://patches.dpdk.org/api/covers/51688/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1553581011-94181-1-git-send-email-wenzhuo.lu@intel.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": "<1553581011-94181-1-git-send-email-wenzhuo.lu@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1553581011-94181-1-git-send-email-wenzhuo.lu@intel.com",
    "date": "2019-03-26T06:16:43",
    "name": "[v7,0/8] Support vector instructions on ICE",
    "submitter": {
        "id": 258,
        "url": "http://patches.dpdk.org/api/people/258/?format=api",
        "name": "Wenzhuo Lu",
        "email": "wenzhuo.lu@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/1553581011-94181-1-git-send-email-wenzhuo.lu@intel.com/mbox/",
    "series": [
        {
            "id": 3914,
            "url": "http://patches.dpdk.org/api/series/3914/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=3914",
            "date": "2019-03-26T06:16:43",
            "name": "Support vector instructions on ICE",
            "version": 7,
            "mbox": "http://patches.dpdk.org/series/3914/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/51688/comments/",
    "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 4B2E7326D;\n\tTue, 26 Mar 2019 07:11:23 +0100 (CET)",
            "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n\tby dpdk.org (Postfix) with ESMTP id E24662C2F\n\tfor <dev@dpdk.org>; Tue, 26 Mar 2019 07:11:20 +0100 (CET)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t25 Mar 2019 23:11:19 -0700",
            "from dpdk26.sh.intel.com ([10.67.110.164])\n\tby fmsmga001.fm.intel.com with ESMTP; 25 Mar 2019 23:11:18 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.60,271,1549958400\"; d=\"scan'208\";a=\"158420066\"",
        "From": "Wenzhuo Lu <wenzhuo.lu@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Wenzhuo Lu <wenzhuo.lu@intel.com>",
        "Date": "Tue, 26 Mar 2019 14:16:43 +0800",
        "Message-Id": "<1553581011-94181-1-git-send-email-wenzhuo.lu@intel.com>",
        "X-Mailer": "git-send-email 1.9.3",
        "In-Reply-To": "<1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com>",
        "References": "<1551340136-83843-1-git-send-email-wenzhuo.lu@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v7 0/8] Support vector instructions on ICE",
        "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>"
    },
    "content": "Use SSE and AVX2 instructions in ICE RX and TX path.\n\n---\nv2:\n - Updated feature doc.\n - Fixed checklog and checkpatch issues.\n\nv3:\n - Fixed potential compile issue on non-X86 platform.\n\nv4:\n - Removed compile configure, CONFIG_RTE_LIBRTE_ICE_INC_VECTOR.\n - Fixed checkpatch warnings.\n - Added more explanation of vector path in the device document.\n - Some other minor change.\n\nv5:\n - Fixed a compile issue.\n - Fixed a doc build warning.\n\nv6:\n - Added prefix \"ice_\" for ICE specific functions.\n - Added unlikely for rarely used code.\n\nv7:\n - Reserved the original buffer release functions.\n\nWenzhuo Lu (8):\n  net/ice: fix Tx function setting\n  net/ice: add pointer for queue buffer release\n  net/ice: support vector SSE in RX\n  net/ice: support Rx scatter SSE vector\n  net/ice: support Tx SSE vector\n  net/ice: support Rx AVX2 vector\n  net/ice: support Rx scatter AVX2 vector\n  net/ice: support vector AVX2 in TX\n\n doc/guides/nics/features/ice_vec.ini   |  35 ++\n doc/guides/nics/ice.rst                |  18 +\n doc/guides/rel_notes/release_19_05.rst |   4 +\n drivers/net/ice/Makefile               |  22 +\n drivers/net/ice/ice_ethdev.c           |   3 +-\n drivers/net/ice/ice_ethdev.h           |   2 +\n drivers/net/ice/ice_rxtx.c             |  92 +++-\n drivers/net/ice/ice_rxtx.h             |  39 +-\n drivers/net/ice/ice_rxtx_vec_avx2.c    | 844 +++++++++++++++++++++++++++++++++\n drivers/net/ice/ice_rxtx_vec_common.h  | 293 ++++++++++++\n drivers/net/ice/ice_rxtx_vec_sse.c     | 660 ++++++++++++++++++++++++++\n drivers/net/ice/meson.build            |  19 +\n 12 files changed, 2023 insertions(+), 8 deletions(-)\n create mode 100644 doc/guides/nics/features/ice_vec.ini\n create mode 100644 drivers/net/ice/ice_rxtx_vec_avx2.c\n create mode 100644 drivers/net/ice/ice_rxtx_vec_common.h\n create mode 100644 drivers/net/ice/ice_rxtx_vec_sse.c"
}