Show a cover letter.

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

{
    "id": 64031,
    "url": "http://patches.dpdk.org/api/covers/64031/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20191220030235.17470-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": "<20191220030235.17470-1-chenxux.di@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191220030235.17470-1-chenxux.di@intel.com",
    "date": "2019-12-20T03:02:30",
    "name": "[v2,0/5] drivers/net: cleanup Tx buffers",
    "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/20191220030235.17470-1-chenxux.di@intel.com/mbox/",
    "series": [
        {
            "id": 7900,
            "url": "http://patches.dpdk.org/api/series/7900/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=7900",
            "date": "2019-12-20T03:02:30",
            "name": "drivers/net: cleanup Tx buffers",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/7900/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/64031/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id CDDA3A04F3;\n\tFri, 20 Dec 2019 04:03:08 +0100 (CET)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id EAAC61BC25;\n\tFri, 20 Dec 2019 04:03:06 +0100 (CET)",
            "from mga02.intel.com (mga02.intel.com [134.134.136.20])\n by dpdk.org (Postfix) with ESMTP id 602611B9BF\n for <dev@dpdk.org>; Fri, 20 Dec 2019 04:03:05 +0100 (CET)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n 19 Dec 2019 19:03:03 -0800",
            "from intel.sh.intel.com ([10.239.255.149])\n by fmsmga002.fm.intel.com with ESMTP; 19 Dec 2019 19:03:02 -0800"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.69,334,1571727600\"; d=\"scan'208\";a=\"248551996\"",
        "From": "Chenxu Di <chenxux.di@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Yang Qiming <qiming.yang@intel.com>,\n\tChenxu Di <chenxux.di@intel.com>",
        "Date": "Fri, 20 Dec 2019 03:02:30 +0000",
        "Message-Id": "<20191220030235.17470-1-chenxux.di@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20191203055134.72874-1-chenxux.di@intel.com>",
        "References": "<20191203055134.72874-1-chenxux.di@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/5] drivers/net: cleanup Tx buffers",
        "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 <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Add support to the drivers inclulding fm10k, i40e, ice, ixgbe\nand igb vf for the API rte_eth_tx_done_cleanup to\n force free consumed buffers on Tx ring.\n\n---\nv2:\nadded code about igb vf.\n\nChenxu Di (5):\n  net/e1000: cleanup Tx buffers\n  net/fm10k: cleanup Tx buffers\n  net/i40e: cleanup Tx buffers\n  net/ice: cleanup Tx buffers\n  net/ixgbe: cleanup Tx buffers\n\n drivers/net/e1000/igb_ethdev.c    |  1 +\n drivers/net/fm10k/fm10k.h         |  2 ++\n drivers/net/fm10k/fm10k_ethdev.c  |  1 +\n drivers/net/fm10k/fm10k_rxtx.c    | 45 +++++++++++++++++++++++++++++++\n drivers/net/i40e/i40e_ethdev.c    |  1 +\n drivers/net/i40e/i40e_ethdev_vf.c |  1 +\n drivers/net/i40e/i40e_rxtx.c      | 40 +++++++++++++++++++++++++++\n drivers/net/i40e/i40e_rxtx.h      |  1 +\n drivers/net/ice/ice_ethdev.c      |  1 +\n drivers/net/ice/ice_rxtx.c        | 41 ++++++++++++++++++++++++++++\n drivers/net/ice/ice_rxtx.h        |  1 +\n drivers/net/ixgbe/ixgbe_ethdev.c  |  2 ++\n drivers/net/ixgbe/ixgbe_rxtx.c    | 39 +++++++++++++++++++++++++++\n drivers/net/ixgbe/ixgbe_rxtx.h    |  2 ++\n 14 files changed, 178 insertions(+)"
}