get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 71483,
    "url": "http://patches.dpdk.org/api/patches/71483/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/cover.1591998771.git.rahul.lakkireddy@chelsio.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": "<cover.1591998771.git.rahul.lakkireddy@chelsio.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1591998771.git.rahul.lakkireddy@chelsio.com",
    "date": "2020-06-12T22:07:22",
    "name": "[0/5] net/cxgbe: fix rte_flow related hardware resource leaks",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 241,
        "url": "http://patches.dpdk.org/api/people/241/?format=api",
        "name": "Rahul Lakkireddy",
        "email": "rahul.lakkireddy@chelsio.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/cover.1591998771.git.rahul.lakkireddy@chelsio.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/71483/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/71483/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 17452A00BE;\n\tSat, 13 Jun 2020 00:20:12 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id A71871BF5F;\n\tSat, 13 Jun 2020 00:20:11 +0200 (CEST)",
            "from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8])\n by dpdk.org (Postfix) with ESMTP id B87AC1BEB3;\n Sat, 13 Jun 2020 00:20:09 +0200 (CEST)",
            "from localhost (scalar.blr.asicdesigners.com [10.193.185.94])\n by stargate.chelsio.com (8.13.8/8.13.8) with ESMTP id 05CMK7Y9009566;\n Fri, 12 Jun 2020 15:20:08 -0700"
        ],
        "From": "Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>",
        "To": "dev@dpdk.org",
        "Cc": "stable@dpdk.org, nirranjan@chelsio.com",
        "Date": "Sat, 13 Jun 2020 03:37:22 +0530",
        "Message-Id": "<cover.1591998771.git.rahul.lakkireddy@chelsio.com>",
        "X-Mailer": "git-send-email 2.5.3",
        "Subject": "[dpdk-dev] [PATCH 0/5] net/cxgbe: fix rte_flow related hardware\n\tresource leaks",
        "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": "This series of patches fix various hardware resource leaks in flow\ncreate failure and flow destroy paths.\n\nPatch 1 fixes Compressed Local IP (CLIP) entry leaks.\n\nPatch 2 fixes Layer 2 Table (L2T) entry leaks.\n\nPatch 3 fixes double Multi Port Switch (MPS) entry allocations due\nto flow validate and create, but only freed once during flow destroy.\n\nPatch 4 fixes Source MAC Table (SMT) entry leaks.\n\nPatch 5 fixes flow validation errors seen due to default masks set\nfor unrequested fields.\n\nThanks,\nRahul\n\nRahul Lakkireddy (5):\n  net/cxgbe: fix CLIP leak in filter error path\n  net/cxgbe: fix L2T leak in filter error and free path\n  net/cxgbe: fix double MPS alloc due to flow validate and create\n  net/cxgbe: fix SMT leak in filter error and free path\n  net/cxgbe: ignore flow default masks for unrequested fields\n\n drivers/net/cxgbe/cxgbe_filter.c | 158 ++++++++++++++++++-------------\n drivers/net/cxgbe/cxgbe_filter.h |   4 +-\n drivers/net/cxgbe/cxgbe_flow.c   | 137 +++++++++++++++------------\n drivers/net/cxgbe/smt.c          |   6 ++\n drivers/net/cxgbe/smt.h          |   1 +\n 5 files changed, 180 insertions(+), 126 deletions(-)",
    "diff": null,
    "prefixes": [
        "0/5"
    ]
}