Show a cover letter.

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

{
    "id": 45575,
    "url": "http://patches.dpdk.org/api/covers/45575/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20180928122615.48390-1-roy.fan.zhang@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": "<20180928122615.48390-1-roy.fan.zhang@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20180928122615.48390-1-roy.fan.zhang@intel.com",
    "date": "2018-09-28T12:26:08",
    "name": "[v2,0/7] pipeline: add symmetric crypto to action",
    "submitter": {
        "id": 304,
        "url": "http://patches.dpdk.org/api/people/304/?format=api",
        "name": "Fan Zhang",
        "email": "roy.fan.zhang@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20180928122615.48390-1-roy.fan.zhang@intel.com/mbox/",
    "series": [
        {
            "id": 1572,
            "url": "http://patches.dpdk.org/api/series/1572/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=1572",
            "date": "2018-09-28T12:26:08",
            "name": "pipeline: add symmetric crypto to action",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/1572/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/45575/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 BC59F1B443;\n\tFri, 28 Sep 2018 14:41:34 +0200 (CEST)",
            "from mga12.intel.com (mga12.intel.com [192.55.52.136])\n\tby dpdk.org (Postfix) with ESMTP id AE4651B43E\n\tfor <dev@dpdk.org>; Fri, 28 Sep 2018 14:41:33 +0200 (CEST)",
            "from orsmga007.jf.intel.com ([10.7.209.58])\n\tby fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t28 Sep 2018 05:41:32 -0700",
            "from silpixa00398673.ir.intel.com (HELO\n\tsilpixa00398673.ger.corp.intel.com) ([10.237.223.54])\n\tby orsmga007.jf.intel.com with ESMTP; 28 Sep 2018 05:41:18 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.54,314,1534834800\"; d=\"scan'208\";a=\"76853728\"",
        "From": "Fan Zhang <roy.fan.zhang@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "cristian.dumitrescu@intel.com",
        "Date": "Fri, 28 Sep 2018 13:26:08 +0100",
        "Message-Id": "<20180928122615.48390-1-roy.fan.zhang@intel.com>",
        "X-Mailer": "git-send-email 2.13.6",
        "In-Reply-To": "<20180828081929.34085-1-roy.fan.zhang@intel.com>",
        "References": "<20180828081929.34085-1-roy.fan.zhang@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/7] pipeline: add symmetric crypto to action",
        "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 creates an abstraction layer of DPDK Cryptodev to the pipeline\nlibrary to enable its symmetric cryptographic capability. The ip_pipeline\nsample application is updated accordingly.\n\nv2:\n- Fixed bugs.\n- Updated data structure.\n- Updated IP-pipeline sample application.\n\nZhang, Roy Fan (7):\n  pipeline: add symmetric crypto to action\n  examples/ip_pipeline: add cryptodev\n  examples/ip_pipeline: configure crypto port\n  examples/ip_pipeline: add symmetric crypto action\n  examples/ip_pipeline: update cli parsing\n  examples/ip_pipeline: add script\n  doc: update action documentation\n\n doc/guides/prog_guide/packet_framework.rst    |  11 +-\n doc/guides/sample_app_ug/ip_pipeline.rst      |  23 +\n examples/ip_pipeline/Makefile                 |   1 +\n examples/ip_pipeline/action.c                 |  11 +\n examples/ip_pipeline/action.h                 |   1 +\n examples/ip_pipeline/cli.c                    | 577 +++++++++++++++++++++++++-\n examples/ip_pipeline/cryptodev.c              | 117 ++++++\n examples/ip_pipeline/cryptodev.h              |  43 ++\n examples/ip_pipeline/examples/flow_crypto.cli |  58 +++\n examples/ip_pipeline/main.c                   |   9 +\n examples/ip_pipeline/meson.build              |   3 +-\n examples/ip_pipeline/pipeline.c               |  60 +++\n examples/ip_pipeline/pipeline.h               |  14 +\n examples/ip_pipeline/thread.c                 |  10 +\n lib/librte_pipeline/Makefile                  |   2 +-\n lib/librte_pipeline/meson.build               |   2 +-\n lib/librte_pipeline/rte_pipeline_version.map  |   1 +\n lib/librte_pipeline/rte_table_action.c        | 503 +++++++++++++++++++++-\n lib/librte_pipeline/rte_table_action.h        | 104 +++++\n 19 files changed, 1543 insertions(+), 7 deletions(-)\n create mode 100644 examples/ip_pipeline/cryptodev.c\n create mode 100644 examples/ip_pipeline/cryptodev.h\n create mode 100644 examples/ip_pipeline/examples/flow_crypto.cli"
}