get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 2266,
    "url": "https://patches.dpdk.org/api/patches/2266/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1421140920-9964-1-git-send-email-cian.ferriter@intel.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": "<1421140920-9964-1-git-send-email-cian.ferriter@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1421140920-9964-1-git-send-email-cian.ferriter@intel.com",
    "date": "2015-01-13T09:22:00",
    "name": "[dpdk-dev] lib/librte_ether: change socket_id passed to rte_memzone_reserve",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "a31295d9e8829dee26a9c0f3112ba128ad3d8246",
    "submitter": {
        "id": 152,
        "url": "https://patches.dpdk.org/api/people/152/?format=api",
        "name": "Cian Ferriter",
        "email": "cian.ferriter@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1421140920-9964-1-git-send-email-cian.ferriter@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/2266/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/2266/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 E0D2F5A71;\n\tTue, 13 Jan 2015 10:22:12 +0100 (CET)",
            "from mga02.intel.com (mga02.intel.com [134.134.136.20])\n\tby dpdk.org (Postfix) with ESMTP id E31FC5A62\n\tfor <dev@dpdk.org>; Tue, 13 Jan 2015 10:22:09 +0100 (CET)",
            "from orsmga002.jf.intel.com ([10.7.209.21])\n\tby orsmga101.jf.intel.com with ESMTP; 13 Jan 2015 01:22:08 -0800",
            "from irvmail001.ir.intel.com ([163.33.26.43])\n\tby orsmga002.jf.intel.com with ESMTP; 13 Jan 2015 01:22:08 -0800",
            "from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com\n\t[10.237.217.45])\n\tby irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id\n\tt0D9M794003691; Tue, 13 Jan 2015 09:22:07 GMT",
            "from sivswdev01.ir.intel.com (localhost [127.0.0.1])\n\tby sivswdev01.ir.intel.com with ESMTP id t0D9M7Za010090;\n\tTue, 13 Jan 2015 09:22:07 GMT",
            "(from cferrite@localhost)\n\tby sivswdev01.ir.intel.com with  id t0D9M7ir010086;\n\tTue, 13 Jan 2015 09:22:07 GMT"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.07,748,1413270000\"; d=\"scan'208\";a=\"668973471\"",
        "From": "Cian Ferriter <cian.ferriter@intel.com>",
        "To": "dev@dpdk.org",
        "Date": "Tue, 13 Jan 2015 09:22:00 +0000",
        "Message-Id": "<1421140920-9964-1-git-send-email-cian.ferriter@intel.com>",
        "X-Mailer": "git-send-email 1.7.4.1",
        "Subject": "[dpdk-dev] [PATCH] lib/librte_ether: change socket_id passed to\n\trte_memzone_reserve",
        "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": "Change the socket id that is passed to rte_memzone_reserve from\nthe socket id of current logical core to the socket id of the\nmaster_lcore.\n---\n lib/librte_ether/rte_ethdev.c |    2 +-\n 1 files changed, 1 insertions(+), 1 deletions(-)\n mode change 100644 => 100755 lib/librte_ether/rte_ethdev.c",
    "diff": "diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c\nold mode 100644\nnew mode 100755\nindex 95f2ceb..835540d\n--- a/lib/librte_ether/rte_ethdev.c\n+++ b/lib/librte_ether/rte_ethdev.c\n@@ -184,7 +184,7 @@ rte_eth_dev_data_alloc(void)\n \tif (rte_eal_process_type() == RTE_PROC_PRIMARY){\n \t\tmz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA,\n \t\t\t\tRTE_MAX_ETHPORTS * sizeof(*rte_eth_dev_data),\n-\t\t\t\trte_socket_id(), flags);\n+\t\t\t\trte_lcore_to_socket_id(rte_get_master_lcore()), flags);\n \t} else\n \t\tmz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA);\n \tif (mz == NULL)\n",
    "prefixes": [
        "dpdk-dev"
    ]
}