get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/91568/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 91568,
    "url": "https://patches.dpdk.org/api/patches/91568/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1618485564-128533-1-git-send-email-haifeil@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": "<1618485564-128533-1-git-send-email-haifeil@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1618485564-128533-1-git-send-email-haifeil@nvidia.com",
    "date": "2021-04-15T11:19:22",
    "name": "[v3,0/2] support single flow dump on MLX5 PMD",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 2131,
        "url": "https://patches.dpdk.org/api/people/2131/?format=api",
        "name": "Haifei Luo",
        "email": "haifeil@nvidia.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1618485564-128533-1-git-send-email-haifeil@nvidia.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/91568/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/91568/checks/",
    "tags": {},
    "related": [],
    "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 78F8EA0C3F;\n\tThu, 15 Apr 2021 13:19:29 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 4BE1D161AA8;\n\tThu, 15 Apr 2021 13:19:29 +0200 (CEST)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id 1464916192A\n for <dev@dpdk.org>; Thu, 15 Apr 2021 13:19:27 +0200 (CEST)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n haifeil@nvidia.com) with SMTP; 15 Apr 2021 14:19:27 +0300",
            "from nvidia.com (gen-l-vrt-173.mtl.labs.mlnx [10.234.173.1])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 13FBJR8f024937;\n Thu, 15 Apr 2021 14:19:27 +0300"
        ],
        "From": "Haifei Luo <haifeil@nvidia.com>",
        "To": "dev@dpdk.org",
        "Cc": "orika@nvidia.com, viacheslavo@nvidia.com, rasland@nvidia.com,\n xuemingl@nvidia.com, haifeil@nvidia.com",
        "Date": "Thu, 15 Apr 2021 14:19:22 +0300",
        "Message-Id": "<1618485564-128533-1-git-send-email-haifeil@nvidia.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1618384952-179763-1-git-send-email-haifeil@nvidia.com>",
        "References": "<1618384952-179763-1-git-send-email-haifeil@nvidia.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/2] support single flow dump on MLX5 PMD",
        "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": "Dump information for all flows are supported and it is\nuseful to dump one flow.\n\nAdd single flow dump support on MLX5 PMD.\n\nModify API mlx5_flow_dev_dump to support.Modify mlx5_socket \nsince one extra arg flow_ptr is added.\n\nThe data structure sent to DPDK application from the utility triggering\nthe flow dumps should be packed and endianness must be specified.\n\nThe native host endianness can be used, all exchange happens within\nthe same host (we use sendmsg aux data and share the file handle,\nremote approach is not applicable, no inter-host communication happens).\n\nThe message structure to dump one/all flow(s):\n    struct mlx5_flow_dump_req {\n        uint32_t port_id;\n        uint64_t flow_ptr;\n    } __rte_packed;\n\nIf flow_ptr is 0, all flows for the specified port will be dumped.\n\nDepends-on: series=16367  (\"single flow dump\")\nhttp://patchwork.dpdk.org/project/dpdk/list/?series=16367\n\nV2: Rebase to fix apply patch failure.\nV3: Fix commments. Modify data structures sent to DPDK application.\n\nHaifei Luo (2):\n  common/mlx5: add mlx5 APIs for single flow dump feature\n  net/mlx5: add mlx5 APIs for single flow dump feature\n\n drivers/common/mlx5/linux/meson.build |  6 +++--\n drivers/common/mlx5/linux/mlx5_glue.c | 13 ++++++++++\n drivers/common/mlx5/linux/mlx5_glue.h |  1 +\n drivers/common/mlx5/mlx5_devx_cmds.c  | 14 +++++++++++\n drivers/common/mlx5/mlx5_devx_cmds.h  |  2 ++\n drivers/common/mlx5/version.map       |  1 +\n drivers/net/mlx5/linux/mlx5_os.h      |  3 +++\n drivers/net/mlx5/linux/mlx5_socket.c  | 47 +++++++++++++++++++++++++++--------\n drivers/net/mlx5/mlx5.h               | 10 ++++++++\n drivers/net/mlx5/mlx5_flow.c          | 30 ++++++++++++++++++++--\n 10 files changed, 113 insertions(+), 14 deletions(-)",
    "diff": null,
    "prefixes": [
        "v3",
        "0/2"
    ]
}