get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 85990,
    "url": "https://patches.dpdk.org/api/patches/85990/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20210105170635.6212-1-talshn@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": "<20210105170635.6212-1-talshn@nvidia.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20210105170635.6212-1-talshn@nvidia.com",
    "date": "2021-01-05T17:06:33",
    "name": "[v7,0/2] support generic threading functions",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1893,
        "url": "https://patches.dpdk.org/api/people/1893/?format=api",
        "name": "Tal Shnaiderman",
        "email": "talshn@nvidia.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20210105170635.6212-1-talshn@nvidia.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/85990/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/85990/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 17D98A09FF;\n\tTue,  5 Jan 2021 18:06:49 +0100 (CET)",
            "from [217.70.189.124] (localhost [127.0.0.1])\n\tby mails.dpdk.org (Postfix) with ESMTP id B19EE16083F;\n\tTue,  5 Jan 2021 18:06:48 +0100 (CET)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by mails.dpdk.org (Postfix) with ESMTP id 384AB16083B\n for <dev@dpdk.org>; Tue,  5 Jan 2021 18:06:47 +0100 (CET)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n talshn@nvidia.com) with SMTP; 5 Jan 2021 19:06:46 +0200",
            "from nvidia.com (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 105H6kwI027232;\n Tue, 5 Jan 2021 19:06:46 +0200"
        ],
        "From": "Tal Shnaiderman <talshn@nvidia.com>",
        "To": "dev@dpdk.org",
        "Cc": "thomas@monjalon.net, pallavi.kadam@intel.com, dmitry.kozliuk@gmail.com,\n navasile@linux.microsoft.com, dmitrym@microsoft.com,\n david.marchand@redhat.com",
        "Date": "Tue,  5 Jan 2021 19:06:33 +0200",
        "Message-Id": "<20210105170635.6212-1-talshn@nvidia.com>",
        "X-Mailer": "git-send-email 2.16.1.windows.4",
        "In-Reply-To": "<20201226160848.9824-1-talshn@nvidia.com>",
        "References": "<20201226160848.9824-1-talshn@nvidia.com>",
        "Subject": "[dpdk-dev] [PATCH v7 0/2] support generic threading functions",
        "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 API for generic threading functions in EAL which do not reference pthread API.\n\nTal Shnaiderman (2):\n  eal: move thread affinity functions to new file\n  eal: add generic thread-local-storage functions\n\n lib/librte_eal/include/meson.build  |   1 +\n lib/librte_eal/include/rte_lcore.h  |  22 +-------\n lib/librte_eal/include/rte_thread.h | 107 ++++++++++++++++++++++++++++++++++++\n lib/librte_eal/rte_eal_exports.def  |   5 ++\n lib/librte_eal/unix/meson.build     |   1 +\n lib/librte_eal/unix/rte_thread.c    |  86 +++++++++++++++++++++++++++++\n lib/librte_eal/version.map          |   6 ++\n lib/librte_eal/windows/meson.build  |   1 +\n lib/librte_eal/windows/rte_thread.c |  83 ++++++++++++++++++++++++++++\n 9 files changed, 291 insertions(+), 21 deletions(-)\n create mode 100644 lib/librte_eal/include/rte_thread.h\n create mode 100644 lib/librte_eal/unix/rte_thread.c\n create mode 100644 lib/librte_eal/windows/rte_thread.c",
    "diff": null,
    "prefixes": [
        "v7",
        "0/2"
    ]
}