Show a cover letter.

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

{
    "id": 59230,
    "url": "https://patches.dpdk.org/api/covers/59230/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/cover/20190913143914.2332-1-marcinx.baran@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": "<20190913143914.2332-1-marcinx.baran@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190913143914.2332-1-marcinx.baran@intel.com",
    "date": "2019-09-13T14:39:07",
    "name": "[v2,0/6] examples/ioat: sample app on ioat driver usage",
    "submitter": {
        "id": 1430,
        "url": "https://patches.dpdk.org/api/people/1430/?format=api",
        "name": "Marcin Baran",
        "email": "marcinx.baran@intel.com"
    },
    "mbox": "https://patches.dpdk.org/project/dpdk/cover/20190913143914.2332-1-marcinx.baran@intel.com/mbox/",
    "series": [
        {
            "id": 6400,
            "url": "https://patches.dpdk.org/api/series/6400/?format=api",
            "web_url": "https://patches.dpdk.org/project/dpdk/list/?series=6400",
            "date": "2019-09-13T14:39:07",
            "name": "examples/ioat: sample app on ioat driver usage",
            "version": 2,
            "mbox": "https://patches.dpdk.org/series/6400/mbox/"
        }
    ],
    "comments": "https://patches.dpdk.org/api/covers/59230/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 D14B21F020;\n\tFri, 13 Sep 2019 16:39:56 +0200 (CEST)",
            "from mga01.intel.com (mga01.intel.com [192.55.52.88])\n\tby dpdk.org (Postfix) with ESMTP id DB2B01F01F\n\tfor <dev@dpdk.org>; Fri, 13 Sep 2019 16:39:54 +0200 (CEST)",
            "from orsmga002.jf.intel.com ([10.7.209.21])\n\tby fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t13 Sep 2019 07:39:53 -0700",
            "from baranmx-mobl.ger.corp.intel.com ([10.103.104.83])\n\tby orsmga002.jf.intel.com with ESMTP; 13 Sep 2019 07:39:52 -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,492,1559545200\"; d=\"scan'208\";a=\"197570362\"",
        "From": "Marcin Baran <marcinx.baran@intel.com>",
        "To": "dev@dpdk.org,\n\tbruce.richardson@intel.com",
        "Cc": "Marcin Baran <marcinx.baran@intel.com>",
        "Date": "Fri, 13 Sep 2019 16:39:07 +0200",
        "Message-Id": "<20190913143914.2332-1-marcinx.baran@intel.com>",
        "X-Mailer": "git-send-email 2.22.0.windows.1",
        "In-Reply-To": "<20190909082939.1629-1-marcinx.baran@intel.com>",
        "References": "<20190909082939.1629-1-marcinx.baran@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v2 0/6] examples/ioat: sample app on ioat driver\n\tusage",
        "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": "A new sample app demonstrating use of driver for CBDMA.\nThe app receives packets, performs software or hardware\ncopy, changes packets' MAC addresses (if enabled) and\nforwards them. The patch includes sample application as\nwell as it's guide.\n\nv2:\n - change printing total stats to be deltas\n - update documentation\n - fix 1 thread/sw copy/multiple Rx queues packet dropping\n - divide patch into several presenting functional change\n\nMarcin Baran (4):\n  examples/ioat: add software copy support\n  examples/ioat: add rawdev copy mode support\n  examples/ioat: add stats printing for each port\n  doc/guides/: provide IOAT sample app guide\n\nPawel Modrak (2):\n  examples/ioat: create sample app on ioat driver usage\n  examples/ioat: add two threads configuration\n\n doc/guides/sample_app_ug/index.rst |    1 +\n doc/guides/sample_app_ug/intro.rst |    4 +\n doc/guides/sample_app_ug/ioat.rst  |  764 +++++++++++++++++++++\n examples/Makefile                  |    3 +\n examples/ioat/Makefile             |   54 ++\n examples/ioat/ioatfwd.c            | 1025 ++++++++++++++++++++++++++++\n examples/ioat/meson.build          |   13 +\n examples/meson.build               |    1 +\n 8 files changed, 1865 insertions(+)\n create mode 100644 doc/guides/sample_app_ug/ioat.rst\n create mode 100644 examples/ioat/Makefile\n create mode 100644 examples/ioat/ioatfwd.c\n create mode 100644 examples/ioat/meson.build"
}