Show a cover letter.

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

{
    "id": 60015,
    "url": "http://patchwork.dpdk.org/api/covers/60015/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/cover/20190927100513.105674-1-mb@smartsharesystems.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": "<20190927100513.105674-1-mb@smartsharesystems.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190927100513.105674-1-mb@smartsharesystems.com",
    "date": "2019-09-27T10:05:10",
    "name": "[v3,0/3] mbuf: add bulk free function",
    "submitter": {
        "id": 591,
        "url": "http://patchwork.dpdk.org/api/people/591/?format=api",
        "name": "Morten Brørup",
        "email": "mb@smartsharesystems.com"
    },
    "mbox": "http://patchwork.dpdk.org/project/dpdk/cover/20190927100513.105674-1-mb@smartsharesystems.com/mbox/",
    "series": [
        {
            "id": 6580,
            "url": "http://patchwork.dpdk.org/api/series/6580/?format=api",
            "web_url": "http://patchwork.dpdk.org/project/dpdk/list/?series=6580",
            "date": "2019-09-27T10:05:10",
            "name": "mbuf: add bulk free function",
            "version": 3,
            "mbox": "http://patchwork.dpdk.org/series/6580/mbox/"
        }
    ],
    "comments": "http://patchwork.dpdk.org/api/covers/60015/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 6E4001BEC1;\n\tFri, 27 Sep 2019 12:05:26 +0200 (CEST)",
            "from smartserver.smartsharesystems.com\n\t(smartserver.smartsharesystems.com [77.243.40.215])\n\tby dpdk.org (Postfix) with ESMTP id 10F6B1BEBF\n\tfor <dev@dpdk.org>; Fri, 27 Sep 2019 12:05:25 +0200 (CEST)",
            "from dkrd2.smartsharesys.local ([192.168.4.12]) by\n\tsmartserver.smartsharesystems.com with Microsoft\n\tSMTPSVC(6.0.3790.4675); Fri, 27 Sep 2019 12:05:24 +0200"
        ],
        "From": "=?utf-8?q?Morten_Br=C3=B8rup?= <mb@smartsharesystems.com>",
        "To": "olivier.matz@6wind.com",
        "Cc": "stephen@networkplumber.org, harry.van.haaren@intel.com,\n\tkonstantin.ananyev@intel.com, mattias.ronnblom@ericsson.com, \n\tbruce.richardson@intel.com, arybchenko@solarflare.com, dev@dpdk.org, \n\t=?utf-8?q?Morten_Br=C3=B8rup?= <mb@smartsharesystems.com>",
        "Date": "Fri, 27 Sep 2019 10:05:10 +0000",
        "Message-Id": "<20190927100513.105674-1-mb@smartsharesystems.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=UTF-8",
        "Content-Transfer-Encoding": "8bit",
        "X-OriginalArrivalTime": "27 Sep 2019 10:05:24.0611 (UTC)\n\tFILETIME=[1484C530:01D5751B]",
        "Subject": "[dpdk-dev] [PATCH v3 0/3] mbuf: add bulk free function",
        "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": "Add function for freeing a bulk of mbufs.\n\nv3:\n* Bugfix: Handle pakets with multiple segments.\n* Added inline helper function, mainly for readability.\n* Fix source code formatting regarding indentation.\nv2:\n* Function is not inline.\n* Optimized to free multible mbufs belonging to the same mempool in\nbulk. Inspired by ixgbe_tx_free_bufs(), but allowing NULL pointers\nin the array, just like rte_pktmbuf_free() can take a NULL pointer.\n* Use unsigned int instead of unsigned. Passes checkpatch, but\nmismatches the original coding style of the modified files.\n* Fixed a typo in the description headline: mempools is plural.\n\nMorten Brørup (3):\n  mbuf: add bulk free function\n  mbuf: add bulk free function\n  mbuf: add bulk free function\n\n lib/librte_mbuf/rte_mbuf.c | 50 ++++++++++++++++++++++++++++++++++++++\n lib/librte_mbuf/rte_mbuf.h | 11 +++++++++\n 2 files changed, 61 insertions(+)"
}