get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 28392,
    "url": "https://patches.dpdk.org/api/patches/28392/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1504646088-3476-1-git-send-email-timothy.mcdaniel@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": "<1504646088-3476-1-git-send-email-timothy.mcdaniel@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1504646088-3476-1-git-send-email-timothy.mcdaniel@intel.com",
    "date": "2017-09-05T21:14:48",
    "name": "[dpdk-dev] eventdev: update doxygen",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "fbae1b438115003b519736c9018ed0f444879cb1",
    "submitter": {
        "id": 826,
        "url": "https://patches.dpdk.org/api/people/826/?format=api",
        "name": "Timothy McDaniel",
        "email": "timothy.mcdaniel@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1504646088-3476-1-git-send-email-timothy.mcdaniel@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/28392/comments/",
    "check": "success",
    "checks": "https://patches.dpdk.org/api/patches/28392/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 0F36B1E2B;\n\tTue,  5 Sep 2017 23:14:54 +0200 (CEST)",
            "from mga11.intel.com (mga11.intel.com [192.55.52.93])\n\tby dpdk.org (Postfix) with ESMTP id F077C1C0B\n\tfor <dev@dpdk.org>; Tue,  5 Sep 2017 23:14:52 +0200 (CEST)",
            "from fmsmga004.fm.intel.com ([10.253.24.48])\n\tby fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t05 Sep 2017 14:14:51 -0700",
            "from txasoft-yocto.an.intel.com (HELO txasoft-yocto.an.intel.com.)\n\t([10.123.72.111])\n\tby fmsmga004.fm.intel.com with ESMTP; 05 Sep 2017 14:14:51 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.41,481,1498546800\"; d=\"scan'208\";a=\"308292064\"",
        "From": "Tim McDaniel <timothy.mcdaniel@intel.com>",
        "To": "jerin.jacob@caviumnetworks.com",
        "Cc": "dev@dpdk.org",
        "Date": "Tue,  5 Sep 2017 16:14:48 -0500",
        "Message-Id": "<1504646088-3476-1-git-send-email-timothy.mcdaniel@intel.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "Subject": "[dpdk-dev] [PATCH] eventdev: update doxygen",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <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": "Update doxygen to make it clear that RTE_EVENT_OP_FORWARD and\nRTE_EVENT_OP_RELEASE may only be enqueued to the same port that the\noriginal event was dequeued from.\n\nSigned-off-by: Tim McDaniel <timothy.mcdaniel@intel.com>\n---\n lib/librte_eventdev/rte_eventdev.h | 14 +++++++++++++-\n 1 file changed, 13 insertions(+), 1 deletion(-)",
    "diff": "diff --git a/lib/librte_eventdev/rte_eventdev.h b/lib/librte_eventdev/rte_eventdev.h\nindex 128bc52..117eeb0 100644\n--- a/lib/librte_eventdev/rte_eventdev.h\n+++ b/lib/librte_eventdev/rte_eventdev.h\n@@ -882,7 +882,10 @@ rte_event_dev_close(uint8_t dev_id);\n #define RTE_EVENT_OP_FORWARD            1\n /**< The CPU use this operation to forward the event to different event queue or\n  * change to new application specific flow or schedule type to enable\n- * pipelining\n+ * pipelining.\n+ *\n+ * RTE_EVENT_OP_FORWARD must only be enqueued to the same port that the\n+ * event to be forwarded was dequeued from.\n  */\n #define RTE_EVENT_OP_RELEASE            2\n /**< Release the flow context associated with the schedule type.\n@@ -912,6 +915,9 @@ rte_event_dev_close(uint8_t dev_id);\n  * or no scheduling context is held then this function may be an NOOP,\n  * depending on the implementation.\n  *\n+ * RTE_EVENT_OP_RELEASE must only be enqueued to the same port that the\n+ * event to be released was dequeued from.\n+ *\n  */\n \n /**\n@@ -1144,6 +1150,9 @@ __rte_event_enqueue_burst(uint8_t dev_id, uint8_t port_id,\n  * The *nb_events* parameter is the number of event objects to enqueue which are\n  * supplied in the *ev* array of *rte_event* structure.\n  *\n+ * Event operations RTE_EVENT_OP_FORWARD and RTE_EVENT_OP_RELEASE must only be\n+ * enqueued to the same port that their associated events were dequeued from.\n+ *\n  * The rte_event_enqueue_burst() function returns the number of\n  * events objects it actually enqueued. A return value equal to *nb_events*\n  * means that all event objects have been enqueued.\n@@ -1346,6 +1355,9 @@ rte_event_dequeue_timeout_ticks(uint8_t dev_id, uint64_t ns,\n  * with RTE_EVENT_OP_RELEASE operation can be used to release the\n  * contexts early.\n  *\n+ * Event operations RTE_EVENT_OP_FORWARD and RTE_EVENT_OP_RELEASE must only be\n+ * enqueued to the same port that their associated events were dequeued from.\n+ *\n  * @param dev_id\n  *   The identifier of the device.\n  * @param port_id\n",
    "prefixes": [
        "dpdk-dev"
    ]
}