get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 7292,
    "url": "https://patches.dpdk.org/api/patches/7292/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1443601256-181129-1-git-send-email-maryam.tahhan@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": "<1443601256-181129-1-git-send-email-maryam.tahhan@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1443601256-181129-1-git-send-email-maryam.tahhan@intel.com",
    "date": "2015-09-30T08:20:56",
    "name": "[dpdk-dev] ethdev: remove the imissed deprecation tag",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "a488ae9b775ca349ba8539283eed4364ebb26b2a",
    "submitter": {
        "id": 259,
        "url": "https://patches.dpdk.org/api/people/259/?format=api",
        "name": "Tahhan, Maryam",
        "email": "maryam.tahhan@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1443601256-181129-1-git-send-email-maryam.tahhan@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/7292/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/7292/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 E68DC8D9E;\n\tWed, 30 Sep 2015 10:21:09 +0200 (CEST)",
            "from mga09.intel.com (mga09.intel.com [134.134.136.24])\n\tby dpdk.org (Postfix) with ESMTP id 0942D8D90\n\tfor <dev@dpdk.org>; Wed, 30 Sep 2015 10:21:07 +0200 (CEST)",
            "from fmsmga003.fm.intel.com ([10.253.24.29])\n\tby orsmga102.jf.intel.com with ESMTP; 30 Sep 2015 01:21:06 -0700",
            "from sie-lab-212-170.ir.intel.com (HELO\n\tsilpixa00378251.ir.intel.com) ([10.237.212.170])\n\tby FMSMGA003.fm.intel.com with ESMTP; 30 Sep 2015 01:20:58 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.17,611,1437462000\"; d=\"scan'208\";a=\"571129623\"",
        "From": "Maryam Tahhan <maryam.tahhan@intel.com>",
        "To": "dev@dpdk.org",
        "Date": "Wed, 30 Sep 2015 09:20:56 +0100",
        "Message-Id": "<1443601256-181129-1-git-send-email-maryam.tahhan@intel.com>",
        "X-Mailer": "git-send-email 2.4.3",
        "Subject": "[dpdk-dev] [PATCH] ethdev: remove the imissed deprecation tag",
        "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": "Remove the deprecation tag and notice for imissed.\n\nSigned-off-by: Maryam Tahhan <maryam.tahhan@intel.com>\n---\n doc/guides/rel_notes/deprecation.rst | 2 +-\n lib/librte_ether/rte_ethdev.h        | 3 +--\n 2 files changed, 2 insertions(+), 3 deletions(-)",
    "diff": "diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst\nindex fffad80..6e899f4 100644\n--- a/doc/guides/rel_notes/deprecation.rst\n+++ b/doc/guides/rel_notes/deprecation.rst\n@@ -14,7 +14,7 @@ Deprecation Notices\n   All binaries will need to be rebuilt from release 2.2.\n \n * The following fields have been deprecated in rte_eth_stats:\n-  imissed, ibadcrc, ibadlen, imcasts, fdirmatch, fdirmiss,\n+  ibadcrc, ibadlen, imcasts, fdirmatch, fdirmiss,\n   tx_pause_xon, rx_pause_xon, tx_pause_xoff, rx_pause_xoff\n \n * API for flow director filters has been replaced by rte_eth_dev_filter_ctrl.\ndiff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h\nindex fa06554..78bd94d 100644\n--- a/lib/librte_ether/rte_ethdev.h\n+++ b/lib/librte_ether/rte_ethdev.h\n@@ -194,8 +194,7 @@ struct rte_eth_stats {\n \tuint64_t opackets;  /**< Total number of successfully transmitted packets.*/\n \tuint64_t ibytes;    /**< Total number of successfully received bytes. */\n \tuint64_t obytes;    /**< Total number of successfully transmitted bytes. */\n-\tuint64_t imissed;\n-\t/**< Deprecated; Total of RX missed packets (e.g full FIFO). */\n+\tuint64_t imissed;   /**< Total of RX missed packets (e.g full FIFO). */\n \tuint64_t ibadcrc;\n \t/**< Deprecated; Total of RX packets with CRC error. */\n \tuint64_t ibadlen;\n",
    "prefixes": [
        "dpdk-dev"
    ]
}