Show a cover letter.

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

{
    "id": 85234,
    "url": "http://patches.dpdk.org/api/covers/85234/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1608123735-3662-1-git-send-email-shirik@nvidia.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": "<1608123735-3662-1-git-send-email-shirik@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1608123735-3662-1-git-send-email-shirik@nvidia.com",
    "date": "2020-12-16T13:02:07",
    "name": "[RFC,v3,0/8] ethdev: introduce GENEVE header TLV option item",
    "submitter": {
        "id": 1894,
        "url": "http://patches.dpdk.org/api/people/1894/?format=api",
        "name": "Shiri Kuzin",
        "email": "shirik@nvidia.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/1608123735-3662-1-git-send-email-shirik@nvidia.com/mbox/",
    "series": [
        {
            "id": 14330,
            "url": "http://patches.dpdk.org/api/series/14330/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=14330",
            "date": "2020-12-16T13:02:07",
            "name": "ethdev: introduce GENEVE header TLV option item",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/14330/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/85234/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 B0049A09EF;\n\tWed, 16 Dec 2020 14:02:31 +0100 (CET)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 1D645C9A0;\n\tWed, 16 Dec 2020 14:02:30 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by dpdk.org (Postfix) with ESMTP id 27905C970\n for <dev@dpdk.org>; Wed, 16 Dec 2020 14:02:28 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n shirik@nvidia.com) with SMTP; 16 Dec 2020 15:02:22 +0200",
            "from nvidia.com (nps-server-11.mtl.labs.mlnx [10.7.12.71])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 0BGD2M19011463;\n Wed, 16 Dec 2020 15:02:22 +0200"
        ],
        "From": "Shiri Kuzin <shirik@nvidia.com>",
        "To": "dev@dpdk.org",
        "Cc": "viacheslavo@nvidia.com, adrien.mazarguil@6wind.com, rasland@nvidia.com",
        "Date": "Wed, 16 Dec 2020 15:02:07 +0200",
        "Message-Id": "<1608123735-3662-1-git-send-email-shirik@nvidia.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1599118768-13265-1-git-send-email-shirik@nvidia.com>",
        "References": "<1599118768-13265-1-git-send-email-shirik@nvidia.com>",
        "Subject": "[dpdk-dev] [RFC v3 0/8] ethdev: introduce GENEVE header TLV option\n\titem",
        "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": "The Geneve tunneling protocol is designed to allow the\nuser to specify some data context on the packet.\nThe GENEVE TLV (Type-Length-Variable) Option\nis the mean intended to present the user data.\n\nIn order to support GENEVE TLV Option the new rte_flow\nitem \"rte_flow_item_geneve_opt\" is introduced.\nThe new item contains the values and masks for the\nfollowing fields:\n-option class\n-option type\n-length\n-data\n\nThe usage example:\n\"flow create 0 ingress pattern eth / ipv4 / udp / geneve vni is 100 /\ngeneve-opt class is 5 length is 1 type is 0 data is 0x66998800 /\nend actions count / drop / end\"\n\n\nNew item will be added to testpmd to support\nraw encap/decap action.\n\n\nShiri Kuzin (7):\n  lib/librte_ethdev: introduce GENEVE header TLV option item\n  common/mlx5: check GENEVE TLV support in HCA attributes\n  common/mlx5: create GENEVE TLV option object with DevX\n  net/mlx5: create GENEVE TLV option management\n  net/mlx5: add GENEVE TLV option flow validation\n  net/mlx5: add GENEVE TLV option flow translation\n  doc: update GENEVE TLV option support\n\nViacheslav Ovsiienko (1):\n  app/testpmd: add GENEVE option item support\n\n app/test-pmd/cmdline_flow.c                 | 102 ++++++++++++++-\n doc/guides/nics/mlx5.rst                    |  18 ++-\n doc/guides/testpmd_app_ug/testpmd_funcs.rst |   8 ++\n drivers/common/mlx5/mlx5_devx_cmds.c        |  61 +++++++++\n drivers/common/mlx5/mlx5_devx_cmds.h        |   9 ++\n drivers/common/mlx5/mlx5_prm.h              |  28 ++++-\n drivers/common/mlx5/version.map             |   1 +\n drivers/net/mlx5/mlx5.c                     |   2 +\n drivers/net/mlx5/mlx5.h                     |  13 ++\n drivers/net/mlx5/mlx5_flow.c                | 120 ++++++++++++++++++\n drivers/net/mlx5/mlx5_flow.h                |  11 ++\n drivers/net/mlx5/mlx5_flow_dv.c             | 188 +++++++++++++++++++++++++++-\n lib/librte_ethdev/rte_flow.c                |   1 +\n lib/librte_ethdev/rte_flow.h                |  33 +++++\n 14 files changed, 584 insertions(+), 11 deletions(-)"
}