Show a cover letter.

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

{
    "id": 60990,
    "url": "http://patches.dpdk.org/api/covers/60990/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/157083994018.11524.11276616720287263690.stgit@devele/",
    "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": "<157083994018.11524.11276616720287263690.stgit@devele>",
    "list_archive_url": "https://inbox.dpdk.org/dev/157083994018.11524.11276616720287263690.stgit@devele",
    "date": "2019-10-12T00:26:26",
    "name": "[00/17] Series short description",
    "submitter": {
        "id": 1465,
        "url": "http://patches.dpdk.org/api/people/1465/?format=api",
        "name": "Alfredo Cardigliano",
        "email": "cardigliano@ntop.org"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/157083994018.11524.11276616720287263690.stgit@devele/mbox/",
    "series": [
        {
            "id": 6811,
            "url": "http://patches.dpdk.org/api/series/6811/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=6811",
            "date": "2019-10-12T00:26:26",
            "name": "Series short description",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/6811/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/60990/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 3D79A1EB4A;\n\tSat, 12 Oct 2019 02:26:29 +0200 (CEST)",
            "from devele.ntop.org (net-93-145-196-230.cust.vodafonedsl.it\n\t[93.145.196.230]) by dpdk.org (Postfix) with ESMTP id 36E591EB49\n\tfor <dev@dpdk.org>; Sat, 12 Oct 2019 02:26:27 +0200 (CEST)",
            "from [192.168.2.134] (localhost6.localdomain6 [IPv6:::1])\n\tby devele.ntop.org (Postfix) with ESMTP id C55B46C003C\n\tfor <dev@dpdk.org>; Sat, 12 Oct 2019 02:26:26 +0200 (CEST)"
        ],
        "From": "Alfredo Cardigliano <cardigliano@ntop.org>",
        "To": "dev@dpdk.org",
        "Date": "Sat, 12 Oct 2019 02:26:26 +0200",
        "Message-ID": "<157083994018.11524.11276616720287263690.stgit@devele>",
        "User-Agent": "StGit/0.17.1-dirty",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=\"utf-8\"",
        "Content-Transfer-Encoding": "7bit",
        "Subject": "[dpdk-dev] [PATCH 00/17] Series short description",
        "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": "The patch series provides an initial version of a\npoll mode driver for Pensando network adapters.\nThe driver name is ionic.\n\n---\n\nAlfredo Cardigliano (17):\n      net/ionic: add skeleton\n      net/ionic: add hardware structures definitions\n      net/ionic: add log\n      net/ionic: register and initialize the adapter\n      net/ionic: add port management commands\n      net/ionic: add basic lif support\n      net/ionic: add doorbells\n      net/ionic: add adminq support\n      net/ionic: add notifyq support\n      net/ionic: add basic port operations\n      net/ionic: add RX filters support\n      net/ionic: net-ionic-add-flow-control-support\n      net/ionic: add RSS support\n      net/ionic: add RX and TX handling\n      net/ionic: add stats\n      net/ionic: add TX checksum support\n      net/ionic: read fw version\n\n\n MAINTAINERS                                 |    6 \n config/common_base                          |    7 \n doc/guides/nics/features/ionic.ini          |   36 \n doc/guides/nics/index.rst                   |    1 \n doc/guides/nics/ionic.rst                   |   45 \n drivers/net/Makefile                        |    1 \n drivers/net/ionic/Makefile                  |   64 +\n drivers/net/ionic/ionic.h                   |   82 +\n drivers/net/ionic/ionic_dev.c               |  572 ++++++\n drivers/net/ionic/ionic_dev.h               |  281 +++\n drivers/net/ionic/ionic_ethdev.c            | 1335 ++++++++++++++\n drivers/net/ionic/ionic_ethdev.h            |   22 \n drivers/net/ionic/ionic_if.h                | 2491 +++++++++++++++++++++++++++\n drivers/net/ionic/ionic_lif.c               | 1713 +++++++++++++++++++\n drivers/net/ionic/ionic_lif.h               |  189 ++\n drivers/net/ionic/ionic_logs.h              |   46 \n drivers/net/ionic/ionic_mac_api.c           |   61 +\n drivers/net/ionic/ionic_mac_api.h           |   13 \n drivers/net/ionic/ionic_main.c              |  452 +++++\n drivers/net/ionic/ionic_osdep.h             |   81 +\n drivers/net/ionic/ionic_regs.h              |  142 ++\n drivers/net/ionic/ionic_rx_filter.c         |  140 ++\n drivers/net/ionic/ionic_rx_filter.h         |   47 +\n drivers/net/ionic/ionic_rxtx.c              | 1077 ++++++++++++\n drivers/net/ionic/ionic_rxtx.h              |   44 \n drivers/net/ionic/meson.build               |   15 \n drivers/net/ionic/rte_pmd_ionic_version.map |    5 \n mk/rte.app.mk                               |    1 \n 28 files changed, 8969 insertions(+)\n create mode 100644 doc/guides/nics/features/ionic.ini\n create mode 100644 doc/guides/nics/ionic.rst\n create mode 100644 drivers/net/ionic/Makefile\n create mode 100644 drivers/net/ionic/ionic.h\n create mode 100644 drivers/net/ionic/ionic_dev.c\n create mode 100644 drivers/net/ionic/ionic_dev.h\n create mode 100644 drivers/net/ionic/ionic_ethdev.c\n create mode 100644 drivers/net/ionic/ionic_ethdev.h\n create mode 100644 drivers/net/ionic/ionic_if.h\n create mode 100644 drivers/net/ionic/ionic_lif.c\n create mode 100644 drivers/net/ionic/ionic_lif.h\n create mode 100644 drivers/net/ionic/ionic_logs.h\n create mode 100644 drivers/net/ionic/ionic_mac_api.c\n create mode 100644 drivers/net/ionic/ionic_mac_api.h\n create mode 100644 drivers/net/ionic/ionic_main.c\n create mode 100644 drivers/net/ionic/ionic_osdep.h\n create mode 100644 drivers/net/ionic/ionic_regs.h\n create mode 100644 drivers/net/ionic/ionic_rx_filter.c\n create mode 100644 drivers/net/ionic/ionic_rx_filter.h\n create mode 100644 drivers/net/ionic/ionic_rxtx.c\n create mode 100644 drivers/net/ionic/ionic_rxtx.h\n create mode 100644 drivers/net/ionic/meson.build\n create mode 100644 drivers/net/ionic/rte_pmd_ionic_version.map\n\n--\nSignature"
}