get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 20656,
    "url": "https://patches.dpdk.org/api/patches/20656/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1487695964-15593-2-git-send-email-bruce.richardson@intel.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<1487695964-15593-2-git-send-email-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1487695964-15593-2-git-send-email-bruce.richardson@intel.com",
    "date": "2017-02-21T16:52:41",
    "name": "[dpdk-dev,1/4] app/pdump: fix duplicate macro definition",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "a86c01e089d6dc0068688a45a48c00364c651e64",
    "submitter": {
        "id": 20,
        "url": "https://patches.dpdk.org/api/people/20/?format=api",
        "name": "Bruce Richardson",
        "email": "bruce.richardson@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1487695964-15593-2-git-send-email-bruce.richardson@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/20656/comments/",
    "check": "success",
    "checks": "https://patches.dpdk.org/api/patches/20656/checks/",
    "tags": {},
    "related": [],
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id 7203B5599;\n\tTue, 21 Feb 2017 17:53:36 +0100 (CET)",
            "from mga03.intel.com (mga03.intel.com [134.134.136.65])\n\tby dpdk.org (Postfix) with ESMTP id 37F9C2C24\n\tfor <dev@dpdk.org>; Tue, 21 Feb 2017 17:53:30 +0100 (CET)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t21 Feb 2017 08:53:27 -0800",
            "from sivswdev01.ir.intel.com (HELO localhost.localdomain)\n\t([10.237.217.45])\n\tby fmsmga002.fm.intel.com with ESMTP; 21 Feb 2017 08:53:26 -0800"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos; i=\"5.35,190,1484035200\"; d=\"scan'208\";\n\ta=\"1132935261\"",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Bruce Richardson <bruce.richardson@intel.com>",
        "Date": "Tue, 21 Feb 2017 16:52:41 +0000",
        "Message-Id": "<1487695964-15593-2-git-send-email-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 1.7.0.7",
        "In-Reply-To": "<1487695964-15593-1-git-send-email-bruce.richardson@intel.com>",
        "References": "<1487695964-15593-1-git-send-email-bruce.richardson@intel.com>",
        "Subject": "[dpdk-dev] [PATCH 1/4] app/pdump: fix duplicate macro definition",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "RTE_RING_SZ_MASK is redefined here with the original definition in\nrte_ring.h. Since rte_ring.h is already included, just remove the\nduplicate definition here.\n\nFixes: caa7028276b8 (\"app/pdump: add tool for packet capturing\")\n\nSigned-off-by: Bruce Richardson <bruce.richardson@intel.com>\n---\n app/pdump/main.c | 1 -\n 1 file changed, 1 deletion(-)",
    "diff": "diff --git a/app/pdump/main.c b/app/pdump/main.c\nindex f3ef181..b88090d 100644\n--- a/app/pdump/main.c\n+++ b/app/pdump/main.c\n@@ -92,7 +92,6 @@\n #define BURST_SIZE 32\n #define NUM_VDEVS 2\n \n-#define RTE_RING_SZ_MASK  (unsigned)(0x0fffffff) /**< Ring size mask */\n /* true if x is a power of 2 */\n #define POWEROF2(x) ((((x)-1) & (x)) == 0)\n \n",
    "prefixes": [
        "dpdk-dev",
        "1/4"
    ]
}