Show a cover letter.

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

{
    "id": 74244,
    "url": "http://patches.dpdk.org/api/covers/74244/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1594909426-64843-1-git-send-email-bingz@mellanox.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": "<1594909426-64843-1-git-send-email-bingz@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1594909426-64843-1-git-send-email-bingz@mellanox.com",
    "date": "2020-07-16T14:23:39",
    "name": "[v3,0/7] add eCPRI support in mlx5 driver",
    "submitter": {
        "id": 1357,
        "url": "http://patches.dpdk.org/api/people/1357/?format=api",
        "name": "Bing Zhao",
        "email": "bingz@mellanox.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/1594909426-64843-1-git-send-email-bingz@mellanox.com/mbox/",
    "series": [
        {
            "id": 11098,
            "url": "http://patches.dpdk.org/api/series/11098/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=11098",
            "date": "2020-07-16T14:23:39",
            "name": "add eCPRI support in mlx5 driver",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/11098/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/74244/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 55572A0549;\n\tThu, 16 Jul 2020 16:24:06 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 0FB111BEAA;\n\tThu, 16 Jul 2020 16:24:06 +0200 (CEST)",
            "from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130])\n by dpdk.org (Postfix) with ESMTP id 50F681BEA8\n for <dev@dpdk.org>; Thu, 16 Jul 2020 16:24:04 +0200 (CEST)"
        ],
        "From": "Bing Zhao <bingz@mellanox.com>",
        "To": "orika@mellanox.com,\n\tviacheslavo@mellanox.com",
        "Cc": "rasland@mellanox.com, matan@mellanox.com, dev@dpdk.org,\n netanelg@mellanox.com",
        "Date": "Thu, 16 Jul 2020 22:23:39 +0800",
        "Message-Id": "<1594909426-64843-1-git-send-email-bingz@mellanox.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1594907399-63329-1-git-send-email-bingz@mellanox.com>",
        "References": "<1594907399-63329-1-git-send-email-bingz@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/7] add eCPRI support in mlx5 driver",
        "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 patch set is to add the eCPRI support of flow rules in mlx5 PMD\ndriver. Right now, only eCPRI over Ethernet layer (including VLAN)\nis supported. eCPRI over UDP will be supported in the future. If the\nflow rule to be inserted is not supported, PMD driver will return\nerror to indicate the reason of the failure.\n\nv2: listed as below\n    1. added document updates\n    2. add NIC / FW capacity check\n    3. fix mask of type in common header check and code cleanup\nv3: fix the wrong member name in the private structure\n\nBing Zhao (7):\n  net/mlx5: add flow validation of eCPRI header\n  net/mlx5: add flow translation of eCPRI header\n  common/mlx5: add flex parser DevX structures\n  common/mlx5: adding DevX command for flex parsers\n  net/mlx5: create and destroy eCPRI flex parser\n  net/mlx5: add eCPRI flex parser capacity check\n  doc: update release notes and guides for eCPRI\n\n doc/guides/nics/mlx5.rst                        |   5 +\n doc/guides/rel_notes/release_20_08.rst          |   1 +\n drivers/common/mlx5/mlx5_devx_cmds.c            | 170 +++++++++++++++++++++++-\n drivers/common/mlx5/mlx5_devx_cmds.h            |  52 ++++++++\n drivers/common/mlx5/mlx5_prm.h                  | 115 +++++++++++++++-\n drivers/common/mlx5/rte_common_mlx5_version.map |   2 +\n drivers/net/mlx5/mlx5.c                         | 107 +++++++++++++++\n drivers/net/mlx5/mlx5.h                         |  19 +++\n drivers/net/mlx5/mlx5_flow.c                    | 107 ++++++++++++++-\n drivers/net/mlx5/mlx5_flow.h                    |   9 ++\n drivers/net/mlx5/mlx5_flow_dv.c                 | 126 ++++++++++++++++++\n 11 files changed, 704 insertions(+), 9 deletions(-)"
}