Show a cover letter.

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

{
    "id": 86553,
    "url": "https://patches.dpdk.org/api/covers/86553/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/cover/1610609088-204833-1-git-send-email-jiaweiw@nvidia.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<1610609088-204833-1-git-send-email-jiaweiw@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1610609088-204833-1-git-send-email-jiaweiw@nvidia.com",
    "date": "2021-01-14T07:24:44",
    "name": "[v3,0/4] Add RSS action support in the sample sub-actions list",
    "submitter": {
        "id": 1939,
        "url": "https://patches.dpdk.org/api/people/1939/?format=api",
        "name": "Jiawei Wang",
        "email": "jiaweiw@nvidia.com"
    },
    "mbox": "https://patches.dpdk.org/project/dpdk/cover/1610609088-204833-1-git-send-email-jiaweiw@nvidia.com/mbox/",
    "series": [
        {
            "id": 14722,
            "url": "https://patches.dpdk.org/api/series/14722/?format=api",
            "web_url": "https://patches.dpdk.org/project/dpdk/list/?series=14722",
            "date": "2021-01-14T07:24:47",
            "name": "Add RSS action support in the sample sub-actions list",
            "version": 3,
            "mbox": "https://patches.dpdk.org/series/14722/mbox/"
        }
    ],
    "comments": "https://patches.dpdk.org/api/covers/86553/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from mails.dpdk.org (mails.dpdk.org [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 6142DA0A02;\n\tThu, 14 Jan 2021 08:25:10 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id AADCD140FA8;\n\tThu, 14 Jan 2021 08:24:58 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id 9396B140F97\n for <dev@dpdk.org>; Thu, 14 Jan 2021 08:24:54 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n jiaweiw@nvidia.com) with SMTP; 14 Jan 2021 09:24:48 +0200",
            "from nvidia.com (gen-l-vrt-281.mtl.labs.mlnx [10.237.44.1])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 10E7OmcU001294;\n Thu, 14 Jan 2021 09:24:48 +0200"
        ],
        "From": "Jiawei Wang <jiaweiw@nvidia.com>",
        "To": "ferruh.yigit@intel.com, viacheslavo@nvidia.com, matan@nvidia.com,\n orika@nvidia.com",
        "Cc": "dev@dpdk.org, rasland@nvidia.com",
        "Date": "Thu, 14 Jan 2021 09:24:44 +0200",
        "Message-Id": "<1610609088-204833-1-git-send-email-jiaweiw@nvidia.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1610445689-389472-1-git-send-email-jiaweiw@nvidia.com>",
        "References": "<1610445689-389472-1-git-send-email-jiaweiw@nvidia.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/4] Add RSS action support in the sample\n sub-actions list",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.29",
        "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": "Currently the sample flow only supports Queue action in NIC-Rx domain.\nThis patchset adds the RSS action support in the sample sub-actions list.\n\nThe examples for the sample flow with RSS action and result as below:\n    set sample_actions 0 mark id  0x12 / rss queues  0 1 2 3 end  / end\n    flow create 0 ingress group 1 pattern eth / end actions sample ratio 1 index 0 / jump group 2 / end\n\nThis flow will result in all the matched ingress packets will be\njumped to the next table, and the each packet will be marked with 0x12\nand duplicated to rss queues of the control application.\n\nv3:\n* Fix the 'maybe-uninitialized' build error in commit 'net/mlx5: fix the unnecessary checking for RSS action'\n\nv2:\n* Rebase\n* Update commit message and document description\n* Split the commit into one fix for rss checking and another for sample rss feature\n\nJiawei Wang (4):\n  app/testpmd: add RSS support in sample action\n  net/mlx5: fix the unnecessary checking for RSS action\n  net/mlx5: handle the RSS action in the sample\n  doc: update RSS support in sample action\n\n app/test-pmd/cmdline_flow.c            |  26 ++++\n doc/guides/nics/mlx5.rst               |   1 +\n doc/guides/rel_notes/release_21_02.rst |   5 +\n drivers/net/mlx5/mlx5_flow.c           |  24 +++-\n drivers/net/mlx5/mlx5_flow_dv.c        | 226 +++++++++++++++++++++++----------\n 5 files changed, 207 insertions(+), 75 deletions(-)"
}