Show a cover letter.

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

{
    "id": 59426,
    "url": "https://patches.dpdk.org/api/covers/59426/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/cover/20190919093850.460-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": "<20190919093850.460-1-marcinx.baran@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190919093850.460-1-marcinx.baran@intel.com",
    "date": "2019-09-19T09:38:44",
    "name": "[v4,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/20190919093850.460-1-marcinx.baran@intel.com/mbox/",
    "series": [
        {
            "id": 6447,
            "url": "https://patches.dpdk.org/api/series/6447/?format=api",
            "web_url": "https://patches.dpdk.org/project/dpdk/list/?series=6447",
            "date": "2019-09-19T09:38:44",
            "name": "examples/ioat: sample app on ioat driver usage",
            "version": 4,
            "mbox": "https://patches.dpdk.org/series/6447/mbox/"
        }
    ],
    "comments": "https://patches.dpdk.org/api/covers/59426/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 704421ED6D;\n\tThu, 19 Sep 2019 11:39:09 +0200 (CEST)",
            "from mga06.intel.com (mga06.intel.com [134.134.136.31])\n\tby dpdk.org (Postfix) with ESMTP id D3EDB1ED69\n\tfor <dev@dpdk.org>; Thu, 19 Sep 2019 11:39:07 +0200 (CEST)",
            "from orsmga002.jf.intel.com ([10.7.209.21])\n\tby orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t19 Sep 2019 02:39:06 -0700",
            "from baranmx-mobl.ger.corp.intel.com ([10.103.104.83])\n\tby orsmga002.jf.intel.com with ESMTP; 19 Sep 2019 02:39:05 -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,523,1559545200\"; d=\"scan'208\";a=\"199341444\"",
        "From": "Marcin Baran <marcinx.baran@intel.com>",
        "To": "dev@dpdk.org,\n\tbruce.richardson@intel.com",
        "Cc": "Marcin Baran <marcinx.baran@intel.com>",
        "Date": "Thu, 19 Sep 2019 11:38:44 +0200",
        "Message-Id": "<20190919093850.460-1-marcinx.baran@intel.com>",
        "X-Mailer": "git-send-email 2.22.0.windows.1",
        "In-Reply-To": "<20190918091139.1430-1-marcinx.baran@intel.com>",
        "References": "<20190918091139.1430-1-marcinx.baran@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v4 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\nv4:\n - fix meson build support check\n\nv3:\n - add check for meson build whether IOAT is supported\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\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          |   23 +\n examples/meson.build               |    1 +\n 8 files changed, 1875 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"
}