get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 1212,
    "url": "https://patches.dpdk.org/api/patches/1212/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1415374981-34047-1-git-send-email-jyu@vmware.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": "<1415374981-34047-1-git-send-email-jyu@vmware.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1415374981-34047-1-git-send-email-jyu@vmware.com",
    "date": "2014-11-07T15:43:01",
    "name": "[dpdk-dev] app/test-pmd: Use the new rss_hf size changed in 1.7",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "f99576acfd1a16e27d74237762e7bf42db9fbad3",
    "submitter": {
        "id": 111,
        "url": "https://patches.dpdk.org/api/people/111/?format=api",
        "name": "Jia Yu",
        "email": "jyu@vmware.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1415374981-34047-1-git-send-email-jyu@vmware.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/1212/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/1212/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 33B18591A;\n\tSat,  8 Nov 2014 00:41:59 +0100 (CET)",
            "from smtp-outbound-2.vmware.com (smtp-outbound-2.vmware.com\n\t[208.91.2.13]) by dpdk.org (Postfix) with ESMTP id 82A09590B\n\tfor <dev@dpdk.org>; Sat,  8 Nov 2014 00:41:55 +0100 (CET)",
            "from sc9-mailhost3.vmware.com (sc9-mailhost3.vmware.com\n\t[10.113.161.73])\n\tby smtp-outbound-2.vmware.com (Postfix) with ESMTP id DF1022864C\n\tfor <dev@dpdk.org>; Fri,  7 Nov 2014 15:51:21 -0800 (PST)",
            "from prmh-edge-ivybridge-13.eng.vmware.com\n\t(prmh-edge-ivybridge-13.eng.vmware.com [10.24.235.96])\n\tby sc9-mailhost3.vmware.com (Postfix) with ESMTP id 8545141D13;\n\tFri,  7 Nov 2014 15:51:21 -0800 (PST)"
        ],
        "From": "Jia Yu <jyu@vmware.com>",
        "To": "dev@dpdk.org",
        "Date": "Fri,  7 Nov 2014 07:43:01 -0800",
        "Message-Id": "<1415374981-34047-1-git-send-email-jyu@vmware.com>",
        "X-Mailer": "git-send-email 1.9.1",
        "Subject": "[dpdk-dev] [PATCH] app/test-pmd: Use the new rss_hf size changed in\n\t1.7",
        "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": "According to rss_hf definition in rte_eth_rss_conf, it shall be uint64 type.\nUsing uint16 will get truncated value, and cause incorrect output. This\nfix corrected this issue.\n\nSigned-off-by: Jia Yu <jyu@vmware.com>\n---\n app/test-pmd/config.c | 2 +-\n 1 file changed, 1 insertion(+), 1 deletion(-)",
    "diff": "diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c\nindex 9bc08f4..b34b0b2 100644\n--- a/app/test-pmd/config.c\n+++ b/app/test-pmd/config.c\n@@ -804,7 +804,7 @@ port_rss_hash_conf_show(portid_t port_id, int show_rss_key)\n {\n \tstruct rte_eth_rss_conf rss_conf;\n \tuint8_t rss_key[10 * 4];\n-\tuint16_t rss_hf;\n+\tuint64_t rss_hf;\n \tuint8_t i;\n \tint diag;\n \n",
    "prefixes": [
        "dpdk-dev"
    ]
}