get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 17177,
    "url": "http://patchwork.dpdk.org/api/patches/17177/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/patch/1479809098-17109-1-git-send-email-olivier.matz@6wind.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": "<1479809098-17109-1-git-send-email-olivier.matz@6wind.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1479809098-17109-1-git-send-email-olivier.matz@6wind.com",
    "date": "2016-11-22T10:04:58",
    "name": "[dpdk-dev] mempool: fix Api documentation",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "95f0803b608af028ac9474798b9c8d36f2b982e1",
    "submitter": {
        "id": 8,
        "url": "http://patchwork.dpdk.org/api/people/8/?format=api",
        "name": "Olivier Matz",
        "email": "olivier.matz@6wind.com"
    },
    "delegate": {
        "id": 1,
        "url": "http://patchwork.dpdk.org/api/users/1/?format=api",
        "username": "tmonjalo",
        "first_name": "Thomas",
        "last_name": "Monjalon",
        "email": "thomas@monjalon.net"
    },
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/1479809098-17109-1-git-send-email-olivier.matz@6wind.com/mbox/",
    "series": [],
    "comments": "http://patchwork.dpdk.org/api/patches/17177/comments/",
    "check": "success",
    "checks": "http://patchwork.dpdk.org/api/patches/17177/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 A26635592;\n\tTue, 22 Nov 2016 11:05:23 +0100 (CET)",
            "from proxy.6wind.com (host.76.145.23.62.rev.coltfrance.com\n\t[62.23.145.76]) by dpdk.org (Postfix) with ESMTP id 81F805582\n\tfor <dev@dpdk.org>; Tue, 22 Nov 2016 11:05:21 +0100 (CET)",
            "from glumotte.dev.6wind.com (unknown [10.16.0.195])\n\tby proxy.6wind.com (Postfix) with ESMTP id 308B12A9E6;\n\tTue, 22 Nov 2016 11:05:17 +0100 (CET)"
        ],
        "From": "Olivier Matz <olivier.matz@6wind.com>",
        "To": "dev@dpdk.org",
        "Cc": "keith.wiles@intel.com",
        "Date": "Tue, 22 Nov 2016 11:04:58 +0100",
        "Message-Id": "<1479809098-17109-1-git-send-email-olivier.matz@6wind.com>",
        "X-Mailer": "git-send-email 2.8.1",
        "Subject": "[dpdk-dev] [PATCH] mempool: fix Api documentation",
        "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": "A previous commit changed the local_cache table into a\npointer, reducing the size of the rte_mempool structure.\n\nFix the API comment of rte_mempool_create() related to\nthis modification.\n\nFixes: 213af31e0960 (\"mempool: reduce structure size if no cache needed\")\n\nSigned-off-by: Olivier Matz <olivier.matz@6wind.com>\n---\n lib/librte_mempool/rte_mempool.h | 4 +---\n 1 file changed, 1 insertion(+), 3 deletions(-)",
    "diff": "diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h\nindex 440f3b1..956ce04 100644\n--- a/lib/librte_mempool/rte_mempool.h\n+++ b/lib/librte_mempool/rte_mempool.h\n@@ -610,9 +610,7 @@ typedef void (rte_mempool_ctor_t)(struct rte_mempool *, void *);\n  *   never be used. The access to the per-lcore table is of course\n  *   faster than the multi-producer/consumer pool. The cache can be\n  *   disabled if the cache_size argument is set to 0; it can be useful to\n- *   avoid losing objects in cache. Note that even if not used, the\n- *   memory space for cache is always reserved in a mempool structure,\n- *   except if CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE is set to 0.\n+ *   avoid losing objects in cache.\n  * @param private_data_size\n  *   The size of the private data appended after the mempool\n  *   structure. This is useful for storing some private data after the\n",
    "prefixes": [
        "dpdk-dev"
    ]
}