get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 89699,
    "url": "http://patches.dpdk.org/api/patches/89699/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/cover.1616504799.git.zhouguoyang@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": "<cover.1616504799.git.zhouguoyang@huawei.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1616504799.git.zhouguoyang@huawei.com",
    "date": "2021-03-23T13:17:50",
    "name": "[v2,0/1] fix coredump when in secondary process",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 2039,
        "url": "http://patches.dpdk.org/api/people/2039/?format=api",
        "name": "Guoyang Zhou",
        "email": "zhouguoyang@huawei.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/cover.1616504799.git.zhouguoyang@huawei.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/89699/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/89699/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 63D0BA0A02;\n\tTue, 23 Mar 2021 14:10:17 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id E9CFE4069E;\n\tTue, 23 Mar 2021 14:10:16 +0100 (CET)",
            "from szxga07-in.huawei.com (szxga07-in.huawei.com [45.249.212.35])\n by mails.dpdk.org (Postfix) with ESMTP id 7656840689\n for <dev@dpdk.org>; Tue, 23 Mar 2021 14:10:15 +0100 (CET)",
            "from DGGEMS412-HUB.china.huawei.com (unknown [172.30.72.58])\n by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4F4WrX6TKZz92sn;\n Tue, 23 Mar 2021 21:08:12 +0800 (CST)",
            "from tester.localdomain (10.175.119.39) by\n DGGEMS412-HUB.china.huawei.com (10.3.19.212) with Microsoft SMTP Server id\n 14.3.498.0; Tue, 23 Mar 2021 21:10:03 +0800"
        ],
        "From": "Guoyang Zhou <zhouguoyang@huawei.com>",
        "To": "<dev@dpdk.org>",
        "CC": "<ferruh.yigit@intel.com>, <bluca@debian.org>,\n <cloud.wangxiaoyun@huawei.com>, <luoxianjun@huawei.com>,\n <yin.yinshi@huawei.com>, <luojiachen@huawei.com>, <zhouguoyang@huawei.com>,\n <chenlizhong@huawei.com>, <zengweiliang.zengweiliang@huawei.com>,\n <liqingqing3@huawei.com>",
        "Date": "Tue, 23 Mar 2021 21:17:50 +0800",
        "Message-ID": "<cover.1616504799.git.zhouguoyang@huawei.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain",
        "X-Originating-IP": "[10.175.119.39]",
        "X-CFilter-Loop": "Reflected",
        "Subject": "[dpdk-dev] [PATCH v2 0/1] fix coredump when in secondary process",
        "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": "Some apps, such as fstack, will use secondary process to access the\nmemory of eth_dev_ops, and they want to get the info of dev, but hinic\ndriver does not initialized it when in secondary process.\n\n--\nv1->v2:\n  - modify the patch title\n\nv1:\n  - fix coredump when PMD used by fstack\n\nGuoyang Zhou (1):\n  net/hinic: fix coredump when in secondary process\n\n drivers/net/hinic/base/hinic_compat.h | 25 ++++++++-----------------\n drivers/net/hinic/hinic_pmd_ethdev.c  |  5 +++++\n 2 files changed, 13 insertions(+), 17 deletions(-)",
    "diff": null,
    "prefixes": [
        "v2",
        "0/1"
    ]
}