Show a cover letter.

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

{
    "id": 74282,
    "url": "http://patches.dpdk.org/api/covers/74282/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1594969911-105341-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": "<1594969911-105341-1-git-send-email-bingz@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1594969911-105341-1-git-send-email-bingz@mellanox.com",
    "date": "2020-07-17T07:11:44",
    "name": "[v4,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/1594969911-105341-1-git-send-email-bingz@mellanox.com/mbox/",
    "series": [
        {
            "id": 11119,
            "url": "http://patches.dpdk.org/api/series/11119/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=11119",
            "date": "2020-07-17T07:11:44",
            "name": "add eCPRI support in mlx5 driver",
            "version": 4,
            "mbox": "http://patches.dpdk.org/series/11119/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/74282/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 83548A0528;\n\tFri, 17 Jul 2020 09:11:59 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 17C7B1BED8;\n\tFri, 17 Jul 2020 09:11:58 +0200 (CEST)",
            "from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130])\n by dpdk.org (Postfix) with ESMTP id 9184F1BED2\n for <dev@dpdk.org>; Fri, 17 Jul 2020 09:11:56 +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": "Fri, 17 Jul 2020 15:11:44 +0800",
        "Message-Id": "<1594969911-105341-1-git-send-email-bingz@mellanox.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1594909426-64843-1-git-send-email-bingz@mellanox.com>",
        "References": "<1594909426-64843-1-git-send-email-bingz@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v4 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\nv4: rebased and resolve conflict\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(-)"
}