get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 16388,
    "url": "https://patches.dpdk.org/api/patches/16388/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/932d0051cc30a749f810b70e6465cf77679e3c95.1475669648.git.pmatilai@redhat.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": "<932d0051cc30a749f810b70e6465cf77679e3c95.1475669648.git.pmatilai@redhat.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/932d0051cc30a749f810b70e6465cf77679e3c95.1475669648.git.pmatilai@redhat.com",
    "date": "2016-10-05T12:14:08",
    "name": "[dpdk-dev] ip_frag: fix missing dependency on librte_hash",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "e302488b073681748d58c35d9036eb8c5cc64eba",
    "submitter": {
        "id": 169,
        "url": "https://patches.dpdk.org/api/people/169/?format=api",
        "name": "Panu Matilainen",
        "email": "pmatilai@redhat.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/932d0051cc30a749f810b70e6465cf77679e3c95.1475669648.git.pmatilai@redhat.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/16388/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/16388/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 0E1608D9F;\n\tWed,  5 Oct 2016 14:14:18 +0200 (CEST)",
            "from mx1.redhat.com (mx1.redhat.com [209.132.183.28])\n\tby dpdk.org (Postfix) with ESMTP id EBE218D9C\n\tfor <dev@dpdk.org>; Wed,  5 Oct 2016 14:14:16 +0200 (CEST)",
            "from int-mx13.intmail.prod.int.phx2.redhat.com\n\t(int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby mx1.redhat.com (Postfix) with ESMTPS id 689CF32B58D;\n\tWed,  5 Oct 2016 12:14:16 +0000 (UTC)",
            "from sopuli.koti.laiskiainen.org.com (vpn1-5-176.ams2.redhat.com\n\t[10.36.5.176])\n\tby int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with\n\tESMTP id u95CEFV3022631; Wed, 5 Oct 2016 08:14:15 -0400"
        ],
        "From": "Panu Matilainen <pmatilai@redhat.com>",
        "To": "dev@dpdk.org",
        "Cc": "konstantin.ananyev@intel.com",
        "Date": "Wed,  5 Oct 2016 15:14:08 +0300",
        "Message-Id": "<932d0051cc30a749f810b70e6465cf77679e3c95.1475669648.git.pmatilai@redhat.com>",
        "X-Scanned-By": "MIMEDefang 2.68 on 10.5.11.26",
        "X-Greylist": "Sender IP whitelisted, not delayed by milter-greylist-4.5.16\n\t(mx1.redhat.com [10.5.110.29]); Wed, 05 Oct 2016 12:14:16 +0000 (UTC)",
        "Subject": "[dpdk-dev] [PATCH] ip_frag: fix missing dependency on librte_hash",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "patches and discussions about DPDK <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": "Not sure what exactly changed and where, but I've started getting\nbuild failures on Fedora rawhide i386:\n    lib/librte_ip_frag/ip_frag_internal.c:36:23: fatal error:\n\t    rte_jhash.h: No such file or directory\n     #include <rte_jhash.h>\n                       ^\nLooking at librte_ip_frag, it clearly depends on librte_hash so\nits probably more a question of something commonly masking the issue.\n\nSigned-off-by: Panu Matilainen <pmatilai@redhat.com>\n---\n lib/librte_ip_frag/Makefile | 1 +\n 1 file changed, 1 insertion(+)",
    "diff": "diff --git a/lib/librte_ip_frag/Makefile b/lib/librte_ip_frag/Makefile\nindex e97dfbd..43f8b1e 100644\n--- a/lib/librte_ip_frag/Makefile\n+++ b/lib/librte_ip_frag/Makefile\n@@ -54,6 +54,7 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_IP_FRAG)-include += rte_ip_frag.h\n \n DEPDIRS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += lib/librte_eal\n DEPDIRS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += lib/librte_ether\n+DEPDIRS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += lib/librte_hash\n DEPDIRS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += lib/librte_mbuf\n DEPDIRS-$(CONFIG_RTE_LIBRTE_IP_FRAG) += lib/librte_mempool\n \n",
    "prefixes": [
        "dpdk-dev"
    ]
}