get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/51782/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 51782,
    "url": "https://patches.dpdk.org/api/patches/51782/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20190327111720.13732-1-arkadiuszx.kusztal@intel.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": "<20190327111720.13732-1-arkadiuszx.kusztal@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190327111720.13732-1-arkadiuszx.kusztal@intel.com",
    "date": "2019-03-27T11:17:16",
    "name": "[v4,0/4] Add PMD for asymmetric cryptography operations using Intel QuickAssist Technology devices",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 452,
        "url": "https://patches.dpdk.org/api/people/452/?format=api",
        "name": "Arkadiusz Kusztal",
        "email": "arkadiuszx.kusztal@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20190327111720.13732-1-arkadiuszx.kusztal@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/51782/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/51782/checks/",
    "tags": {},
    "related": [],
    "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 8C9DD5B26;\n\tWed, 27 Mar 2019 12:20:23 +0100 (CET)",
            "from mga18.intel.com (mga18.intel.com [134.134.136.126])\n\tby dpdk.org (Postfix) with ESMTP id 51E125A6A\n\tfor <dev@dpdk.org>; Wed, 27 Mar 2019 12:20:22 +0100 (CET)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t27 Mar 2019 04:20:21 -0700",
            "from akusztax-mobl.ger.corp.intel.com ([10.104.116.172])\n\tby fmsmga002.fm.intel.com with ESMTP; 27 Mar 2019 04:20:19 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.60,276,1549958400\"; d=\"scan'208\";a=\"155639670\"",
        "From": "Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "akhil.goyal@nxp.com, fiona.trahe@intel.com,\n\tArek Kusztal <arkadiuszx.kusztal@intel.com>",
        "Date": "Wed, 27 Mar 2019 12:17:16 +0100",
        "Message-Id": "<20190327111720.13732-1-arkadiuszx.kusztal@intel.com>",
        "X-Mailer": "git-send-email 2.19.1.windows.1",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v4 0/4] Add PMD for asymmetric cryptography\n\toperations using Intel QuickAssist Technology devices",
        "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 adds Poll Mode Driver to use asymmetric cryptography\nfunctions using Intel QuickAssist Techology devices.\n\nFollowing functions are available with this patchset:\n*\tModular Exponentiation\n*\tModular Inverse\n\nThis patch depends on a QAT PF driver for device initialization. See\nthe file docs/guides/cryptodevs/qat.rst for configuration details.\n\nLimitations:\n*\tMaximum parameter size: 4096 bits\n\t-\tFor both modular exponentiaion and modular multiplicative inverse\n\nv4:\n- fixed yet more checkpatch issues\t\n\t\nv3:\n- fixed some checkpatch issues\n\t\nv2:\n- added Meson build\n- fixed segfault on cookie\n- fixed mod inverse problem\n\nArek Kusztal (4):\n  common/qat: add headers for asymmetric crypto\n  crypto/qat: add asymmetric cryptography PMD\n  crypto/qat: add modular exponentiation to qat asym pmd\n  crypto/qat: add modular inverse to qat asym pmd\n\n config/common_base                                 |    1 +\n doc/guides/cryptodevs/qat.rst                      |   10 +\n drivers/common/qat/Makefile                        |    8 +\n drivers/common/qat/qat_adf/icp_qat_fw_mmp_ids.h    | 1538 ++++++++++++++++++++\n drivers/common/qat/qat_adf/icp_qat_fw_pke.h        |  426 ++++++\n .../qat/qat_adf/qat_pke_functionality_arrays.h     |   52 +\n drivers/common/qat/qat_device.h                    |   12 +-\n drivers/common/qat/qat_qp.c                        |    8 +\n drivers/crypto/qat/meson.build                     |    5 +-\n drivers/crypto/qat/qat_asym.c                      |  419 ++++++\n drivers/crypto/qat/qat_asym.h                      |  106 ++\n drivers/crypto/qat/qat_asym_capabilities.h         |   42 +\n drivers/crypto/qat/qat_asym_pmd.c                  |  309 ++++\n drivers/crypto/qat/qat_asym_pmd.h                  |   50 +\n drivers/crypto/qat/qat_sym_pmd.c                   |    1 -\n drivers/crypto/qat/qat_sym_pmd.h                   |    3 +-\n mk/rte.app.mk                                      |    1 +\n 17 files changed, 2986 insertions(+), 5 deletions(-)\n create mode 100644 drivers/common/qat/qat_adf/icp_qat_fw_mmp_ids.h\n create mode 100644 drivers/common/qat/qat_adf/icp_qat_fw_pke.h\n create mode 100644 drivers/common/qat/qat_adf/qat_pke_functionality_arrays.h\n create mode 100644 drivers/crypto/qat/qat_asym.c\n create mode 100644 drivers/crypto/qat/qat_asym.h\n create mode 100644 drivers/crypto/qat/qat_asym_capabilities.h\n create mode 100644 drivers/crypto/qat/qat_asym_pmd.c\n create mode 100644 drivers/crypto/qat/qat_asym_pmd.h",
    "diff": null,
    "prefixes": [
        "v4",
        "0/4"
    ]
}