Show a cover letter.

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

{
    "id": 59736,
    "url": "https://patches.dpdk.org/api/covers/59736/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/cover/20190925120355.44821-1-mb@smartsharesystems.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<20190925120355.44821-1-mb@smartsharesystems.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190925120355.44821-1-mb@smartsharesystems.com",
    "date": "2019-09-25T12:03:53",
    "name": "[v2,0/2] mbuf: add bulk free function",
    "submitter": {
        "id": 591,
        "url": "https://patches.dpdk.org/api/people/591/?format=api",
        "name": "Morten Brørup",
        "email": "mb@smartsharesystems.com"
    },
    "mbox": "https://patches.dpdk.org/project/dpdk/cover/20190925120355.44821-1-mb@smartsharesystems.com/mbox/",
    "series": [
        {
            "id": 6527,
            "url": "https://patches.dpdk.org/api/series/6527/?format=api",
            "web_url": "https://patches.dpdk.org/project/dpdk/list/?series=6527",
            "date": "2019-09-25T12:03:53",
            "name": "mbuf: add bulk free function",
            "version": 2,
            "mbox": "https://patches.dpdk.org/series/6527/mbox/"
        }
    ],
    "comments": "https://patches.dpdk.org/api/covers/59736/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 CFDFD2E8F;\n\tWed, 25 Sep 2019 14:04:08 +0200 (CEST)",
            "from smartserver.smartsharesystems.com\n\t(smartserver.smartsharesystems.com [77.243.40.215])\n\tby dpdk.org (Postfix) with ESMTP id CDD652D13\n\tfor <dev@dpdk.org>; Wed, 25 Sep 2019 14:04:07 +0200 (CEST)",
            "from dkrd2.smartsharesys.local ([192.168.4.12]) by\n\tsmartserver.smartsharesystems.com with Microsoft\n\tSMTPSVC(6.0.3790.4675); Wed, 25 Sep 2019 14:04:06 +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, dev@dpdk.org, =?utf-8?q?Morten_Br=C3=B8?=\n\t=?utf-8?q?rup?= <mb@smartsharesystems.com>",
        "Date": "Wed, 25 Sep 2019 12:03:53 +0000",
        "Message-Id": "<20190925120355.44821-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": "25 Sep 2019 12:04:06.0538 (UTC)\n\tFILETIME=[54B116A0:01D57399]",
        "Subject": "[dpdk-dev] [PATCH v2 0/2] 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\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 (2):\n  mbuf: add bulk free function\n  mbuf: add bulk free function\n\n lib/librte_mbuf/rte_mbuf.c | 35 +++++++++++++++++++++++++++++++++++\n lib/librte_mbuf/rte_mbuf.h | 11 +++++++++++\n 2 files changed, 46 insertions(+)"
}