get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 68180,
    "url": "http://patches.dpdk.org/api/patches/68180/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1586604092-10476-1-git-send-email-wangyunjian@huawei.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": "<1586604092-10476-1-git-send-email-wangyunjian@huawei.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1586604092-10476-1-git-send-email-wangyunjian@huawei.com",
    "date": "2020-04-11T11:21:32",
    "name": "[v4,0/5] fixes for tap",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 551,
        "url": "http://patches.dpdk.org/api/people/551/?format=api",
        "name": "Yunjian Wang",
        "email": "wangyunjian@huawei.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1586604092-10476-1-git-send-email-wangyunjian@huawei.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/68180/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/68180/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 1BF10A059F;\n\tSat, 11 Apr 2020 13:21:57 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 6D48D1C10F;\n\tSat, 11 Apr 2020 13:21:56 +0200 (CEST)",
            "from huawei.com (szxga04-in.huawei.com [45.249.212.190])\n by dpdk.org (Postfix) with ESMTP id 230E21C10E\n for <dev@dpdk.org>; Sat, 11 Apr 2020 13:21:53 +0200 (CEST)",
            "from DGGEMS412-HUB.china.huawei.com (unknown [172.30.72.58])\n by Forcepoint Email with ESMTP id 1FA215BBB5CC23B50690\n for <dev@dpdk.org>; Sat, 11 Apr 2020 19:21:51 +0800 (CST)",
            "from localhost (10.173.251.152) by DGGEMS412-HUB.china.huawei.com\n (10.3.19.212) with Microsoft SMTP Server id 14.3.487.0; Sat, 11 Apr 2020\n 19:21:44 +0800"
        ],
        "From": "wangyunjian <wangyunjian@huawei.com>",
        "To": "<dev@dpdk.org>",
        "CC": "<ferruh.yigit@intel.com>, <keith.wiles@intel.com>,\n <jerry.lilijun@huawei.com>, <xudingke@huawei.com>, Yunjian Wang\n <wangyunjian@huawei.com>",
        "Date": "Sat, 11 Apr 2020 19:21:32 +0800",
        "Message-ID": "<1586604092-10476-1-git-send-email-wangyunjian@huawei.com>",
        "X-Mailer": "git-send-email 1.9.5.msysgit.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain",
        "X-Originating-IP": "[10.173.251.152]",
        "X-CFilter-Loop": "Reflected",
        "Subject": "[dpdk-dev]  [PATCH v4 0/5] fixes for tap",
        "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": "From: Yunjian Wang <wangyunjian@huawei.com>\n\nThis series include five fixes patches for tap PMD driver.\n\n--\nv4:\n* Update some code suggested by Ferruh Yigit and Stephen Hemminger\n* Update commit log\n* Add fix leak of fds on failure\nv3:\n* Add fix close a vaild fd and netlink socket file descriptor check\n  before close\nv2:\n* Add null check in tap_rxq_pool_free()\n\nYunjian Wang (5):\n  net/tap: fix mbuf double free when writev fails\n  net/tap: fix mbuf and mem leak during queue release\n  net/tap: fix check for mbuf's nb_segs failure\n  net/tap: fix close a valid fd\n  net/tap: fix leak of fds on failure\n\n drivers/net/tap/rte_eth_tap.c | 102 ++++++++++++++++++++--------------\n 1 file changed, 59 insertions(+), 43 deletions(-)",
    "diff": null,
    "prefixes": [
        "v4",
        "0/5"
    ]
}