get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 97699,
    "url": "https://patches.dpdk.org/api/patches/97699/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20210901144729.26784-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": "<20210901144729.26784-1-arkadiuszx.kusztal@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210901144729.26784-1-arkadiuszx.kusztal@intel.com",
    "date": "2021-09-01T14:47:25",
    "name": "[0/4] drivers/qat: isolate implementations of qat generations",
    "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/20210901144729.26784-1-arkadiuszx.kusztal@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/97699/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/97699/checks/",
    "tags": {},
    "related": [],
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from mails.dpdk.org (mails.dpdk.org [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id F1E7BA0C45;\n\tWed,  1 Sep 2021 16:47:33 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id B341040140;\n\tWed,  1 Sep 2021 16:47:33 +0200 (CEST)",
            "from mga09.intel.com (mga09.intel.com [134.134.136.24])\n by mails.dpdk.org (Postfix) with ESMTP id CEF6F4013F\n for <dev@dpdk.org>; Wed,  1 Sep 2021 16:47:32 +0200 (CEST)",
            "from orsmga007.jf.intel.com ([10.7.209.58])\n by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 01 Sep 2021 07:47:32 -0700",
            "from silpixa00400308.ir.intel.com ([10.237.214.190])\n by orsmga007.jf.intel.com with ESMTP; 01 Sep 2021 07:47:31 -0700"
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6200,9189,10094\"; a=\"218779737\"",
            "E=Sophos;i=\"5.84,369,1620716400\"; d=\"scan'208\";a=\"218779737\"",
            "E=Sophos;i=\"5.84,369,1620716400\"; d=\"scan'208\";a=\"466926288\""
        ],
        "X-ExtLoop1": "1",
        "From": "Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "gakhil@marvell.com, roy.fan.zhang@intel.com,\n Arek Kusztal <arkadiuszx.kusztal@intel.com>",
        "Date": "Wed,  1 Sep 2021 15:47:25 +0100",
        "Message-Id": "<20210901144729.26784-1-arkadiuszx.kusztal@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "Subject": "[dpdk-dev] [PATCH 0/4] drivers/qat: isolate implementations of qat\n generations",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.29",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This patchset introduces new qat driver structure and updates\nexisting symmetric crypto qat PMD.\n\nThe purpose of the change is to isolate QAT generation specific implementations from one to another.\n\nIt is expected the changes to the specific generation driver code does minimum impact to\nother generations' implementations. Also adding the support to new features or new qat\ngeneration hardware will have zero impact to existing functionalities.\n\nArek Kusztal (4):\n  common/qat: isolate implementations of qat generations\n  crypto/qat: isolate implementations of symmetric operations\n  crypto/qat: move capabilities initialization to spec files\n  common/qat: add extra data to qat pci dev\n\n drivers/common/qat/dev/qat_dev_gen1.c     | 252 +++++++++\n drivers/common/qat/dev/qat_dev_gen1.h     |  55 ++\n drivers/common/qat/dev/qat_dev_gen2.c     |  39 ++\n drivers/common/qat/dev/qat_dev_gen3.c     |  77 +++\n drivers/common/qat/dev/qat_dev_gen4.c     | 285 ++++++++++\n drivers/common/qat/dev/qat_dev_gen4.h     |  18 +\n drivers/common/qat/meson.build            |  12 +-\n drivers/common/qat/qat_common.h           |   2 +\n drivers/common/qat/qat_device.c           | 183 +++---\n drivers/common/qat/qat_device.h           |  28 +-\n drivers/common/qat/qat_qp.c               | 641 ++++++++--------------\n drivers/common/qat/qat_qp.h               |  54 +-\n drivers/crypto/qat/dev/qat_sym_pmd_gen1.c |  78 +++\n drivers/crypto/qat/dev/qat_sym_pmd_gen1.h |  15 +\n drivers/crypto/qat/dev/qat_sym_pmd_gen2.c | 103 ++++\n drivers/crypto/qat/dev/qat_sym_pmd_gen3.c |  63 +++\n drivers/crypto/qat/dev/qat_sym_pmd_gen4.c | 107 ++++\n drivers/crypto/qat/qat_sym_pmd.c          | 188 ++-----\n drivers/crypto/qat/qat_sym_pmd.h          |  40 ++\n 19 files changed, 1540 insertions(+), 700 deletions(-)\n create mode 100644 drivers/common/qat/dev/qat_dev_gen1.c\n create mode 100644 drivers/common/qat/dev/qat_dev_gen1.h\n create mode 100644 drivers/common/qat/dev/qat_dev_gen2.c\n create mode 100644 drivers/common/qat/dev/qat_dev_gen3.c\n create mode 100644 drivers/common/qat/dev/qat_dev_gen4.c\n create mode 100644 drivers/common/qat/dev/qat_dev_gen4.h\n create mode 100644 drivers/crypto/qat/dev/qat_sym_pmd_gen1.c\n create mode 100644 drivers/crypto/qat/dev/qat_sym_pmd_gen1.h\n create mode 100644 drivers/crypto/qat/dev/qat_sym_pmd_gen2.c\n create mode 100644 drivers/crypto/qat/dev/qat_sym_pmd_gen3.c\n create mode 100644 drivers/crypto/qat/dev/qat_sym_pmd_gen4.c",
    "diff": null,
    "prefixes": [
        "0/4"
    ]
}