Show a cover letter.

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

{
    "id": 60006,
    "url": "http://patches.dpdk.org/api/covers/60006/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190927090948.32909-1-chenxux.di@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": "<20190927090948.32909-1-chenxux.di@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190927090948.32909-1-chenxux.di@intel.com",
    "date": "2019-09-27T09:09:43",
    "name": "[v7,0/5] drivers/net: release port upon close",
    "submitter": {
        "id": 1409,
        "url": "http://patches.dpdk.org/api/people/1409/?format=api",
        "name": "Chenxu Di",
        "email": "chenxux.di@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190927090948.32909-1-chenxux.di@intel.com/mbox/",
    "series": [
        {
            "id": 6578,
            "url": "http://patches.dpdk.org/api/series/6578/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=6578",
            "date": "2019-09-27T09:09:43",
            "name": "drivers/net: release port upon close",
            "version": 7,
            "mbox": "http://patches.dpdk.org/series/6578/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/60006/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 4DC721BEA1;\n\tFri, 27 Sep 2019 11:53:01 +0200 (CEST)",
            "from mga03.intel.com (mga03.intel.com [134.134.136.65])\n\tby dpdk.org (Postfix) with ESMTP id 149EC1BE98\n\tfor <dev@dpdk.org>; Fri, 27 Sep 2019 11:52:55 +0200 (CEST)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t27 Sep 2019 02:52:55 -0700",
            "from intel.sh.intel.com ([10.239.255.149])\n\tby fmsmga002.fm.intel.com with ESMTP; 27 Sep 2019 02:52:53 -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,555,1559545200\"; d=\"scan'208\";a=\"219722060\"",
        "From": "Di ChenxuX <chenxux.di@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "qiming.yang@intel.com,\n\tDi ChenxuX <chenxux.di@intel.com>",
        "Date": "Fri, 27 Sep 2019 09:09:43 +0000",
        "Message-Id": "<20190927090948.32909-1-chenxux.di@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20190827050142.16010-1-chenxux.di@intel.com>",
        "References": "<20190827050142.16010-1-chenxux.di@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v7 0/5] drivers/net: release port upon close",
        "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": "Set RTE_ETH_DEV_CLOSE_REMOVE upon probe so all the private resources\n for the port can be freed by rte_eth_dev_close().\nThis patch cover all the intel drivers.\n\n---\nV7 changes:\n  Modified code on the last commit.\nV6 changes:\n  Fixed check error.\nV5 changes:\n  Added code in em_ethdev.c.\n  Separated the release note, each patch has its own note. \nV4 changes:\n  Removed adaper stopped flag in function ice_dev_init.\nV3 changes:\n  Removed adapter closed flag in driver e1000, fm10k, ice, ixgbe.\nV2 changes:\n  Separated to 5 patches, each patch only change one driver.\n  Added resource release in dev_close.\n\nAcked-by: Qiming Yang <qiming.yang@intel.com>\nSeries Reviewed-by: Xiaolong Ye <xiaolong.ye@intel.com>\n\nDi ChenxuX (5):\n  net/e1000: release port upon close\n  net/fm10k: release port upon close\n  net/i40e: release port upon close\n  net/ice: release port upon close\n  net/ixgbe: release port upon close\n\n doc/guides/rel_notes/release_19_11.rst |  18 +++\n drivers/net/e1000/em_ethdev.c          |  33 ++---\n drivers/net/e1000/igb_ethdev.c         | 144 ++++++++++-----------\n drivers/net/fm10k/fm10k_ethdev.c       | 100 ++++++++-------\n drivers/net/i40e/i40e_ethdev.c         | 128 +++++++++----------\n drivers/net/i40e/i40e_ethdev_vf.c      |  25 ++--\n drivers/net/ice/ice_ethdev.c           |  30 +++--\n drivers/net/ixgbe/ixgbe_ethdev.c       | 167 +++++++++++++------------\n 8 files changed, 335 insertions(+), 310 deletions(-)"
}