Show a cover letter.

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

{
    "id": 103099,
    "url": "http://patches.dpdk.org/api/covers/103099/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20211028065640.139655-1-feifei.wang2@arm.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": "<20211028065640.139655-1-feifei.wang2@arm.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20211028065640.139655-1-feifei.wang2@arm.com",
    "date": "2021-10-28T06:56:35",
    "name": "[v7,0/5] add new definitions for wait scheme",
    "submitter": {
        "id": 1771,
        "url": "http://patches.dpdk.org/api/people/1771/?format=api",
        "name": "Feifei Wang",
        "email": "feifei.wang2@arm.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20211028065640.139655-1-feifei.wang2@arm.com/mbox/",
    "series": [
        {
            "id": 20074,
            "url": "http://patches.dpdk.org/api/series/20074/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=20074",
            "date": "2021-10-28T06:56:35",
            "name": "add new definitions for wait scheme",
            "version": 7,
            "mbox": "http://patches.dpdk.org/series/20074/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/103099/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 D7762A0C45;\n\tThu, 28 Oct 2021 08:56:55 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id C6F0B40DDB;\n\tThu, 28 Oct 2021 08:56:55 +0200 (CEST)",
            "from foss.arm.com (foss.arm.com [217.140.110.172])\n by mails.dpdk.org (Postfix) with ESMTP id 2C9824067B\n for <dev@dpdk.org>; Thu, 28 Oct 2021 08:56:54 +0200 (CEST)",
            "from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14])\n by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 88D47ED1;\n Wed, 27 Oct 2021 23:56:53 -0700 (PDT)",
            "from net-x86-dell-8268.shanghai.arm.com\n (net-x86-dell-8268.shanghai.arm.com [10.169.210.103])\n by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 95D7B3F73D;\n Wed, 27 Oct 2021 23:56:50 -0700 (PDT)"
        ],
        "From": "Feifei Wang <feifei.wang2@arm.com>",
        "To": "",
        "Cc": "dev@dpdk.org, nd@arm.com, jerinjacobk@gmail.com,\n konstantin.ananyev@intel.com, stephen@networkplumber.org,\n david.marchand@redhat.com, thomas@monjalon.net,\n mattias.ronnblom@ericsson.com, Feifei Wang <feifei.wang2@arm.com>",
        "Date": "Thu, 28 Oct 2021 14:56:35 +0800",
        "Message-Id": "<20211028065640.139655-1-feifei.wang2@arm.com>",
        "X-Mailer": "git-send-email 2.25.1",
        "In-Reply-To": "<20210902053253.3017858-1-feifei.wang2@arm.com>",
        "References": "<20210902053253.3017858-1-feifei.wang2@arm.com>",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v7 0/5] add new definitions for wait scheme",
        "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": "Add new definitions for wait scheme, and apply this new definitions into\nlib to replace rte_pause.\n\nv2:\n1. use macro to create new wait scheme (Stephen)\n\nv3:\n1. delete unnecessary bug fix in bpf (Konstantin)\n\nv4:\n1. put size into the macro body (Konstantin)\n2. replace assert with BUILD_BUG_ON (Stephen)\n3. delete unnecessary compiler barrier for bpf (Konstantin)\n\nv5:\n1. 'size' is not the parameter (Konstantin)\n2. put () around macro parameters (Konstantin)\n3. fix some original typo issue (Jerin)\n4. swap 'rte_wait_event' parameter location (Jerin)\n5. add new macro '__LOAD_EXC'\n6. delete 'undef' to prevent compilation warning\n\nv6:\n1. fix patch style check warning\n2. delete 'bpf' patch due to 'const' limit\n\nv7:\n1. add __RTE_ARM to to fix the namespace (Jerin)\n2. use 'uintptr_t *' in mcslock for different\narchitecture(32/64) (Mattias)\n3. add a new pointer 'next' in mcslock to fix\ncompiler issue\n4. add bpf patch and use 'uintptr_t' to fix const\ndiscard warning (Konstantin)\n\nFeifei Wang (5):\n  eal: add new definitions for wait scheme\n  eal: use wait event for read pflock\n  eal: use wait event scheme for mcslock\n  lib/bpf: use wait event scheme for Rx/Tx iteration\n  lib/distributor: use wait event scheme\n\n lib/bpf/bpf_pkt.c                        |   9 +-\n lib/distributor/rte_distributor_single.c |  10 +-\n lib/eal/arm/include/rte_pause_64.h       | 166 +++++++++++++----------\n lib/eal/include/generic/rte_mcslock.h    |   5 +-\n lib/eal/include/generic/rte_pause.h      |  28 ++++\n lib/eal/include/generic/rte_pflock.h     |   4 +-\n 6 files changed, 133 insertions(+), 89 deletions(-)"
}