get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 35058,
    "url": "http://patches.dpdk.org/api/patches/35058/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20180208083630.103388-2-wei.zhao1@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": "<20180208083630.103388-2-wei.zhao1@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180208083630.103388-2-wei.zhao1@intel.com",
    "date": "2018-02-08T08:36:29",
    "name": "[dpdk-dev,1/2] net/e1000: add support for check descriptor status APIs",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "7ac82eba4ce57e943904a91876b53304c763a162",
    "submitter": {
        "id": 495,
        "url": "http://patches.dpdk.org/api/people/495/?format=api",
        "name": "Zhao1, Wei",
        "email": "wei.zhao1@intel.com"
    },
    "delegate": {
        "id": 24,
        "url": "http://patches.dpdk.org/api/users/24/?format=api",
        "username": "helin_zhang",
        "first_name": "Helin",
        "last_name": "Zhang",
        "email": "helin.zhang@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20180208083630.103388-2-wei.zhao1@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/35058/comments/",
    "check": "success",
    "checks": "http://patches.dpdk.org/api/patches/35058/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 [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id BA24E1B810;\n\tThu,  8 Feb 2018 09:45:07 +0100 (CET)",
            "from mga09.intel.com (mga09.intel.com [134.134.136.24])\n\tby dpdk.org (Postfix) with ESMTP id 8BA3B1B7F9\n\tfor <dev@dpdk.org>; Thu,  8 Feb 2018 09:45:05 +0100 (CET)",
            "from fmsmga005.fm.intel.com ([10.253.24.32])\n\tby orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t08 Feb 2018 00:45:04 -0800",
            "from dpdk2.bj.intel.com ([172.16.182.81])\n\tby fmsmga005.fm.intel.com with ESMTP; 08 Feb 2018 00:45:03 -0800"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.46,477,1511856000\"; d=\"scan'208\";a=\"202283647\"",
        "From": "Wei Zhao <wei.zhao1@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "qi.z.zhang@intel.com,\n\tWei Zhao <wei.zhao1@intel.com>",
        "Date": "Thu,  8 Feb 2018 16:36:29 +0800",
        "Message-Id": "<20180208083630.103388-2-wei.zhao1@intel.com>",
        "X-Mailer": "git-send-email 2.9.3",
        "In-Reply-To": "<20180208083630.103388-1-wei.zhao1@intel.com>",
        "References": "<20180208083630.103388-1-wei.zhao1@intel.com>",
        "Subject": "[dpdk-dev] [PATCH 1/2] net/e1000: add support for check descriptor\n\tstatus APIs",
        "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://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": "<https://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": "Igb VF nic need to support check descriptor status APIs, they are\nrte_eth_rx_descriptor_status and rte_eth_tx_descriptor_status.\nSo, this patch add ops with function pointer that enable feature.\n\nSigned-off-by: Wei Zhao <wei.zhao1@intel.com>\n---\n drivers/net/e1000/igb_ethdev.c | 3 +++\n 1 file changed, 3 insertions(+)",
    "diff": "diff --git a/drivers/net/e1000/igb_ethdev.c b/drivers/net/e1000/igb_ethdev.c\nindex 3c5138d..d299f3d 100644\n--- a/drivers/net/e1000/igb_ethdev.c\n+++ b/drivers/net/e1000/igb_ethdev.c\n@@ -432,6 +432,9 @@ static const struct eth_dev_ops igbvf_eth_dev_ops = {\n \t.dev_supported_ptypes_get = eth_igb_supported_ptypes_get,\n \t.rx_queue_setup       = eth_igb_rx_queue_setup,\n \t.rx_queue_release     = eth_igb_rx_queue_release,\n+\t.rx_descriptor_done   = eth_igb_rx_descriptor_done,\n+\t.rx_descriptor_status = eth_igb_rx_descriptor_status,\n+\t.tx_descriptor_status = eth_igb_tx_descriptor_status,\n \t.tx_queue_setup       = eth_igb_tx_queue_setup,\n \t.tx_queue_release     = eth_igb_tx_queue_release,\n \t.set_mc_addr_list     = eth_igb_set_mc_addr_list,\n",
    "prefixes": [
        "dpdk-dev",
        "1/2"
    ]
}