get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 102152,
    "url": "http://patchwork.dpdk.org/api/patches/102152/?format=api",
    "web_url": "http://patchwork.dpdk.org/project/dpdk/patch/20211019092344.1299368-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": "<20211019092344.1299368-1-radu.nicolau@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20211019092344.1299368-1-radu.nicolau@intel.com",
    "date": "2021-10-19T09:23:37",
    "name": "[v10,0/7] 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/20211019092344.1299368-1-radu.nicolau@intel.com/mbox/",
    "series": [],
    "comments": "http://patchwork.dpdk.org/api/patches/102152/comments/",
    "check": "pending",
    "checks": "http://patchwork.dpdk.org/api/patches/102152/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 56DB3A0C43;\n\tTue, 19 Oct 2021 11:36:31 +0200 (CEST)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 15D6A40683;\n\tTue, 19 Oct 2021 11:36:31 +0200 (CEST)",
            "from mga05.intel.com (mga05.intel.com [192.55.52.43])\n by mails.dpdk.org (Postfix) with ESMTP id AD5094003E\n for <dev@dpdk.org>; Tue, 19 Oct 2021 11:36:29 +0200 (CEST)",
            "from orsmga005.jf.intel.com ([10.7.209.41])\n by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384;\n 19 Oct 2021 02:36:27 -0700",
            "from silpixa00400884.ir.intel.com ([10.243.22.82])\n by orsmga005.jf.intel.com with ESMTP; 19 Oct 2021 02:36:25 -0700"
        ],
        "X-IronPort-AV": [
            "E=McAfee;i=\"6200,9189,10141\"; a=\"314669750\"",
            "E=Sophos;i=\"5.85,384,1624345200\"; d=\"scan'208\";a=\"314669750\"",
            "E=Sophos;i=\"5.85,384,1624345200\"; d=\"scan'208\";a=\"661739764\""
        ],
        "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": "Tue, 19 Oct 2021 10:23:37 +0100",
        "Message-Id": "<20211019092344.1299368-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 v10 0/7] iavf: add iAVF IPsec inline crypto\n 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 (7):\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  net/iavf: update doc with inline crypto support\n\n doc/guides/nics/features/iavf.ini             |    2 +\n doc/guides/nics/intel_vf.rst                  |   10 +\n doc/guides/rel_notes/release_21_11.rst        |    1 +\n drivers/common/iavf/iavf_type.h               |    1 +\n drivers/common/iavf/virtchnl.h                |   17 +-\n drivers/common/iavf/virtchnl_inline_ipsec.h   |  553 +++++\n drivers/net/iavf/iavf.h                       |   52 +-\n drivers/net/iavf/iavf_ethdev.c                |  219 +-\n drivers/net/iavf/iavf_generic_flow.c          |   15 +\n drivers/net/iavf/iavf_generic_flow.h          |    2 +\n drivers/net/iavf/iavf_ipsec_crypto.c          | 1894 +++++++++++++++++\n drivers/net/iavf/iavf_ipsec_crypto.h          |  160 ++\n .../net/iavf/iavf_ipsec_crypto_capabilities.h |  383 ++++\n drivers/net/iavf/iavf_rxtx.c                  |  710 ++++--\n drivers/net/iavf/iavf_rxtx.h                  |  198 +-\n drivers/net/iavf/iavf_rxtx_vec_sse.c          |   10 +-\n drivers/net/iavf/iavf_vchnl.c                 |  167 +-\n drivers/net/iavf/meson.build                  |    3 +-\n drivers/net/iavf/rte_pmd_iavf.h               |    1 +\n drivers/net/iavf/version.map                  |    3 +\n 20 files changed, 4090 insertions(+), 311 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": [
        "v10",
        "0/7"
    ]
}