Show a cover letter.

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

{
    "id": 124881,
    "url": "http://patchwork.dpdk.org/api/covers/124881/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/cover/20230309045738.1261000-1-honnappa.nagarahalli@arm.com/",
    "project": {
        "id": 1,
        "url": "http://patchwork.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": "<20230309045738.1261000-1-honnappa.nagarahalli@arm.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20230309045738.1261000-1-honnappa.nagarahalli@arm.com",
    "date": "2023-03-09T04:57:34",
    "name": "[0/4] Small corrections in mempool",
    "submitter": {
        "id": 1045,
        "url": "http://patchwork.dpdk.org/api/people/1045/?format=api",
        "name": "Honnappa Nagarahalli",
        "email": "honnappa.nagarahalli@arm.com"
    },
    "mbox": "http://patchwork.dpdk.org/project/dpdk/cover/20230309045738.1261000-1-honnappa.nagarahalli@arm.com/mbox/",
    "series": [
        {
            "id": 27298,
            "url": "http://patchwork.dpdk.org/api/series/27298/?format=api",
            "web_url": "http://patchwork.dpdk.org/project/dpdk/list/?series=27298",
            "date": "2023-03-09T04:57:34",
            "name": "Small corrections in mempool",
            "version": 1,
            "mbox": "http://patchwork.dpdk.org/series/27298/mbox/"
        }
    ],
    "comments": "http://patchwork.dpdk.org/api/covers/124881/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 3A48F41E2F;\n\tThu,  9 Mar 2023 05:57:50 +0100 (CET)",
            "from mails.dpdk.org (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id D283940ED7;\n\tThu,  9 Mar 2023 05:57:49 +0100 (CET)",
            "from foss.arm.com (foss.arm.com [217.140.110.172])\n by mails.dpdk.org (Postfix) with ESMTP id 14A4F40A7E\n for <dev@dpdk.org>; Thu,  9 Mar 2023 05:57:48 +0100 (CET)",
            "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 01071C14;\n Wed,  8 Mar 2023 20:58:31 -0800 (PST)",
            "from 2p2660v4-1.austin.arm.com (2p2660v4-1.austin.arm.com\n [10.118.14.10])\n by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 615FE3F67D;\n Wed,  8 Mar 2023 20:57:47 -0800 (PST)"
        ],
        "From": "Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>",
        "To": "mb@smartsharesystems.com, olivier.matz@6wind.com,\n konstantin.v.ananyev@yandex.ru",
        "Cc": "dev@dpdk.org, honnappa.nagarahalli@arm.com, ruifeng.wang@arm.com,\n kamalakshitha.aligeri@arm.com, wathsala.vithanage@arm.com, nd@arm.com",
        "Subject": "[PATCH 0/4] Small corrections in mempool",
        "Date": "Wed,  8 Mar 2023 22:57:34 -0600",
        "Message-Id": "<20230309045738.1261000-1-honnappa.nagarahalli@arm.com>",
        "X-Mailer": "git-send-email 2.25.1",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "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"
    },
    "content": "1) Patches 1/4, 2/4 - Few small corrections in mempool API documentation.\n2) Patch 3/4 - The API for checking 'lcore ID is valid' is trivial,\n   but it is the right thing to do.\n3) Patch 4/4 - IMO, the 'lcore ID is valid' check is not necessary to be\n   done during run time. If it is not valid, there is something seriously\n   wrong in the system already or it is a programming error. Given that\n   it is a data plane function, it makes sense to remove it from run\n   time check.\n\nHonnappa Nagarahalli (4):\n  mempool: clarify mempool cache flush API behavior\n  mempool: clarify comments for mempool cache implementation\n  eal: add API to check if lcore id is valid\n  mempool: use lcore API to check if lcore ID is valid\n\n lib/eal/include/rte_lcore.h | 14 ++++++++++++++\n lib/mempool/rte_mempool.c   | 12 ++++++------\n lib/mempool/rte_mempool.h   | 13 ++++++++-----\n 3 files changed, 28 insertions(+), 11 deletions(-)"
}