Show a cover letter.

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

{
    "id": 43370,
    "url": "http://patches.dpdk.org/api/covers/43370/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20180725171007.94198-1-jasvinder.singh@intel.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": "<20180725171007.94198-1-jasvinder.singh@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180725171007.94198-1-jasvinder.singh@intel.com",
    "date": "2018-07-25T17:10:01",
    "name": "[0/6] net/softnic: expose tmgr through firmware",
    "submitter": {
        "id": 285,
        "url": "http://patches.dpdk.org/api/people/285/?format=api",
        "name": "Jasvinder Singh",
        "email": "jasvinder.singh@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20180725171007.94198-1-jasvinder.singh@intel.com/mbox/",
    "series": [
        {
            "id": 775,
            "url": "http://patches.dpdk.org/api/series/775/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=775",
            "date": "2018-07-25T17:10:01",
            "name": "net/softnic: expose tmgr through firmware",
            "version": 1,
            "mbox": "http://patches.dpdk.org/series/775/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/43370/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 6F7BD31FC;\n\tWed, 25 Jul 2018 19:10:11 +0200 (CEST)",
            "from mga12.intel.com (mga12.intel.com [192.55.52.136])\n\tby dpdk.org (Postfix) with ESMTP id ACD341C01\n\tfor <dev@dpdk.org>; Wed, 25 Jul 2018 19:10:10 +0200 (CEST)",
            "from orsmga003.jf.intel.com ([10.7.209.27])\n\tby fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t25 Jul 2018 10:10:09 -0700",
            "from silpixa00381635.ir.intel.com (HELO\n\tsilpixa00381635.ger.corp.intel.com) ([10.237.222.149])\n\tby orsmga003.jf.intel.com with ESMTP; 25 Jul 2018 10:10:08 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.51,401,1526367600\"; d=\"scan'208\";a=\"69856088\"",
        "From": "Jasvinder Singh <jasvinder.singh@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "cristian.dumitrescu@intel.com",
        "Date": "Wed, 25 Jul 2018 18:10:01 +0100",
        "Message-Id": "<20180725171007.94198-1-jasvinder.singh@intel.com>",
        "X-Mailer": "git-send-email 2.9.3",
        "Subject": "[dpdk-dev] [PATCH 0/6] net/softnic: expose tmgr through firmware",
        "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 patchset provide the necessary Soft NIC firmware CLI commands to\ncontrol the Traffic Manager (TMGR) through firmware.\n\nThe Soft NIC TMGR function can now be controlled through either Soft NIC\nfirmware or through the ethdev TM API (e.g. via test-pmd app).\n\nCristian Dumitrescu (6):\n  net/softnic: add CLI command for tmgr create\n  net/softnic: add CLI command for tmgr shaper profile\n  net/softnic: add CLI command for tmgr shared shaper\n  net/softnic: add CLI command for tmgr node addition\n  net/softnic: add CLI command for tmgr hierarchy commit\n  net/softnic: add CLI command for default tmgr hierarchy\n\n drivers/net/softnic/parser.c                    |  18 +\n drivers/net/softnic/parser.h                    |   2 +\n drivers/net/softnic/rte_eth_softnic.c           |  17 +-\n drivers/net/softnic/rte_eth_softnic_cli.c       | 917 ++++++++++++++++++++++++\n drivers/net/softnic/rte_eth_softnic_internals.h |  14 +-\n drivers/net/softnic/rte_eth_softnic_tm.c        | 205 +++---\n 6 files changed, 1029 insertions(+), 144 deletions(-)"
}