Show a cover letter.

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

{
    "id": 98212,
    "url": "http://patches.dpdk.org/api/covers/98212/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20210907164925.291904-1-bruce.richardson@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": "<20210907164925.291904-1-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210907164925.291904-1-bruce.richardson@intel.com",
    "date": "2021-09-07T16:49:17",
    "name": "[v3,0/8] add test suite for DMA drivers",
    "submitter": {
        "id": 20,
        "url": "http://patches.dpdk.org/api/people/20/?format=api",
        "name": "Bruce Richardson",
        "email": "bruce.richardson@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20210907164925.291904-1-bruce.richardson@intel.com/mbox/",
    "series": [
        {
            "id": 18744,
            "url": "http://patches.dpdk.org/api/series/18744/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=18744",
            "date": "2021-09-07T16:49:24",
            "name": "add test suite for DMA drivers",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/18744/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/98212/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from mails.dpdk.org (mails.dpdk.org [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 8B493A0C47;\n\tTue,  7 Sep 2021 18:55:15 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 2F897411A3;\n\tTue,  7 Sep 2021 18:55:10 +0200 (CEST)",
            "from mga03.intel.com (mga03.intel.com [134.134.136.65])\n by mails.dpdk.org (Postfix) with ESMTP id 8DF28410EF\n for <dev@dpdk.org>; Tue,  7 Sep 2021 18:55:08 +0200 (CEST)",
            "from orsmga007.jf.intel.com ([10.7.209.58])\n by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 07 Sep 2021 09:49:39 -0700",
            "from silpixa00399126.ir.intel.com ([10.237.223.29])\n by orsmga007.jf.intel.com with ESMTP; 07 Sep 2021 09:49:38 -0700"
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6200,9189,10099\"; a=\"220311323\"",
            "E=Sophos;i=\"5.85,274,1624345200\"; d=\"scan'208\";a=\"220311323\"",
            "E=Sophos;i=\"5.85,274,1624345200\"; d=\"scan'208\";a=\"469268677\""
        ],
        "X-ExtLoop1": "1",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "conor.walsh@intel.com, kevin.laatz@intel.com, fengchengwen@huawei.com,\n jerinj@marvell.com, Bruce Richardson <bruce.richardson@intel.com>",
        "Date": "Tue,  7 Sep 2021 17:49:17 +0100",
        "Message-Id": "<20210907164925.291904-1-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.30.2",
        "In-Reply-To": "<20210826183301.333442-1-bruce.richardson@intel.com>",
        "References": "<20210826183301.333442-1-bruce.richardson@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v3 0/8] add test suite for DMA drivers",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This patchset adds a fairly comprehensive set of tests for basic dmadev\nfunctionality. Tests are added to verify basic copy operation in each\ndevice, using both submit function and submit flag, and verifying completion\ngathering using both \"completed()\" and \"completed_status()\" functions. Beyond\nthat, tests are then added for the error reporting and handling, as is a suite\nof tests for the fill() operation for devices that support those.\n\nDepends-on: series-18738 (\"support dmadev\")\n\nV3:\n* add patch and tests for a burst-capacity function\n* addressed review feedback from v2\n* code cleanups to try and shorten code where possible\n\nV2:\n* added into dmadev a API to check for a device being idle\n* removed the hard-coded timeout delays before checking completions, and instead\n  wait for device to be idle\n* added in checks for statistics updates as part of some tests\n* fixed issue identified by internal coverity scan\n* other minor miscellaneous changes and fixes.\n\nBruce Richardson (5):\n  dmadev: add channel status check for testing use\n  app/test: add basic dmadev instance tests\n  app/test: add basic dmadev copy tests\n  app/test: add more comprehensive dmadev copy tests\n  app/test: test dmadev instance failure handling\n\nKevin Laatz (3):\n  dmadev: add burst capacity API\n  app/test: add dmadev fill tests\n  app/test: add dmadev burst capacity API test\n\n app/test/test_dmadev.c       | 820 ++++++++++++++++++++++++++++++++++-\n lib/dmadev/rte_dmadev.c      |  27 ++\n lib/dmadev/rte_dmadev.h      |  52 +++\n lib/dmadev/rte_dmadev_core.h |  11 +\n lib/dmadev/version.map       |   2 +\n 5 files changed, 911 insertions(+), 1 deletion(-)\n\n--\n2.30.2"
}