Show a cover letter.

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

{
    "id": 43907,
    "url": "https://patches.dpdk.org/api/covers/43907/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/cover/cover.1535292771.git.rahul.lakkireddy@chelsio.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": "<cover.1535292771.git.rahul.lakkireddy@chelsio.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/cover.1535292771.git.rahul.lakkireddy@chelsio.com",
    "date": "2018-08-27T12:52:28",
    "name": "[0/4] net/cxgbe: add destination MAC match and VLAN rewrite support for flow API",
    "submitter": {
        "id": 241,
        "url": "https://patches.dpdk.org/api/people/241/?format=api",
        "name": "Rahul Lakkireddy",
        "email": "rahul.lakkireddy@chelsio.com"
    },
    "mbox": "https://patches.dpdk.org/project/dpdk/cover/cover.1535292771.git.rahul.lakkireddy@chelsio.com/mbox/",
    "series": [
        {
            "id": 1068,
            "url": "https://patches.dpdk.org/api/series/1068/?format=api",
            "web_url": "https://patches.dpdk.org/project/dpdk/list/?series=1068",
            "date": "2018-08-27T12:52:28",
            "name": "net/cxgbe: add destination MAC match and VLAN rewrite support for flow API",
            "version": 1,
            "mbox": "https://patches.dpdk.org/series/1068/mbox/"
        }
    ],
    "comments": "https://patches.dpdk.org/api/covers/43907/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 428925A6A;\n\tMon, 27 Aug 2018 14:52:54 +0200 (CEST)",
            "from stargate.chelsio.com (stargate.chelsio.com [12.32.117.8])\n\tby dpdk.org (Postfix) with ESMTP id 0D6AA58CB\n\tfor <dev@dpdk.org>; Mon, 27 Aug 2018 14:52:52 +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 w7RCqlic027061; \n\tMon, 27 Aug 2018 05:52:48 -0700"
        ],
        "From": "Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>",
        "To": "dev@dpdk.org",
        "Cc": "shaguna@chelsio.com, indranil@chelsio.com, nirranjan@chelsio.com",
        "Date": "Mon, 27 Aug 2018 18:22:28 +0530",
        "Message-Id": "<cover.1535292771.git.rahul.lakkireddy@chelsio.com>",
        "X-Mailer": "git-send-email 2.5.3",
        "Subject": "[dpdk-dev] [PATCH 0/4] net/cxgbe: add destination MAC match and\n\tVLAN rewrite support for flow API",
        "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": "This series of patches add support to offload flows with destination MAC\nmatch item and VLAN push/pop/rewrite actions.\n\nPatch 1 adds API to program and manage hardware Layer 2 Table (L2T).\nL2T holds destination node information to be used for VLAN rewrite.\n\nPatch 2 implements offloading VLAN push/pop/rewrite actions.\n\nPatch 3 adds API to program and manage hardware Multi Port Switch (MPS)\ntable. MPS holds the destination MAC addresses to be matched against\nincoming packets.\n\nPatch 4 implements offloading destination MAC match item.\n\nThanks,\nRahul\n\nShagun Agrawal (4):\n  net/cxgbe: add API to program hardware layer 2 table\n  net/cxgbe: add flow operations to offload vlan actions\n  net/cxgbe: add API to program hardware MPS table\n  net/cxgbe: add flow operations to match based on destination MAC\n    address\n\n doc/guides/rel_notes/release_18_11.rst  |   7 +\n drivers/net/cxgbe/Makefile              |   2 +\n drivers/net/cxgbe/base/adapter.h        |   4 +\n drivers/net/cxgbe/base/common.h         |   7 +\n drivers/net/cxgbe/base/t4_hw.c          | 108 ++++++++++++++\n drivers/net/cxgbe/base/t4_msg.h         |  40 ++++++\n drivers/net/cxgbe/base/t4_regs.h        |   8 ++\n drivers/net/cxgbe/base/t4_tcb.h         |   5 +\n drivers/net/cxgbe/base/t4fw_interface.h |  26 ++++\n drivers/net/cxgbe/cxgbe_ethdev.c        |   4 +-\n drivers/net/cxgbe/cxgbe_filter.c        |  71 +++++++++-\n drivers/net/cxgbe/cxgbe_filter.h        |  11 ++\n drivers/net/cxgbe/cxgbe_flow.c          |  90 +++++++++++-\n drivers/net/cxgbe/cxgbe_flow.h          |   1 +\n drivers/net/cxgbe/cxgbe_main.c          |  43 ++++--\n drivers/net/cxgbe/l2t.c                 | 227 +++++++++++++++++++++++++++++\n drivers/net/cxgbe/l2t.h                 |  57 ++++++++\n drivers/net/cxgbe/meson.build           |   2 +\n drivers/net/cxgbe/mps_tcam.c            | 243 ++++++++++++++++++++++++++++++++\n drivers/net/cxgbe/mps_tcam.h            |  52 +++++++\n 20 files changed, 987 insertions(+), 21 deletions(-)\n create mode 100644 drivers/net/cxgbe/l2t.c\n create mode 100644 drivers/net/cxgbe/l2t.h\n create mode 100644 drivers/net/cxgbe/mps_tcam.c\n create mode 100644 drivers/net/cxgbe/mps_tcam.h"
}