Show a cover letter.

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

{
    "id": 60619,
    "url": "http://patchwork.dpdk.org/api/covers/60619/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/cover/20191007143013.16252-1-bruce.richardson@intel.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": "<20191007143013.16252-1-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191007143013.16252-1-bruce.richardson@intel.com",
    "date": "2019-10-07T14:30:09",
    "name": "[v2,0/4] synchronise meson warnings with make",
    "submitter": {
        "id": 20,
        "url": "http://patchwork.dpdk.org/api/people/20/?format=api",
        "name": "Bruce Richardson",
        "email": "bruce.richardson@intel.com"
    },
    "mbox": "http://patchwork.dpdk.org/project/dpdk/cover/20191007143013.16252-1-bruce.richardson@intel.com/mbox/",
    "series": [
        {
            "id": 6724,
            "url": "http://patchwork.dpdk.org/api/series/6724/?format=api",
            "web_url": "http://patchwork.dpdk.org/project/dpdk/list/?series=6724",
            "date": "2019-10-07T14:30:09",
            "name": "synchronise meson warnings with make",
            "version": 2,
            "mbox": "http://patchwork.dpdk.org/series/6724/mbox/"
        }
    ],
    "comments": "http://patchwork.dpdk.org/api/covers/60619/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 DFCFD1C1AA;\n\tMon,  7 Oct 2019 16:30:26 +0200 (CEST)",
            "from mga12.intel.com (mga12.intel.com [192.55.52.136])\n\tby dpdk.org (Postfix) with ESMTP id B1F591C1A2\n\tfor <dev@dpdk.org>; Mon,  7 Oct 2019 16:30:24 +0200 (CEST)",
            "from orsmga005.jf.intel.com ([10.7.209.41])\n\tby fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t07 Oct 2019 07:30:19 -0700",
            "from silpixa00399126.ir.intel.com (HELO\n\tsilpixa00399126.ger.corp.intel.com) ([10.237.223.2])\n\tby orsmga005.jf.intel.com with ESMTP; 07 Oct 2019 07:30:17 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.67,268,1566889200\"; d=\"scan'208\";a=\"368131077\"",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "bluca@debian.org,\n\tBruce Richardson <bruce.richardson@intel.com>",
        "Date": "Mon,  7 Oct 2019 15:30:09 +0100",
        "Message-Id": "<20191007143013.16252-1-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "In-Reply-To": "<20190725143831.25116-1-bruce.richardson@intel.com>",
        "References": "<20190725143831.25116-1-bruce.richardson@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v2 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\nv2: fix path to ifpga driver in patch 2, since it has moved in the repo\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/base/meson.build     | 11 -----------\n lib/librte_cmdline/cmdline_parse_num.c |  2 +-\n 13 files changed, 38 insertions(+), 24 deletions(-)"
}