get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 59866,
    "url": "http://patchwork.dpdk.org/api/1.0/patches/59866/?format=api",
    "project": {
        "id": 1,
        "url": "http://patchwork.dpdk.org/api/1.0/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"
    },
    "msgid": "<20190926114818.91063-1-haiyue.wang@intel.com>",
    "date": "2019-09-26T11:48:14",
    "name": "[v1,0/4] get Rx/Tx packet burst mode information",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1044,
        "url": "http://patchwork.dpdk.org/api/1.0/people/1044/?format=api",
        "name": "Wang, Haiyue",
        "email": "haiyue.wang@intel.com"
    },
    "delegate": null,
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/20190926114818.91063-1-haiyue.wang@intel.com/mbox/",
    "series": [],
    "check": "pending",
    "checks": "http://patchwork.dpdk.org/api/patches/59866/checks/",
    "tags": {},
    "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 [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 7A2B54C90;\n\tThu, 26 Sep 2019 13:53:54 +0200 (CEST)",
            "from mga12.intel.com (mga12.intel.com [192.55.52.136])\n\tby dpdk.org (Postfix) with ESMTP id E7AE22D13\n\tfor <dev@dpdk.org>; Thu, 26 Sep 2019 13:53:52 +0200 (CEST)",
            "from fmsmga005.fm.intel.com ([10.253.24.32])\n\tby fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t26 Sep 2019 04:53:52 -0700",
            "from npg-dpdk-haiyue-1.sh.intel.com ([10.67.119.153])\n\tby fmsmga005.fm.intel.com with ESMTP; 26 Sep 2019 04:53:50 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.64,551,1559545200\"; d=\"scan'208\";a=\"389581505\"",
        "From": "Haiyue Wang <haiyue.wang@intel.com>",
        "To": "dev@dpdk.org,\n\tferruh.yigit@intel.com,\n\txiaolong.ye@intel.com",
        "Cc": "ray.kinsella@intel.com, bernard.iremonger@intel.com,\n\tchenmin.sun@intel.com, Haiyue Wang <haiyue.wang@intel.com>",
        "Date": "Thu, 26 Sep 2019 19:48:14 +0800",
        "Message-Id": "<20190926114818.91063-1-haiyue.wang@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "Subject": "[dpdk-dev] [PATCH v1 0/4] get Rx/Tx packet burst mode information",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://mails.dpdk.org/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "RFCv3 -> v1:\n\thttps://patchwork.dpdk.org/patch/59103/\n\thttps://patchwork.dpdk.org/patch/59104/\n\thttps://patchwork.dpdk.org/patch/59105/\n\thttps://patchwork.dpdk.org/patch/59106/\n\t1). Use the function 'rte_bsf64' to iterate the options for\n\t    getting the name.\n\nHaiyue Wang (4):\n  ethdev: add the API for getting burst mode information\n  net/i40e: support to get the Rx/Tx burst mode\n  net/ice: support to get the Rx/Tx burst mode\n  app/testpmd: show the Rx/Tx burst mode description\n\n app/test-pmd/config.c                    | 29 +++++++++\n doc/guides/rel_notes/release_19_11.rst   |  9 +++\n drivers/net/i40e/i40e_ethdev.c           |  2 +\n drivers/net/i40e/i40e_ethdev.h           |  4 ++\n drivers/net/i40e/i40e_rxtx.c             | 72 +++++++++++++++++++++\n drivers/net/ice/ice_ethdev.c             |  2 +\n drivers/net/ice/ice_rxtx.c               | 54 ++++++++++++++++\n drivers/net/ice/ice_rxtx.h               |  4 ++\n lib/librte_ethdev/rte_ethdev.c           | 75 ++++++++++++++++++++++\n lib/librte_ethdev/rte_ethdev.h           | 82 ++++++++++++++++++++++++\n lib/librte_ethdev/rte_ethdev_core.h      |  5 ++\n lib/librte_ethdev/rte_ethdev_version.map |  5 ++\n 12 files changed, 343 insertions(+)",
    "diff": null,
    "prefixes": [
        "v1",
        "0/4"
    ]
}