get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 2603,
    "url": "https://patches.dpdk.org/api/patches/2603/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1422369594-25960-1-git-send-email-nhorman@tuxdriver.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": "<1422369594-25960-1-git-send-email-nhorman@tuxdriver.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1422369594-25960-1-git-send-email-nhorman@tuxdriver.com",
    "date": "2015-01-27T14:39:54",
    "name": "[dpdk-dev,v2] vhost: Add -lfuse into the LDFLAGS list",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "edbcbbf280f1dd854f89f22e25505c19d872fc49",
    "submitter": {
        "id": 32,
        "url": "https://patches.dpdk.org/api/people/32/?format=api",
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1422369594-25960-1-git-send-email-nhorman@tuxdriver.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/2603/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/2603/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 1815D602A;\n\tTue, 27 Jan 2015 15:40:13 +0100 (CET)",
            "from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58])\n\tby dpdk.org (Postfix) with ESMTP id ABEF86029\n\tfor <dev@dpdk.org>; Tue, 27 Jan 2015 15:40:10 +0100 (CET)",
            "from hmsreliant.think-freely.org\n\t([2001:470:8:a08:7aac:c0ff:fec2:933b] helo=localhost)\n\tby smtp.tuxdriver.com with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.63)\n\t(envelope-from <nhorman@tuxdriver.com>)\n\tid 1YG7JE-0001Ss-1t; Tue, 27 Jan 2015 09:40:09 -0500"
        ],
        "From": "Neil Horman <nhorman@tuxdriver.com>",
        "To": "dev@dpdk.org",
        "Date": "Tue, 27 Jan 2015 09:39:54 -0500",
        "Message-Id": "<1422369594-25960-1-git-send-email-nhorman@tuxdriver.com>",
        "X-Mailer": "git-send-email 2.1.0",
        "In-Reply-To": "<1421786998-5814-1-git-send-email-nhorman@tuxdriver.com>",
        "References": "<1421786998-5814-1-git-send-email-nhorman@tuxdriver.com>",
        "X-Spam-Score": "-2.9 (--)",
        "X-Spam-Status": "No",
        "Cc": "fbl@redhat.com",
        "Subject": "[dpdk-dev] [PATCH v2] vhost: Add -lfuse into the LDFLAGS list",
        "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": "the vhost library relies on libfuse, and thats included when we do a normal\nshared object build, but when we specify combined libs, its gets left out.  Add\nit back in\n\nSigned-off-by: Neil Horman <nhorman@tuxdriver.com>\n\n---\nChange notes:\nv2) Removed normal shared object inclusion of libfuse since its always included\nnow\n---\n mk/rte.app.mk | 5 ++++-\n 1 file changed, 4 insertions(+), 1 deletion(-)",
    "diff": "diff --git a/mk/rte.app.mk b/mk/rte.app.mk\nindex 9c8b06a..4294d9a 100644\n--- a/mk/rte.app.mk\n+++ b/mk/rte.app.mk\n@@ -131,6 +131,10 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)\n LDLIBS += -lpcap\n endif\n \n+ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)\n+LDLIBS += -lfuse\n+endif\n+\n LDLIBS += --start-group\n \n ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)\n@@ -197,7 +201,6 @@ endif\n \n ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)\n LDLIBS += -lrte_vhost\n-LDLIBS += -lfuse\n endif\n \n ifeq ($(CONFIG_RTE_LIBRTE_ENIC_PMD),y)\n",
    "prefixes": [
        "dpdk-dev",
        "v2"
    ]
}