Show a cover letter.

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

{
    "id": 53192,
    "url": "http://patches.dpdk.org/api/covers/53192/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190501195014.2938-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": "<20190501195014.2938-1-bruce.richardson@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190501195014.2938-1-bruce.richardson@intel.com",
    "date": "2019-05-01T19:50:10",
    "name": "[0/4] fix warnings with gcc 9 on Fedora 30",
    "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/20190501195014.2938-1-bruce.richardson@intel.com/mbox/",
    "series": [
        {
            "id": 4529,
            "url": "http://patches.dpdk.org/api/series/4529/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4529",
            "date": "2019-05-01T19:50:10",
            "name": "fix warnings with gcc 9 on Fedora 30",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/4529/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/53192/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 2FEFBB62;\n\tWed,  1 May 2019 21:50:22 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id 8286E1D7\n\tfor <dev@dpdk.org>; Wed,  1 May 2019 21:50:20 +0200 (CEST)",
            "from orsmga006.jf.intel.com ([10.7.209.51])\n\tby fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t01 May 2019 12:50:19 -0700",
            "from silpixa00399126.ir.intel.com (HELO\n\tsilpixa00399126.ger.corp.intel.com) ([10.237.222.236])\n\tby orsmga006.jf.intel.com with ESMTP; 01 May 2019 12:50:18 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.60,418,1549958400\"; d=\"scan'208\";a=\"140463368\"",
        "From": "Bruce Richardson <bruce.richardson@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Bruce Richardson <bruce.richardson@intel.com>",
        "Date": "Wed,  1 May 2019 20:50:10 +0100",
        "Message-Id": "<20190501195014.2938-1-bruce.richardson@intel.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH 0/4] fix warnings with gcc 9 on Fedora 30",
        "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 set of changes fixes warnings seen when compiling DPDK on Fedora 30.\nIn most cases these warnings appear to be false positives, which means we\nhave the option to just disable the warning. Because the changes required\nto the code to silence the warnings are fairly small I've chosen in all cases\nto change the code rather than disable the warnings, but I'm open to doing\nthe opposite if it's felt it's a better solution. [One thing I didn't like\nabout disabling the warnings is that the disabling flags are not supported\nby clang, so adding them involves compiler checks :-(]\n\nNOTE: this set does not cover all warnings with GCC9, but it does cover\nthose seen when building with meson. There is still one warning disable\nflag needed when building with make, which will need a follow-on set to\nfix.\n\nBruce Richardson (4):\n  net/ixgbe: fix warning with GCC 9 on Fedora 30\n  bus/fslmc: fix printf of null pointer\n  raw/skeleton_rawdev: fix warnings with GCC 9 on Fedora 30\n  raw/dpaa2_cmdif: fix warnings with GCC 9 on Fedora 30\n\n drivers/bus/fslmc/fslmc_bus.c                 | 2 +-\n drivers/net/ixgbe/ixgbe_rxtx.c                | 2 +-\n drivers/raw/dpaa2_cmdif/dpaa2_cmdif.c         | 2 ++\n drivers/raw/skeleton_rawdev/skeleton_rawdev.c | 5 +++++\n 4 files changed, 9 insertions(+), 2 deletions(-)"
}