get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 86068,
    "url": "http://patches.dpdk.org/api/patches/86068/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1609951199-24794-1-git-send-email-xuemingl@nvidia.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": "<1609951199-24794-1-git-send-email-xuemingl@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1609951199-24794-1-git-send-email-xuemingl@nvidia.com",
    "date": "2021-01-06T16:39:55",
    "name": "[v2,0/4] net/mlx5: support SubFunction representor",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1904,
        "url": "http://patches.dpdk.org/api/people/1904/?format=api",
        "name": "Xueming Li",
        "email": "xuemingl@nvidia.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1609951199-24794-1-git-send-email-xuemingl@nvidia.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/86068/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/86068/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 (xvm-189-124.dc0.ghst.net [217.70.189.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 86AE6A09FF;\n\tWed,  6 Jan 2021 17:40:27 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id 38254140E1D;\n\tWed,  6 Jan 2021 17:40:16 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id A8F1A140DF4\n for <dev@dpdk.org>; Wed,  6 Jan 2021 17:40:11 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n xuemingl@nvidia.com) with SMTP; 6 Jan 2021 18:40:09 +0200",
            "from nvidia.com (pegasus05.mtr.labs.mlnx [10.210.16.100])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 106Ge96b017829;\n Wed, 6 Jan 2021 18:40:09 +0200"
        ],
        "From": "Xueming Li <xuemingl@nvidia.com>",
        "To": "Viacheslav Ovsiienko <viacheslavo@nvidia.com>,\n Shahaf Shuler <shahafs@nvidia.com>, Matan Azrad <matan@nvidia.com>",
        "Cc": "dev@dpdk.org, xuemingl@nvidia.com, Asaf Penso <asafp@nvidia.com>",
        "Date": "Wed,  6 Jan 2021 16:39:55 +0000",
        "Message-Id": "<1609951199-24794-1-git-send-email-xuemingl@nvidia.com>",
        "X-Mailer": "git-send-email 1.8.3.1",
        "In-Reply-To": "<1608303356-13089-2-git-send-email-xuemingl@nvidia.com>",
        "References": "<1608303356-13089-2-git-send-email-xuemingl@nvidia.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/4] net/mlx5: support SubFunction representor",
        "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": "SubFunction [1] is a portion of the PCI device, a SF netdev has its own\ndedicated queues(txq, rxq). A SF netdev supports eswitch representation\noffload similar to existing PF and VF representors. A SF shares PCI\nlevel resources with other SFs and/or with its parent PCI function.\n\nThis patch set introduces SubFunction representor support for mlx5\nPMD driver.\n\nDepends-on: series-14559 (\"support SubFunction representor\")\n\nVersion history:\n RFC:\n \tinitial version [2]\n V2:\n    - support bonding representor probe with new pf#vf# devargs\n    - adapt EAL api V2 [3] changes\n    - update document\n\n[1] SubFunction in kernel:\nhttps://lore.kernel.org/netdev/20201112192424.2742-1-parav@nvidia.com/\n\n[2] RFC:\nhttp://patchwork.dpdk.org/project/dpdk/list/?series=14376\n\n[3] EAL part to support SF representor:\nhttp://patchwork.dpdk.org/project/dpdk/list/?series=14559\n\n\nXueming Li (4):\n  common/mlx5: update representor name parsing\n  net/mlx5: support representor of sub function\n  net/mlx5: revert setting representor to first PF\n  net/mlx5: improve bonding representor probe\n\n doc/guides/nics/mlx5.rst                   |  62 +++++-\n drivers/common/mlx5/linux/mlx5_common_os.c |  32 ++-\n drivers/common/mlx5/linux/mlx5_nl.c        |   2 +\n drivers/common/mlx5/mlx5_common.h          |   2 +\n drivers/net/mlx5/linux/mlx5_ethdev_os.c    |   5 +\n drivers/net/mlx5/linux/mlx5_os.c           | 215 ++++++++++++++-------\n drivers/net/mlx5/mlx5.c                    |  23 ++-\n drivers/net/mlx5/mlx5.h                    |   4 +-\n drivers/net/mlx5/mlx5_defs.h               |   4 -\n drivers/net/mlx5/mlx5_ethdev.c             |  29 +--\n drivers/net/mlx5/mlx5_mac.c                |   8 +-\n 11 files changed, 261 insertions(+), 125 deletions(-)",
    "diff": null,
    "prefixes": [
        "v2",
        "0/4"
    ]
}