Show a cover letter.

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

{
    "id": 77531,
    "url": "http://patches.dpdk.org/api/covers/77531/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/cover.1599865410.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.1599865410.git.rahul.lakkireddy@chelsio.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1599865410.git.rahul.lakkireddy@chelsio.com",
    "date": "2020-09-11T23:52:07",
    "name": "[0/3] net/cxgbe: rework queue allocation and add RSS reta update",
    "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.1599865410.git.rahul.lakkireddy@chelsio.com/mbox/",
    "series": [
        {
            "id": 12167,
            "url": "http://patches.dpdk.org/api/series/12167/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=12167",
            "date": "2020-09-11T23:52:07",
            "name": "net/cxgbe: rework queue allocation and add RSS reta update",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/12167/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/77531/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 473ADA04C3;\n\tSat, 12 Sep 2020 02:06:34 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 9FA671C1BE;\n\tSat, 12 Sep 2020 02:06:33 +0200 (CEST)",
            "from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8])\n by dpdk.org (Postfix) with ESMTP id 203F61C191\n for <dev@dpdk.org>; Sat, 12 Sep 2020 02:06:30 +0200 (CEST)",
            "from localhost (scalar.blr.asicdesigners.com [10.193.185.94])\n by stargate.chelsio.com (8.13.8/8.13.8) with ESMTP id 08C06SqD020118;\n Fri, 11 Sep 2020 17:06:28 -0700"
        ],
        "From": "Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>",
        "To": "dev@dpdk.org",
        "Cc": "kaara.satwik@chelsio.com",
        "Date": "Sat, 12 Sep 2020 05:22:07 +0530",
        "Message-Id": "<cover.1599865410.git.rahul.lakkireddy@chelsio.com>",
        "X-Mailer": "git-send-email 2.5.3",
        "Subject": "[dpdk-dev] [PATCH 0/3] net/cxgbe: rework queue allocation and add\n\tRSS reta update",
        "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": "Patch 1 removes the equal distribution queue allocation across all\nports under the same PF. Instead, the queues are allocated based\non whichever port requests for the queues first. This will allow\nunused queue resources on other ports to be redistributed to ports\nthat need more queues.\n\nPatch 2 increases the Rx congestion channels from 4 to 8 on T6 to\nimprove Rx congestion control.\n\nPatch 3 adds support to manipulate RSS redirection table.\n\nThis series depends on [1] titled:\n\"net/cxgbe: release port resources during port close\"\n\n[1] https://mails.dpdk.org/archives/dev/2020-September/179131.html\n\nThanks,\nRahul\n\nRahul Lakkireddy (3):\n  net/cxgbe: rework queue allocation between ports\n  net/cxgbe: improve Rx congestion control\n  net/cxgbe: add support to update RSS redirection table\n\n doc/guides/nics/features/cxgbe.ini |   1 +\n drivers/net/cxgbe/base/adapter.h   |  23 +++--\n drivers/net/cxgbe/base/common.h    |   2 +\n drivers/net/cxgbe/base/t4_hw.c     |  12 +++\n drivers/net/cxgbe/cxgbe.h          |   3 +-\n drivers/net/cxgbe/cxgbe_ethdev.c   | 117 +++++++++++++++++-----\n drivers/net/cxgbe/cxgbe_filter.c   |   2 +-\n drivers/net/cxgbe/cxgbe_main.c     | 156 ++++++++++++++---------------\n drivers/net/cxgbe/cxgbevf_ethdev.c |   4 +-\n drivers/net/cxgbe/cxgbevf_main.c   |   7 +-\n drivers/net/cxgbe/sge.c            |  41 +++++---\n 11 files changed, 233 insertions(+), 135 deletions(-)"
}