get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 99315,
    "url": "http://patchwork.dpdk.org/api/patches/99315/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/patch/20210920135202.1739660-1-radu.nicolau@intel.com/",
    "project": {
        "id": 1,
        "url": "http://patchwork.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": "<20210920135202.1739660-1-radu.nicolau@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210920135202.1739660-1-radu.nicolau@intel.com",
    "date": "2021-09-20T13:51:56",
    "name": "[v3,0/6] iavf: add iAVF IPsec inline crypto support",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 743,
        "url": "http://patchwork.dpdk.org/api/people/743/?format=api",
        "name": "Radu Nicolau",
        "email": "radu.nicolau@intel.com"
    },
    "delegate": null,
    "mbox": "http://patchwork.dpdk.org/project/dpdk/patch/20210920135202.1739660-1-radu.nicolau@intel.com/mbox/",
    "series": [],
    "comments": "http://patchwork.dpdk.org/api/patches/99315/comments/",
    "check": "pending",
    "checks": "http://patchwork.dpdk.org/api/patches/99315/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 30CC3A0548;\n\tMon, 20 Sep 2021 16:00:42 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id A9A0240E5A;\n\tMon, 20 Sep 2021 16:00:40 +0200 (CEST)",
            "from mga06.intel.com (mga06.intel.com [134.134.136.31])\n by mails.dpdk.org (Postfix) with ESMTP id AC61640DF5\n for <dev@dpdk.org>; Mon, 20 Sep 2021 16:00:38 +0200 (CEST)",
            "from orsmga008.jf.intel.com ([10.7.209.65])\n by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 20 Sep 2021 07:00:37 -0700",
            "from silpixa00400884.ir.intel.com ([10.243.22.82])\n by orsmga008.jf.intel.com with ESMTP; 20 Sep 2021 07:00:31 -0700"
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6200,9189,10112\"; a=\"284148473\"",
            "E=Sophos;i=\"5.85,308,1624345200\"; d=\"scan'208\";a=\"284148473\"",
            "E=Sophos;i=\"5.85,308,1624345200\"; d=\"scan'208\";a=\"483824656\""
        ],
        "X-ExtLoop1": "1",
        "From": "Radu Nicolau <radu.nicolau@intel.com>",
        "To": "",
        "Cc": "dev@dpdk.org, declan.doherty@intel.com, abhijit.sinha@intel.com,\n jingjing.wu@intel.com, qi.z.zhang@intel.com, beilei.xing@intel.com,\n bruce.richardson@intel.com, konstantin.ananyev@intel.com,\n Radu Nicolau <radu.nicolau@intel.com>",
        "Date": "Mon, 20 Sep 2021 14:51:56 +0100",
        "Message-Id": "<20210920135202.1739660-1-radu.nicolau@intel.com>",
        "X-Mailer": "git-send-email 2.25.1",
        "In-Reply-To": "<20210909142428.750634-1-radu.nicolau@intel.com>",
        "References": "<20210909142428.750634-1-radu.nicolau@intel.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH v3 0/6] iavf: add iAVF IPsec inline crypto support",
        "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": "Add support for inline crypto for IPsec, for ESP transport and\ntunnel over IPv4 and IPv6, as well as supporting the offload for\nESP over UDP, and inconjunction with TSO for UDP and TCP flows.\n\nRadu Nicolau (6):\n  common/iavf: add iAVF IPsec inline crypto support\n  net/iavf: rework tx path\n  net/iavf: add support for asynchronous virt channel messages\n  net/iavf: add iAVF IPsec inline crypto support\n  net/iavf: add xstats support for inline IPsec crypto\n  net/iavf: add watchdog for VFLR\n\n drivers/common/iavf/iavf_type.h               |  215 +-\n drivers/common/iavf/virtchnl.h                |   17 +-\n drivers/common/iavf/virtchnl_inline_ipsec.h   |  553 +++++\n drivers/net/iavf/iavf.h                       |   53 +-\n drivers/net/iavf/iavf_ethdev.c                |  222 +-\n drivers/net/iavf/iavf_generic_flow.c          |   16 +\n drivers/net/iavf/iavf_generic_flow.h          |    2 +\n drivers/net/iavf/iavf_ipsec_crypto.c          | 1918 +++++++++++++++++\n drivers/net/iavf/iavf_ipsec_crypto.h          |   96 +\n .../net/iavf/iavf_ipsec_crypto_capabilities.h |  383 ++++\n drivers/net/iavf/iavf_rxtx.c                  |  709 ++++--\n drivers/net/iavf/iavf_rxtx.h                  |   91 +-\n drivers/net/iavf/iavf_rxtx_vec_sse.c          |   10 +-\n drivers/net/iavf/iavf_vchnl.c                 |  166 +-\n drivers/net/iavf/meson.build                  |    3 +-\n drivers/net/iavf/rte_pmd_iavf.h               |    1 +\n drivers/net/iavf/version.map                  |    3 +\n 17 files changed, 4137 insertions(+), 321 deletions(-)\n create mode 100644 drivers/common/iavf/virtchnl_inline_ipsec.h\n create mode 100644 drivers/net/iavf/iavf_ipsec_crypto.c\n create mode 100644 drivers/net/iavf/iavf_ipsec_crypto.h\n create mode 100644 drivers/net/iavf/iavf_ipsec_crypto_capabilities.h",
    "diff": null,
    "prefixes": [
        "v3",
        "0/6"
    ]
}