Show a cover letter.

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

{
    "id": 57117,
    "url": "http://patches.dpdk.org/api/covers/57117/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190725143831.25116-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": "<20190725143831.25116-1-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190725143831.25116-1-bruce.richardson@intel.com",
    "date": "2019-07-25T14:38:27",
    "name": "[19.11,0/4] synchronise meson warnings with make",
    "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/20190725143831.25116-1-bruce.richardson@intel.com/mbox/",
    "series": [
        {
            "id": 5755,
            "url": "http://patches.dpdk.org/api/series/5755/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=5755",
            "date": "2019-07-25T14:38:27",
            "name": "synchronise meson warnings with make",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/5755/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/57117/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 E08CD1C371;\n\tThu, 25 Jul 2019 16:38:37 +0200 (CEST)",
            "from mga18.intel.com (mga18.intel.com [134.134.136.126])\n\tby dpdk.org (Postfix) with ESMTP id 8B2651C36F\n\tfor <dev@dpdk.org>; Thu, 25 Jul 2019 16:38:35 +0200 (CEST)",
            "from orsmga001.jf.intel.com ([10.7.209.18])\n\tby orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t25 Jul 2019 07:38:34 -0700",
            "from silpixa00399126.ir.intel.com (HELO\n\tsilpixa00399126.ger.corp.intel.com) ([10.237.223.2])\n\tby orsmga001.jf.intel.com with ESMTP; 25 Jul 2019 07:38:33 -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,307,1559545200\"; d=\"scan'208\";a=\"253948991\"",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Bruce Richardson <bruce.richardson@intel.com>",
        "Date": "Thu, 25 Jul 2019 15:38:27 +0100",
        "Message-Id": "<20190725143831.25116-1-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH 19.11 0/4] synchronise meson warnings with make",
        "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": "The warnings used when building DPDK with make were stricter than those\nused with meson, so this patchset aligns the two as far as is possible,\nwhile also adding in -Wextra as a general compile flag.\n\nThe one difference is that with \"make\" we allow different flags for GCC\nand clang, while with meson we are (for now) keeping them common.\nTherefore we drop the -Wcast-align flag as is generates too many\nfalse positive warnings on clang, and we globally use the\nWno-missing-field-initializers flag for the same reason.\n\nBruce Richardson (4):\n  build: allow compile with stricter fallthrough warnings\n  raw/ifpga: remove unneeded compiler flags\n  build: enable extra warnings for meson build\n  drivers: remove duplicated compiler flags\n\n config/meson.build                        | 24 ++++++++++++++++++++---\n drivers/bus/dpaa/meson.build              |  3 +++\n drivers/event/dsw/meson.build             |  3 +++\n drivers/net/bonding/rte_eth_bond_pmd.c    |  3 ++-\n drivers/net/dpaa/meson.build              |  4 ++++\n drivers/net/fm10k/base/meson.build        |  3 ++-\n drivers/net/i40e/base/meson.build         |  3 ++-\n drivers/net/mlx4/meson.build              |  1 -\n drivers/net/mlx5/meson.build              |  1 -\n drivers/net/sfc/meson.build               |  2 --\n drivers/net/vdev_netvsc/meson.build       |  2 --\n drivers/raw/ifpga_rawdev/base/meson.build | 11 -----------\n lib/librte_cmdline/cmdline_parse_num.c    |  2 +-\n 13 files changed, 38 insertions(+), 24 deletions(-)"
}