get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 19434,
    "url": "http://patchwork.dpdk.org/api/patches/19434/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/patch/1484581255-148720-2-git-send-email-harry.van.haaren@intel.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": "<1484581255-148720-2-git-send-email-harry.van.haaren@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1484581255-148720-2-git-send-email-harry.van.haaren@intel.com",
    "date": "2017-01-16T15:40:41",
    "name": "[dpdk-dev,01/15] eventdev: remove unneeded dependencies",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "5eb2511f4e1903176d330e1e42384128089d5ba1",
    "submitter": {
        "id": 317,
        "url": "http://patchwork.dpdk.org/api/people/317/?format=api",
        "name": "Van Haaren, Harry",
        "email": "harry.van.haaren@intel.com"
    },
    "delegate": null,
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/1484581255-148720-2-git-send-email-harry.van.haaren@intel.com/mbox/",
    "series": [],
    "comments": "http://patchwork.dpdk.org/api/patches/19434/comments/",
    "check": "fail",
    "checks": "http://patchwork.dpdk.org/api/patches/19434/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 4DEBC1DB1;\n\tMon, 16 Jan 2017 16:41:15 +0100 (CET)",
            "from mga07.intel.com (mga07.intel.com [134.134.136.100])\n\tby dpdk.org (Postfix) with ESMTP id E82CA1094\n\tfor <dev@dpdk.org>; Mon, 16 Jan 2017 16:41:07 +0100 (CET)",
            "from fmsmga004.fm.intel.com ([10.253.24.48])\n\tby orsmga105.jf.intel.com with ESMTP; 16 Jan 2017 07:41:07 -0800",
            "from silpixa00398672.ir.intel.com ([10.237.223.128])\n\tby fmsmga004.fm.intel.com with ESMTP; 16 Jan 2017 07:41:06 -0800"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.33,239,1477983600\"; d=\"scan'208\";a=\"213946912\"",
        "From": "Harry van Haaren <harry.van.haaren@intel.com>",
        "To": "jerin.jacob@caviumnetworks.com",
        "Cc": "dev@dpdk.org, Bruce Richardson <bruce.richardson@intel.com>,\n\tHarry van Haaren <harry.van.haaren@intel.com>",
        "Date": "Mon, 16 Jan 2017 15:40:41 +0000",
        "Message-Id": "<1484581255-148720-2-git-send-email-harry.van.haaren@intel.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "In-Reply-To": "<1484581255-148720-1-git-send-email-harry.van.haaren@intel.com>",
        "References": "<1484581255-148720-1-git-send-email-harry.van.haaren@intel.com>",
        "Subject": "[dpdk-dev] [PATCH 01/15] eventdev: remove unneeded dependencies",
        "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": "From: Bruce Richardson <bruce.richardson@intel.com>\n\nSince eventdev uses event structures rather than working directly on\nmbufs, there is no actual dependencies on the mbuf library. The\ninclusion of an mbuf pointer element inside the event itself does not\nrequire the inclusion of the mbuf header file. Similarly the pci\nheader is not needed, but following their removal, rte_memory.h is\nneeded for the definition of the __rte_cache_aligned macro.\n\nSigned-off-by: Bruce Richardson <bruce.richardson@intel.com>\nSigned-off-by: Harry van Haaren <harry.van.haaren@intel.com>\n---\n lib/librte_eventdev/Makefile       | 1 -\n lib/librte_eventdev/rte_eventdev.h | 5 +++--\n 2 files changed, 3 insertions(+), 3 deletions(-)",
    "diff": "diff --git a/lib/librte_eventdev/Makefile b/lib/librte_eventdev/Makefile\nindex dac0663..396e5ec 100644\n--- a/lib/librte_eventdev/Makefile\n+++ b/lib/librte_eventdev/Makefile\n@@ -52,6 +52,5 @@ EXPORT_MAP := rte_eventdev_version.map\n \n # library dependencies\n DEPDIRS-y += lib/librte_eal\n-DEPDIRS-y += lib/librte_mbuf\n \n include $(RTE_SDK)/mk/rte.lib.mk\ndiff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h\nindex e1bd05f..c2f9310 100644\n--- a/lib/librte_eventdev/rte_eventdev.h\n+++ b/lib/librte_eventdev/rte_eventdev.h\n@@ -244,8 +244,9 @@ extern \"C\" {\n #endif\n \n #include <rte_common.h>\n-#include <rte_pci.h>\n-#include <rte_mbuf.h>\n+#include <rte_memory.h>\n+\n+struct rte_mbuf; /* we just use mbuf pointers; no need to include rte_mbuf.h */\n \n /* Event device capability bitmap flags */\n #define RTE_EVENT_DEV_CAP_QUEUE_QOS           (1ULL << 0)\n",
    "prefixes": [
        "dpdk-dev",
        "01/15"
    ]
}