Show a cover letter.

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

{
    "id": 52436,
    "url": "http://patches.dpdk.org/api/covers/52436/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190408182420.4398-1-aconole@redhat.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": "<20190408182420.4398-1-aconole@redhat.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190408182420.4398-1-aconole@redhat.com",
    "date": "2019-04-08T18:24:17",
    "name": "[0/3] librte_acl: fixes related to testing with the meson build",
    "submitter": {
        "id": 332,
        "url": "http://patches.dpdk.org/api/people/332/?format=api",
        "name": "Aaron Conole",
        "email": "aconole@redhat.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190408182420.4398-1-aconole@redhat.com/mbox/",
    "series": [
        {
            "id": 4189,
            "url": "http://patches.dpdk.org/api/series/4189/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4189",
            "date": "2019-04-08T18:24:17",
            "name": "librte_acl: fixes related to testing with the meson build",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/4189/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/52436/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 2EA363572;\n\tMon,  8 Apr 2019 20:24:25 +0200 (CEST)",
            "from mx1.redhat.com (mx1.redhat.com [209.132.183.28])\n\tby dpdk.org (Postfix) with ESMTP id 9D19D2BCE\n\tfor <dev@dpdk.org>; Mon,  8 Apr 2019 20:24:23 +0200 (CEST)",
            "from smtp.corp.redhat.com\n\t(int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby mx1.redhat.com (Postfix) with ESMTPS id 78E7331524C4;\n\tMon,  8 Apr 2019 18:24:22 +0000 (UTC)",
            "from dhcp-25.97.bos.redhat.com (unknown [10.18.25.61])\n\tby smtp.corp.redhat.com (Postfix) with ESMTP id BCBAA6092E;\n\tMon,  8 Apr 2019 18:24:21 +0000 (UTC)"
        ],
        "From": "Aaron Conole <aconole@redhat.com>",
        "To": "dev@dpdk.org",
        "Cc": "Konstantin Ananyev <konstantin.ananyev@intel.com>,\n\tJerin Jacob <jerinj@marvell.com>, Gavin Hu <gavin.hu@arm.com>",
        "Date": "Mon,  8 Apr 2019 14:24:17 -0400",
        "Message-Id": "<20190408182420.4398-1-aconole@redhat.com>",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "X-Scanned-By": "MIMEDefang 2.79 on 10.5.11.13",
        "X-Greylist": "Sender IP whitelisted, not delayed by milter-greylist-4.5.16\n\t(mx1.redhat.com [10.5.110.41]); Mon, 08 Apr 2019 18:24:22 +0000 (UTC)",
        "Subject": "[dpdk-dev] [PATCH 0/3] librte_acl: fixes related to testing with\n\tthe meson build",
        "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": "This series fixes the following conditions in the RTE_ACL library:\n\n  1. Fix outstanding compilation issues on ARM with the NEON optimized code\n     These consisted mostly of compiler type-cast warnings.  Additionally, some\n     of the vector code didn't initialize memory properly.\n\n  2. Properly include ARM, and PPC objects when building on those platforms\n     During the meson port, only the scalar code, and some of the x86_64 code was\n     ported.\n\n  3. Allow the unit tests to pass\n     In order to support this, the unsupported symbols were moved to a separate\n     file, which was needed to prevent the compiler from inlining references to the\n     functions (resulting in non-scalar code always falling into the -ENOTSUP case).\n\n     The tests were modified to primarily test the scalar version - a better system\n     for exercising the non-scalar code needs to be developed.\n\nAaron Conole (3):\n  acl: fix arm argument types\n  acl: update the build for multi-arch\n  acl: adjust the tests\n\n app/test/test_acl.c             | 62 +++++++++++++--------------------\n lib/librte_acl/Makefile         |  1 +\n lib/librte_acl/acl_run_neon.h   | 46 ++++++++++++++----------\n lib/librte_acl/acl_run_notsup.c | 46 ++++++++++++++++++++++++\n lib/librte_acl/meson.build      |  9 +++--\n 5 files changed, 104 insertions(+), 60 deletions(-)\n create mode 100644 lib/librte_acl/acl_run_notsup.c"
}