get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 28158,
    "url": "http://patches.dpdk.org/api/patches/28158/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20170831134244.35215-3-bruce.richardson@intel.com/",
    "project": {
        "id": 1,
        "url": "http://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": "<20170831134244.35215-3-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20170831134244.35215-3-bruce.richardson@intel.com",
    "date": "2017-08-31T13:42:42",
    "name": "[dpdk-dev,2/4] net/ring: change map filename to standardized value",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "fbb85d3b4b92b63db9f77282fbef57dfee047b73",
    "submitter": {
        "id": 20,
        "url": "http://patches.dpdk.org/api/people/20/?format=api",
        "name": "Bruce Richardson",
        "email": "bruce.richardson@intel.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20170831134244.35215-3-bruce.richardson@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/28158/comments/",
    "check": "success",
    "checks": "http://patches.dpdk.org/api/patches/28158/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 252B4325A;\n\tThu, 31 Aug 2017 15:53:51 +0200 (CEST)",
            "from mga07.intel.com (mga07.intel.com [134.134.136.100])\n\tby dpdk.org (Postfix) with ESMTP id 6C644325C\n\tfor <dev@dpdk.org>; Thu, 31 Aug 2017 15:53:49 +0200 (CEST)",
            "from fmsmga004.fm.intel.com ([10.253.24.48])\n\tby orsmga105.jf.intel.com with ESMTP; 31 Aug 2017 06:53:49 -0700",
            "from silpixa00399126.ir.intel.com (HELO\n\tsilpixa00399126.ger.corp.intel.com) ([10.237.223.223])\n\tby fmsmga004.fm.intel.com with ESMTP; 31 Aug 2017 06:53:47 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.41,453,1498546800\"; d=\"scan'208\";a=\"306555590\"",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "konstantin.ananyev@intel.com, thomas@monjalon.net, john.griffin@intel.com,\n\tfiona.trahe@intel.com",
        "Cc": "dev@dpdk.org,\n\tBruce Richardson <bruce.richardson@intel.com>",
        "Date": "Thu, 31 Aug 2017 14:42:42 +0100",
        "Message-Id": "<20170831134244.35215-3-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.13.5",
        "In-Reply-To": "<20170831134244.35215-1-bruce.richardson@intel.com>",
        "References": "<20170831134244.35215-1-bruce.richardson@intel.com>",
        "Subject": "[dpdk-dev] [PATCH 2/4] net/ring: change map filename to\n\tstandardized value",
        "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": "The filenames of the linker map files for DPDK PMDs, all follow a\nstandard format: rte_pmd_<libname>_version.map. The ring version, however,\nhad eth instead of pmd in the name, so was non-standard. By changing\nthis, we no longer need the build system to explicitly be given the name of\nthe mapfile, as it can determine it from the directory name.\n\nSigned-off-by: Bruce Richardson <bruce.richardson@intel.com>\n---\n drivers/net/ring/Makefile                                               | 2 +-\n drivers/net/ring/{rte_eth_ring_version.map => rte_pmd_ring_version.map} | 0\n 2 files changed, 1 insertion(+), 1 deletion(-)\n rename drivers/net/ring/{rte_eth_ring_version.map => rte_pmd_ring_version.map} (100%)",
    "diff": "diff --git a/drivers/net/ring/Makefile b/drivers/net/ring/Makefile\nindex b7e1a378a..7ae15ef44 100644\n--- a/drivers/net/ring/Makefile\n+++ b/drivers/net/ring/Makefile\n@@ -39,7 +39,7 @@ LIB = librte_pmd_ring.a\n CFLAGS += -O3\n CFLAGS += $(WERROR_FLAGS)\n \n-EXPORT_MAP := rte_eth_ring_version.map\n+EXPORT_MAP := rte_pmd_ring_version.map\n \n LIBABIVER := 2\n \ndiff --git a/drivers/net/ring/rte_eth_ring_version.map b/drivers/net/ring/rte_pmd_ring_version.map\nsimilarity index 100%\nrename from drivers/net/ring/rte_eth_ring_version.map\nrename to drivers/net/ring/rte_pmd_ring_version.map\n",
    "prefixes": [
        "dpdk-dev",
        "2/4"
    ]
}