get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 68226,
    "url": "http://patches.dpdk.org/api/patches/68226/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1586740309-449310-1-git-send-email-suanmingm@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": "<1586740309-449310-1-git-send-email-suanmingm@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1586740309-449310-1-git-send-email-suanmingm@mellanox.com",
    "date": "2020-04-13T01:11:39",
    "name": "[00/10] net/mlx5: optimize flow resource allocation",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1358,
        "url": "http://patches.dpdk.org/api/people/1358/?format=api",
        "name": "Suanming Mou",
        "email": "suanmingm@mellanox.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1586740309-449310-1-git-send-email-suanmingm@mellanox.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/68226/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/68226/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 dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id D35B1A0577;\n\tMon, 13 Apr 2020 03:11:58 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id C9C732986;\n\tMon, 13 Apr 2020 03:11:57 +0200 (CEST)",
            "from git-send-mailer.rdmz.labs.mlnx (unknown [37.142.13.130])\n by dpdk.org (Postfix) with ESMTP id 668601B53\n for <dev@dpdk.org>; Mon, 13 Apr 2020 03:11:56 +0200 (CEST)"
        ],
        "From": "Suanming Mou <suanmingm@mellanox.com>",
        "To": "",
        "Cc": "rasland@mellanox.com,\n\tdev@dpdk.org",
        "Date": "Mon, 13 Apr 2020 09:11:39 +0800",
        "Message-Id": "<1586740309-449310-1-git-send-email-suanmingm@mellanox.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "Subject": "[dpdk-dev] [PATCH 00/10] net/mlx5: optimize flow resource allocation",
        "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": "Currently, flow may allocate several action resources during creation.\nBoth allocate the individual resources and save the object handles have\nbig memory overhead for the flow.\n\nIndexed memory pool is introduced to optimize the memory overhead. The\nresources can be allocated from the resource's own individual memory pool\nand only the 32-bits index is saved to the flow.\n\nIn this case, it saves MALLOC_ELEM_OVERHEAD and 4 bytes for every flow\nresources.\n\nThis patch series depends on the path which has been acked as below:\nhttps://patches.dpdk.org/patch/68143/\n\nSuanming Mou (10):\n  net/mlx5: add indexed memory pool\n  net/mlx5: add trunk dynamic grow for indexed pool\n  net/mlx5: add trunk release for indexed pool\n  net/mlx5: convert encap/decap resource to indexed\n  net/mlx5: convert push VLAN resource to indexed\n  net/mlx5: convert tag resource to indexed\n  net/mlx5: convert port id action to indexed\n  net/mlx5: convert jump resource to indexed\n  net/mlx5: convert hrxq to indexed\n  net/mlx5: convert flow dev handle to indexed\n\n drivers/net/mlx5/mlx5.c            | 148 ++++++++++++++-\n drivers/net/mlx5/mlx5.h            |  25 ++-\n drivers/net/mlx5/mlx5_flow.c       |  23 ++-\n drivers/net/mlx5/mlx5_flow.h       |  47 +++--\n drivers/net/mlx5/mlx5_flow_dv.c    | 271 +++++++++++++++++++---------\n drivers/net/mlx5/mlx5_flow_verbs.c |  53 ++++--\n drivers/net/mlx5/mlx5_rxq.c        |  47 +++--\n drivers/net/mlx5/mlx5_rxtx.h       |  22 +--\n drivers/net/mlx5/mlx5_utils.c      | 361 +++++++++++++++++++++++++++++++++++++\n drivers/net/mlx5/mlx5_utils.h      | 247 +++++++++++++++++++++++++\n 10 files changed, 1070 insertions(+), 174 deletions(-)",
    "diff": null,
    "prefixes": [
        "00/10"
    ]
}