get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 86282,
    "url": "http://patches.dpdk.org/api/patches/86282/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1610373560-253158-1-git-send-email-matan@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": "<1610373560-253158-1-git-send-email-matan@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1610373560-253158-1-git-send-email-matan@nvidia.com",
    "date": "2021-01-11T13:59:10",
    "name": "[00/10] add mlx5 compress PMD",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1911,
        "url": "http://patches.dpdk.org/api/people/1911/?format=api",
        "name": "Matan Azrad",
        "email": "matan@nvidia.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1610373560-253158-1-git-send-email-matan@nvidia.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/86282/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/86282/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 044CFA09FF;\n\tMon, 11 Jan 2021 14:59:29 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id E4B93140CDE;\n\tMon, 11 Jan 2021 14:59:28 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id 51273140CC2\n for <dev@dpdk.org>; Mon, 11 Jan 2021 14:59:27 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n matan@nvidia.com) with SMTP; 11 Jan 2021 15:59:25 +0200",
            "from pegasus25.mtr.labs.mlnx. (pegasus25.mtr.labs.mlnx\n [10.210.16.10])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 10BDxPKH010436;\n Mon, 11 Jan 2021 15:59:25 +0200"
        ],
        "From": "Matan Azrad <matan@nvidia.com>",
        "To": "dev@dpdk.org",
        "Cc": "Thomas Monjalon <thomas@monjalon.net>,\n Ashish Gupta <ashish.gupta@marvell.com>,\n Fiona Trahe <fiona.trahe@intel.com>",
        "Date": "Mon, 11 Jan 2021 13:59:10 +0000",
        "Message-Id": "<1610373560-253158-1-git-send-email-matan@nvidia.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "Subject": "[dpdk-dev] [PATCH 00/10] add  mlx5 compress 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": "Add a new compress PMD for Mellanox devices.\n\nThe MLX5 compress driver library provides support for Mellanox\nBlueField 2 families of 25/50/100/200 Gb/s adapters.\n\nUsing the BlueField 2 device, the compress class operations can be run in\nparallel to the net, vdpa, and regex class operations.\n\nThis driver is depending on rdma-core like the other mlx5 PMDs, also it\nis going to use mlx5 DevX to create HW objects directly by the FW.\n\nAdd the probing functions, PCI bus connectivity, HW capabilities checks\nand some basic objects preparations.\n\nDocumentations are not ready yet, will send later.\n\nMatan Azrad (10):\n  common/mlx5: add DevX attributes for compress\n  drivers: introduce mlx5 compress PMD\n  compress/mlx5: support basic control operations\n  common/mlx5: add compress primitives\n  compress/mlx5: support queue pair operations\n  compress/mlx5: add transformation operations\n  compress/mlx5: add memory region management\n  compress/mlx5: add data-path functions\n  compress/mlx5: add statistics operations\n  compress/mlx5: add the supported capabilities\n\n MAINTAINERS                                 |   4 +\n drivers/common/mlx5/mlx5_common.h           |   1 +\n drivers/common/mlx5/mlx5_common_pci.c       |   7 +\n drivers/common/mlx5/mlx5_common_pci.h       |  36 +-\n drivers/common/mlx5/mlx5_devx_cmds.c        |  10 +\n drivers/common/mlx5/mlx5_devx_cmds.h        |   7 +\n drivers/common/mlx5/mlx5_prm.h              |  59 +-\n drivers/compress/meson.build                |   2 +-\n drivers/compress/mlx5/meson.build           |  26 +\n drivers/compress/mlx5/mlx5_compress.c       | 863 ++++++++++++++++++++++++++++\n drivers/compress/mlx5/mlx5_compress_utils.h |  20 +\n drivers/compress/mlx5/version.map           |   3 +\n 12 files changed, 1015 insertions(+), 23 deletions(-)\n create mode 100644 drivers/compress/mlx5/meson.build\n create mode 100644 drivers/compress/mlx5/mlx5_compress.c\n create mode 100644 drivers/compress/mlx5/mlx5_compress_utils.h\n create mode 100644 drivers/compress/mlx5/version.map",
    "diff": null,
    "prefixes": [
        "00/10"
    ]
}