Show a cover letter.

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

{
    "id": 44868,
    "url": "http://patches.dpdk.org/api/covers/44868/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20180918165835.107593-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": "<20180918165835.107593-1-jasvinder.singh@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180918165835.107593-1-jasvinder.singh@intel.com",
    "date": "2018-09-18T16:58:25",
    "name": "[v4,00/10] net/softnic: implement metering and policing API",
    "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/20180918165835.107593-1-jasvinder.singh@intel.com/mbox/",
    "series": [
        {
            "id": 1374,
            "url": "http://patches.dpdk.org/api/series/1374/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=1374",
            "date": "2018-09-18T16:58:25",
            "name": "net/softnic: implement metering and policing API",
            "version": 4,
            "mbox": "http://patches.dpdk.org/series/1374/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/44868/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 1D7BB58FA;\n\tTue, 18 Sep 2018 18:58:48 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id D7A97568A\n\tfor <dev@dpdk.org>; Tue, 18 Sep 2018 18:58:46 +0200 (CEST)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t18 Sep 2018 09:58:45 -0700",
            "from silpixa00381635.ir.intel.com (HELO\n\tsilpixa00381635.ger.corp.intel.com) ([10.237.222.149])\n\tby fmsmga002.fm.intel.com with ESMTP; 18 Sep 2018 09:58:36 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.53,390,1531810800\"; d=\"scan'208\";a=\"87193939\"",
        "From": "Jasvinder Singh <jasvinder.singh@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "cristian.dumitrescu@intel.com",
        "Date": "Tue, 18 Sep 2018 17:58:25 +0100",
        "Message-Id": "<20180918165835.107593-1-jasvinder.singh@intel.com>",
        "X-Mailer": "git-send-email 2.9.3",
        "In-Reply-To": "<20180914174554.90135-2-jasvinder.singh@intel.com>",
        "References": "<20180914174554.90135-2-jasvinder.singh@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v4 00/10] net/softnic: implement metering and\n\tpolicing 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 is prepared on top of following patchset;\nhttps://mails.dpdk.org/archives/dev/2018-September/111379.html\n\nv4 changes\n- introduce the table meter profile check in softnic pipeline table meter\n  profile add function (rte_eth_softnic_thread.c)\n- change the table action check function to more generic form\n  softnic_table_is_action_enabled() (rte_eth_softnic_flow.c)\n  \nv3 changes:\n- update pipeline table with meter profiles\n- update pipeline table with dscp table entry update\n\nv2 changes:\n- fix copyright year for rte_eth_softnic_meter.c\n- Place all checks in a separate functions while creating meter object\n- Use softnic_pipeline_table_mtr_profile_add() api to add meter profile\n  instead of implementing new function\n- Use stats type indicator to determine the stats_mask for meter stats read \n \nJasvinder Singh (10):\n  net/softnic: add metering and policing support\n  net/softnic: add meter profile\n  net/softnic: delete meter profile\n  net/softnic: create meter object\n  net/softnic: destroy meter object\n  net/softnic: update meter profile\n  net/softnic: update dscp table\n  net/softnic: update policer actions\n  net/softnic: meter stats read\n  net/softnic: enable flow rule with meter action\n\n drivers/net/softnic/Makefile                    |   1 +\n drivers/net/softnic/meson.build                 |   1 +\n drivers/net/softnic/rte_eth_softnic.c           |  13 +\n drivers/net/softnic/rte_eth_softnic_flow.c      | 155 ++++-\n drivers/net/softnic/rte_eth_softnic_internals.h |  66 +++\n drivers/net/softnic/rte_eth_softnic_meter.c     | 728 ++++++++++++++++++++++++\n drivers/net/softnic/rte_eth_softnic_pipeline.c  |  26 +\n drivers/net/softnic/rte_eth_softnic_thread.c    |  48 +-\n 8 files changed, 1032 insertions(+), 6 deletions(-)\n create mode 100644 drivers/net/softnic/rte_eth_softnic_meter.c"
}