get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 77881,
    "url": "http://patchwork.dpdk.org/api/patches/77881/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/patch/20200916090944.125128-1-mb@smartsharesystems.com/",
    "project": {
        "id": 1,
        "url": "http://patchwork.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": "<20200916090944.125128-1-mb@smartsharesystems.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20200916090944.125128-1-mb@smartsharesystems.com",
    "date": "2020-09-16T09:09:42",
    "name": "[v2,0/2] mbuf: minor cleanup",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 591,
        "url": "http://patchwork.dpdk.org/api/people/591/?format=api",
        "name": "Morten Brørup",
        "email": "mb@smartsharesystems.com"
    },
    "delegate": null,
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/20200916090944.125128-1-mb@smartsharesystems.com/mbox/",
    "series": [],
    "comments": "http://patchwork.dpdk.org/api/patches/77881/comments/",
    "check": "pending",
    "checks": "http://patchwork.dpdk.org/api/patches/77881/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 353A9A04C7;\n\tWed, 16 Sep 2020 11:09:53 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id E6E981C1FB;\n\tWed, 16 Sep 2020 11:09:51 +0200 (CEST)",
            "from smartserver.smartsharesystems.com\n (smartserver.smartsharesystems.com [77.243.40.215])\n by dpdk.org (Postfix) with ESMTP id F15721C1F8\n for <dev@dpdk.org>; Wed, 16 Sep 2020 11:09:49 +0200 (CEST)",
            "from dkrd2.smartsharesys.local ([192.168.4.12]) by\n smartserver.smartsharesystems.com with Microsoft SMTPSVC(6.0.3790.4675);\n Wed, 16 Sep 2020 11:09:46 +0200"
        ],
        "From": "=?utf-8?q?Morten_Br=C3=B8rup?= <mb@smartsharesystems.com>",
        "To": "olivier.matz@6wind.com,\n\tthomas@monjalon.net",
        "Cc": "dev@dpdk.org, =?utf-8?q?Morten_Br=C3=B8rup?= <mb@smartsharesystems.com>",
        "Date": "Wed, 16 Sep 2020 11:09:42 +0200",
        "Message-Id": "<20200916090944.125128-1-mb@smartsharesystems.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "X-OriginalArrivalTime": "16 Sep 2020 09:09:46.0944 (UTC)\n FILETIME=[1FC27400:01D68C09]",
        "Subject": "[dpdk-dev] [PATCH v2 0/2] mbuf: minor cleanup",
        "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": "The mbuf header files had some commenting style errors that affected the\nAPI documentation.\nAlso, the RTE_ prefix was missing on a macro and a definition.\n\nThis cleanup was also discussed here:\nhttp://inbox.dpdk.org/dev/98CBD80474FA8B44BF855DF32C47DC35C6111E@smartserver.smartshare.dk/\n\nPlease note:\nThis patch does not touch the offload and attachment flags that are missing\nthe RTE_ prefix. I would rather leave that to another patch from someone who\ncan also write a devtools script to help converting drivers and applications\nto the new names.\n\nv2:\n* Use RTE_MBUF_PORT_INVALID intead of MBUF_INVALID_PORT in rte_mbuf.c.\n\n\nMorten Brørup (2):\n  mbuf: minor cleanup\n  mbuf: minor cleanup\n\n lib/librte_mbuf/rte_mbuf.c      |  4 +--\n lib/librte_mbuf/rte_mbuf.h      | 47 ++++++++++++++++++++-------------\n lib/librte_mbuf/rte_mbuf_core.h |  9 ++++---\n 3 files changed, 37 insertions(+), 23 deletions(-)",
    "diff": null,
    "prefixes": [
        "v2",
        "0/2"
    ]
}