Show a cover letter.

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

{
    "id": 93839,
    "url": "http://patches.dpdk.org/api/covers/93839/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/cover.1622676125.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.1622676125.git.rahul.lakkireddy@chelsio.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1622676125.git.rahul.lakkireddy@chelsio.com",
    "date": "2021-06-02T21:57:49",
    "name": "[0/2] net/cxgbe: add RAW MAC matchall filter support",
    "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.1622676125.git.rahul.lakkireddy@chelsio.com/mbox/",
    "series": [
        {
            "id": 17217,
            "url": "http://patches.dpdk.org/api/series/17217/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=17217",
            "date": "2021-06-02T21:57:49",
            "name": "net/cxgbe: add RAW MAC matchall filter support",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/17217/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/93839/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from mails.dpdk.org (mails.dpdk.org [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id E29E9A0524;\n\tThu,  3 Jun 2021 01:58:47 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 7F1C74067A;\n\tThu,  3 Jun 2021 01:58:47 +0200 (CEST)",
            "from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8])\n by mails.dpdk.org (Postfix) with ESMTP id 70D724013F\n for <dev@dpdk.org>; Thu,  3 Jun 2021 01:58:46 +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 152Nwh26007557\n for <dev@dpdk.org>; Wed, 2 Jun 2021 16:58:44 -0700"
        ],
        "From": "Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>",
        "To": "dev@dpdk.org",
        "Date": "Thu,  3 Jun 2021 03:27:49 +0530",
        "Message-Id": "<cover.1622676125.git.rahul.lakkireddy@chelsio.com>",
        "X-Mailer": "git-send-email 2.5.3",
        "Subject": "[dpdk-dev] [PATCH 0/2] net/cxgbe: add RAW MAC matchall filter\n support",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.29",
        "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": "Chelsio T6 ASIC doesn't track Rx promisc traffic dropped due to lack\nof Rx buffers and hence the imissed counter doesn't increment. Add\nsupport for RAW MAC filter to insert a wildcard matchall rule at\nthe end of MPS TCAM to make MPS track the promisc traffic.\n\nPatch 1 converts all deprecated rte_atomic ops to C11 atomics.\n\nPatch 2 queries firmware for RAW MAC matchall filter support and\nenables it when available.\n\nRahul Lakkireddy (2):\n  net/cxgbe: use C11 atomics instead of rte_atomic ops\n  net/cxgbe: add MAC matchall to track promisc traffic\n\n doc/guides/nics/cxgbe.rst               | 14 ++--\n drivers/net/cxgbe/base/common.h         |  3 +\n drivers/net/cxgbe/base/t4_hw.c          |  1 -\n drivers/net/cxgbe/base/t4fw_interface.h |  2 +\n drivers/net/cxgbe/clip_tbl.c            | 13 ++--\n drivers/net/cxgbe/clip_tbl.h            |  2 +-\n drivers/net/cxgbe/cxgbe_ethdev.c        | 15 ++++-\n drivers/net/cxgbe/cxgbe_main.c          | 37 +++++++----\n drivers/net/cxgbe/cxgbe_ofld.h          |  6 +-\n drivers/net/cxgbe/l2t.c                 | 14 ++--\n drivers/net/cxgbe/l2t.h                 |  2 +-\n drivers/net/cxgbe/mps_tcam.c            | 87 ++++++++++++++++++++++---\n drivers/net/cxgbe/mps_tcam.h            |  6 +-\n drivers/net/cxgbe/sge.c                 |  1 -\n drivers/net/cxgbe/smt.c                 | 14 ++--\n drivers/net/cxgbe/smt.h                 |  2 +-\n 16 files changed, 161 insertions(+), 58 deletions(-)"
}