get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 85845,
    "url": "https://patches.dpdk.org/api/patches/85845/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20201228194432.30512-1-shirik@nvidia.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": "<20201228194432.30512-1-shirik@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20201228194432.30512-1-shirik@nvidia.com",
    "date": "2020-12-28T19:44:26",
    "name": "[0/6] add GTP PSC extension header support",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1894,
        "url": "https://patches.dpdk.org/api/people/1894/?format=api",
        "name": "Shiri Kuzin",
        "email": "shirik@nvidia.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20201228194432.30512-1-shirik@nvidia.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/85845/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/85845/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 dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 105DDA09FF;\n\tMon, 28 Dec 2020 20:44:46 +0100 (CET)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 8C242C9FA;\n\tMon, 28 Dec 2020 20:44:44 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by dpdk.org (Postfix) with ESMTP id 9B72CC9BC\n for <dev@dpdk.org>; Mon, 28 Dec 2020 20:44:42 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n shirik@nvidia.com) with SMTP; 28 Dec 2020 21:44:39 +0200",
            "from nvidia.com (c-236-148-180-183.mtl.labs.mlnx [10.236.148.183])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 0BSJicFW018969;\n Mon, 28 Dec 2020 21:44:38 +0200"
        ],
        "From": "Shiri Kuzin <shirik@nvidia.com>",
        "To": "dev@dpdk.org",
        "Cc": "viacheslavo@nvidia.com, adrien.mazarguil@6wind.com, orika@nvidia.com,\n ferruh.yigit@intel.com, thomas@monjalon.net, rasland@nvidia.com",
        "Date": "Mon, 28 Dec 2020 21:44:26 +0200",
        "Message-Id": "<20201228194432.30512-1-shirik@nvidia.com>",
        "X-Mailer": "git-send-email 2.21.0",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "Subject": "[dpdk-dev] [PATCH 0/6] add GTP PSC extension header support",
        "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 <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": "In this patch we add the support for GTP PSC in net/mlx5.\nThis will enable matching on \"rte_flow_item_gtp_psc\" item.\n\nThe support in testpmd is extended to support raw \nencap\\decap of GTP PSC.\n\n\nShiri Kuzin (4):\n  common/mlx5: add matcher fields for GTP extensions\n  net/mlx5: add GTP PSC flow validation\n  net/mlx5: add GTP PSC item translation\n  doc: update GTP extension header support\n\nViacheslav Ovsiienko (2):\n  ethdev: update GTP headers\n  app/testpmd: add GTP PSC option support in raw sets\n\n app/test-pmd/cmdline_flow.c     |  66 +++++++++++++-\n doc/guides/nics/mlx5.rst        |   5 ++\n drivers/common/mlx5/mlx5_prm.h  |   7 +-\n drivers/net/mlx5/mlx5_flow.h    |   5 ++\n drivers/net/mlx5/mlx5_flow_dv.c | 155 ++++++++++++++++++++++++++++++++\n lib/librte_net/rte_gtp.h        |  33 ++++++-\n 6 files changed, 264 insertions(+), 7 deletions(-)",
    "diff": null,
    "prefixes": [
        "0/6"
    ]
}