get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 16995,
    "url": "https://patches.dpdk.org/api/patches/16995/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1478795390-17014-1-git-send-email-reshma.pattan@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": "<1478795390-17014-1-git-send-email-reshma.pattan@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1478795390-17014-1-git-send-email-reshma.pattan@intel.com",
    "date": "2016-11-10T16:29:50",
    "name": "[dpdk-dev] doc: fix l3fwd mode selection from compile to run time",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "20c94c8afd09eae638e96f46cb85248f834c20a3",
    "submitter": {
        "id": 70,
        "url": "https://patches.dpdk.org/api/people/70/?format=api",
        "name": "Pattan, Reshma",
        "email": "reshma.pattan@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1478795390-17014-1-git-send-email-reshma.pattan@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/16995/comments/",
    "check": "success",
    "checks": "https://patches.dpdk.org/api/patches/16995/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 6D407D4C0;\n\tThu, 10 Nov 2016 17:30:37 +0100 (CET)",
            "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n\tby dpdk.org (Postfix) with ESMTP id 20D45D4BE\n\tfor <dev@dpdk.org>; Thu, 10 Nov 2016 17:30:34 +0100 (CET)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby fmsmga105.fm.intel.com with ESMTP; 10 Nov 2016 08:30:20 -0800",
            "from sivswdev02.ir.intel.com (HELO localhost.localdomain)\n\t([10.237.217.46])\n\tby fmsmga002.fm.intel.com with ESMTP; 10 Nov 2016 08:29:53 -0800"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos; i=\"5.31,619,1473145200\"; d=\"scan'208\";\n\ta=\"1083480066\"",
        "From": "Reshma Pattan <reshma.pattan@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Reshma Pattan <reshma.pattan@intel.com>",
        "Date": "Thu, 10 Nov 2016 16:29:50 +0000",
        "Message-Id": "<1478795390-17014-1-git-send-email-reshma.pattan@intel.com>",
        "X-Mailer": "git-send-email 1.7.0.7",
        "Subject": "[dpdk-dev] [PATCH] doc: fix l3fwd mode selection from compile to\n\trun time",
        "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 l3fwd application route lookup mode can be selected at run time\nbut not at compile time. This patch corrects the statement in the doc.\n\nFixes: d0dff9ba (\"doc: sample application user guide\")\n\nSigned-off-by: Reshma Pattan <reshma.pattan@intel.com>\n---\n doc/guides/sample_app_ug/l3_forward.rst | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)",
    "diff": "diff --git a/doc/guides/sample_app_ug/l3_forward.rst b/doc/guides/sample_app_ug/l3_forward.rst\nindex e2e6223..ab916b9 100644\n--- a/doc/guides/sample_app_ug/l3_forward.rst\n+++ b/doc/guides/sample_app_ug/l3_forward.rst\n@@ -42,7 +42,7 @@ The initialization and run-time paths are very similar to those of the :doc:`l2_\n The main difference from the L2 Forwarding sample application is that the forwarding decision\n is made based on information read from the input packet.\n \n-The lookup method is either hash-based or LPM-based and is selected at compile time. When the selected lookup method is hash-based,\n+The lookup method is either hash-based or LPM-based and is selected at run time. When the selected lookup method is hash-based,\n a hash object is used to emulate the flow classification stage.\n The hash object is used in correlation with a flow table to map each input packet to its flow at runtime.\n \n",
    "prefixes": [
        "dpdk-dev"
    ]
}