Show a cover letter.

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

{
    "id": 41997,
    "url": "http://patches.dpdk.org/api/covers/41997/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/cover.1530300158.git.rahul.lakkireddy@chelsio.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": "<cover.1530300158.git.rahul.lakkireddy@chelsio.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1530300158.git.rahul.lakkireddy@chelsio.com",
    "date": "2018-06-29T19:23:50",
    "name": "[0/5] net/cxgbe: feature updates and bug fixes",
    "submitter": {
        "id": 241,
        "url": "http://patches.dpdk.org/api/people/241/?format=api",
        "name": "Rahul Lakkireddy",
        "email": "rahul.lakkireddy@chelsio.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/cover.1530300158.git.rahul.lakkireddy@chelsio.com/mbox/",
    "series": [
        {
            "id": 332,
            "url": "http://patches.dpdk.org/api/series/332/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=332",
            "date": "2018-06-29T19:23:50",
            "name": "net/cxgbe: feature updates and bug fixes",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/332/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/41997/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 12C501B910;\n\tFri, 29 Jun 2018 21:25:18 +0200 (CEST)",
            "from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8])\n\tby dpdk.org (Postfix) with ESMTP id 3AB431B90B\n\tfor <dev@dpdk.org>; Fri, 29 Jun 2018 21:25:15 +0200 (CEST)",
            "from localhost (scalar.blr.asicdesigners.com [10.193.185.94])\n\tby stargate.chelsio.com (8.13.8/8.13.8) with ESMTP id w5TJP8V4028986; \n\tFri, 29 Jun 2018 12:25:08 -0700"
        ],
        "From": "Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>",
        "To": "dev@dpdk.org",
        "Cc": "surendra@chelsio.com, shaguna@chelsio.com, indranil@chelsio.com,\n\tnirranjan@chelsio.com",
        "Date": "Sat, 30 Jun 2018 00:53:50 +0530",
        "Message-Id": "<cover.1530300158.git.rahul.lakkireddy@chelsio.com>",
        "X-Mailer": "git-send-email 2.5.3",
        "Subject": "[dpdk-dev] [PATCH 0/5] net/cxgbe: feature updates and bug fixes",
        "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": "Patch 1 adds link up and down operations for PF and VF.\n\nPatch 2 enables 2-tuple based RSS hash on IPv4 fragment packets and\nIPv6 packets with extension headers.\n\nPatch 3 queries firmware for max queues that can be allocated.\n\nPatch 4 fixes Rx channel map and ingress queue type needed for firmware\nto manage internal mapping correctly.\n\nPatch 5 fixes forgotten Tx byte counters for VF.\n\nThanks,\nRahul\n\nRahul Lakkireddy (5):\n  net/cxgbe: add link up and down ops\n  net/cxgbe: enable more RSS hash functions\n  net/cxgbe: query firmware for max queues available\n  net/cxgbe: fix Rx channel map and queue type\n  net/cxgbevf: add missing Tx byte counters\n\n drivers/net/cxgbe/base/common.h         |  10 ++++\n drivers/net/cxgbe/base/t4_hw.c          |  40 +++++++++++++\n drivers/net/cxgbe/base/t4_regs.h        |   3 +\n drivers/net/cxgbe/base/t4fw_interface.h |  14 +++++\n drivers/net/cxgbe/base/t4vf_hw.c        |   6 ++\n drivers/net/cxgbe/cxgbe.h               |  21 +++++--\n drivers/net/cxgbe/cxgbe_compat.h        |   9 ---\n drivers/net/cxgbe/cxgbe_ethdev.c        |  80 ++++++++++++++++++++++---\n drivers/net/cxgbe/cxgbe_main.c          | 100 +++++++++++++++++++++++++-------\n drivers/net/cxgbe/cxgbe_pfvf.h          |   2 +\n drivers/net/cxgbe/cxgbevf_ethdev.c      |   3 +\n drivers/net/cxgbe/cxgbevf_main.c        |  20 +------\n drivers/net/cxgbe/sge.c                 |  10 +++-\n 13 files changed, 256 insertions(+), 62 deletions(-)"
}