Show a cover letter.

GET /api/covers/54517/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 54517,
    "url": "http://patches.dpdk.org/api/covers/54517/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190606182957.56596-1-vipin.varghese@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": "<20190606182957.56596-1-vipin.varghese@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190606182957.56596-1-vipin.varghese@intel.com",
    "date": "2019-06-06T18:29:55",
    "name": "[v1,0/2] event enqueue-dequeue callback handler",
    "submitter": {
        "id": 882,
        "url": "http://patches.dpdk.org/api/people/882/?format=api",
        "name": "Varghese, Vipin",
        "email": "vipin.varghese@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190606182957.56596-1-vipin.varghese@intel.com/mbox/",
    "series": [
        {
            "id": 4941,
            "url": "http://patches.dpdk.org/api/series/4941/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4941",
            "date": "2019-06-06T18:29:55",
            "name": "event enqueue-dequeue callback handler",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/4941/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/54517/comments/",
    "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 C03461B958;\n\tThu,  6 Jun 2019 20:29:27 +0200 (CEST)",
            "from mga11.intel.com (mga11.intel.com [192.55.52.93])\n\tby dpdk.org (Postfix) with ESMTP id 4EA251B94E\n\tfor <dev@dpdk.org>; Thu,  6 Jun 2019 20:29:24 +0200 (CEST)",
            "from orsmga005.jf.intel.com ([10.7.209.41])\n\tby fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t06 Jun 2019 11:29:23 -0700",
            "from unknown (HELO saesrv02-S2600CWR.intel.com) ([10.224.122.203])\n\tby orsmga005.jf.intel.com with ESMTP; 06 Jun 2019 11:29:19 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "From": "Vipin Varghese <vipin.varghese@intel.com>",
        "To": "marko.kovacevic@intel.com, john.mcnamara@intel.com, jerinj@marvell.com, \n\tharry.van.haaren@intel.com, keith.wiles@intel.com, gage.eads@intel.com, \n\tdev@dpdk.org",
        "Cc": "sanjay.padubidri@intel.com, narender.vangati@intel.com,\n\tilia.kurakin@intel.com, Vipin Varghese <vipin.varghese@intel.com>",
        "Date": "Thu,  6 Jun 2019 23:59:55 +0530",
        "Message-Id": "<20190606182957.56596-1-vipin.varghese@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "Subject": "[dpdk-dev] [PATCH v1 0/2] event enqueue-dequeue callback handler",
        "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": "The patch series is an attempt to add callback handlers to event device.\n\nMotivation\n==========\n\nAllow user to debug and modify the event list in event device enqueue-dequeue\nstages.\n\nThe enqueue stage is modified to allow user handler to be invoked prior to\nactual device enqueue. The dequeue stage is modified to allow user handler\nto be invoked post to actual device dequeue.\n\nStatus\n======\n\nThe new APIs are added as experimental.\n\nChange Log:\n==========\n\nVipin Varghese (2):\n  lib/event: add callback handlers for event\n  examples/event: add callback handle\n\n config/common_base                           |   1 +\n examples/eventdev_pipeline/main.c            |  49 +++\n lib/librte_eventdev/rte_eventdev.c           | 361 +++++++++++++++++++\n lib/librte_eventdev/rte_eventdev.h           | 267 +++++++++++++-\n lib/librte_eventdev/rte_eventdev_version.map |   8 +\n 5 files changed, 682 insertions(+), 4 deletions(-)"
}