get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 52315,
    "url": "http://patches.dpdk.org/api/patches/52315/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20190405013357.14503-2-yskoh@mellanox.com/",
    "project": {
        "id": 1,
        "url": "http://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": "<20190405013357.14503-2-yskoh@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190405013357.14503-2-yskoh@mellanox.com",
    "date": "2019-04-05T01:33:54",
    "name": "[v3,1/4] net/mlx5: fix recursive inclusion of header file",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "98d8283e381fb5205e169ff6eb6c56a8be78d676",
    "submitter": {
        "id": 636,
        "url": "http://patches.dpdk.org/api/people/636/?format=api",
        "name": "Yongseok Koh",
        "email": "yskoh@mellanox.com"
    },
    "delegate": {
        "id": 6624,
        "url": "http://patches.dpdk.org/api/users/6624/?format=api",
        "username": "shahafs",
        "first_name": "Shahaf",
        "last_name": "Shuler",
        "email": "shahafs@mellanox.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20190405013357.14503-2-yskoh@mellanox.com/mbox/",
    "series": [
        {
            "id": 4126,
            "url": "http://patches.dpdk.org/api/series/4126/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4126",
            "date": "2019-04-05T01:33:53",
            "name": "net/mlx: remove device register remap",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/4126/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/patches/52315/comments/",
    "check": "success",
    "checks": "http://patches.dpdk.org/api/patches/52315/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 5DE131B451;\n\tFri,  5 Apr 2019 03:34:12 +0200 (CEST)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n\tby dpdk.org (Postfix) with ESMTP id 7EB4A1B44A\n\tfor <dev@dpdk.org>; Fri,  5 Apr 2019 03:34:10 +0200 (CEST)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n\tyskoh@mellanox.com)\n\twith ESMTPS (AES256-SHA encrypted); 5 Apr 2019 04:34:06 +0300",
            "from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx\n\t[10.101.0.96])\n\tby labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x351Y2kT018492;\n\tFri, 5 Apr 2019 04:34:05 +0300"
        ],
        "From": "Yongseok Koh <yskoh@mellanox.com>",
        "To": "shahafs@mellanox.com",
        "Cc": "dev@dpdk.org",
        "Date": "Thu,  4 Apr 2019 18:33:54 -0700",
        "Message-Id": "<20190405013357.14503-2-yskoh@mellanox.com>",
        "X-Mailer": "git-send-email 2.11.0",
        "In-Reply-To": "<20190405013357.14503-1-yskoh@mellanox.com>",
        "References": "<20190325193627.19726-1-yskoh@mellanox.com>\n\t<20190405013357.14503-1-yskoh@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v3 1/4] net/mlx5: fix recursive inclusion of\n\theader file",
        "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": "mlx5.h includes mlx5_rxtx.h and mlx5_rxtx.h includes mlx5.h recursively.\n\nSigned-off-by: Yongseok Koh <yskoh@mellanox.com>\nAcked-by: Shahaf Shuler <shahafs@mellanox.com>\n---\n drivers/net/mlx5/mlx5.h            | 1 -\n drivers/net/mlx5/mlx5_flow.c       | 5 +++--\n drivers/net/mlx5/mlx5_flow_dv.c    | 4 +++-\n drivers/net/mlx5/mlx5_flow_verbs.c | 5 +++--\n drivers/net/mlx5/mlx5_vlan.c       | 3 ++-\n 5 files changed, 11 insertions(+), 7 deletions(-)",
    "diff": "diff --git a/drivers/net/mlx5/mlx5.h b/drivers/net/mlx5/mlx5.h\nindex ef05d9f975..699c8fcf6d 100644\n--- a/drivers/net/mlx5/mlx5.h\n+++ b/drivers/net/mlx5/mlx5.h\n@@ -33,7 +33,6 @@\n \n #include \"mlx5_utils.h\"\n #include \"mlx5_mr.h\"\n-#include \"mlx5_rxtx.h\"\n #include \"mlx5_autoconf.h\"\n #include \"mlx5_defs.h\"\n \ndiff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c\nindex 9dc492ad2d..1c78a5f8ea 100644\n--- a/drivers/net/mlx5/mlx5_flow.c\n+++ b/drivers/net/mlx5/mlx5_flow.c\n@@ -30,9 +30,10 @@\n \n #include \"mlx5.h\"\n #include \"mlx5_defs.h\"\n-#include \"mlx5_prm.h\"\n-#include \"mlx5_glue.h\"\n #include \"mlx5_flow.h\"\n+#include \"mlx5_glue.h\"\n+#include \"mlx5_prm.h\"\n+#include \"mlx5_rxtx.h\"\n \n /* Dev ops structure defined in mlx5.c */\n extern const struct eth_dev_ops mlx5_dev_ops;\ndiff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c\nindex 52be8b32c1..ccb2f7593f 100644\n--- a/drivers/net/mlx5/mlx5_flow_dv.c\n+++ b/drivers/net/mlx5/mlx5_flow_dv.c\n@@ -29,9 +29,11 @@\n \n #include \"mlx5.h\"\n #include \"mlx5_defs.h\"\n-#include \"mlx5_prm.h\"\n #include \"mlx5_glue.h\"\n #include \"mlx5_flow.h\"\n+#include \"mlx5_prm.h\"\n+#include \"mlx5_rxtx.h\"\n+\n #ifdef HAVE_IBV_FLOW_DV_SUPPORT\n \n #ifndef HAVE_IBV_FLOW_DEVX_COUNTERS\ndiff --git a/drivers/net/mlx5/mlx5_flow_verbs.c b/drivers/net/mlx5/mlx5_flow_verbs.c\nindex 49dd13e6d2..3956df1a7e 100644\n--- a/drivers/net/mlx5/mlx5_flow_verbs.c\n+++ b/drivers/net/mlx5/mlx5_flow_verbs.c\n@@ -29,9 +29,10 @@\n \n #include \"mlx5.h\"\n #include \"mlx5_defs.h\"\n-#include \"mlx5_prm.h\"\n-#include \"mlx5_glue.h\"\n #include \"mlx5_flow.h\"\n+#include \"mlx5_glue.h\"\n+#include \"mlx5_prm.h\"\n+#include \"mlx5_rxtx.h\"\n \n #define VERBS_SPEC_INNER(item_flags) \\\n \t(!!((item_flags) & MLX5_FLOW_LAYER_TUNNEL) ? IBV_FLOW_SPEC_INNER : 0)\ndiff --git a/drivers/net/mlx5/mlx5_vlan.c b/drivers/net/mlx5/mlx5_vlan.c\nindex 6568a3a475..4004930942 100644\n--- a/drivers/net/mlx5/mlx5_vlan.c\n+++ b/drivers/net/mlx5/mlx5_vlan.c\n@@ -27,10 +27,11 @@\n #include <rte_ethdev_driver.h>\n #include <rte_common.h>\n \n-#include \"mlx5_utils.h\"\n #include \"mlx5.h\"\n #include \"mlx5_autoconf.h\"\n #include \"mlx5_glue.h\"\n+#include \"mlx5_rxtx.h\"\n+#include \"mlx5_utils.h\"\n \n /**\n  * DPDK callback to configure a VLAN filter.\n",
    "prefixes": [
        "v3",
        "1/4"
    ]
}