get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 48727,
    "url": "https://patches.dpdk.org/api/patches/48727/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1544672265-219262-1-git-send-email-joyce.kong@arm.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": "<1544672265-219262-1-git-send-email-joyce.kong@arm.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1544672265-219262-1-git-send-email-joyce.kong@arm.com",
    "date": "2018-12-13T03:37:43",
    "name": "[v1,0/2] reimplement rwlock and add relevant perf test case",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 970,
        "url": "https://patches.dpdk.org/api/people/970/?format=api",
        "name": "Joyce Kong",
        "email": "joyce.kong@arm.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1544672265-219262-1-git-send-email-joyce.kong@arm.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/48727/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/48727/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 2437B1B43E;\n\tThu, 13 Dec 2018 04:37:56 +0100 (CET)",
            "from foss.arm.com (usa-sjc-mx-foss1.foss.arm.com [217.140.101.70])\n\tby dpdk.org (Postfix) with ESMTP id 6C1351B432\n\tfor <dev@dpdk.org>; Thu, 13 Dec 2018 04:37:55 +0100 (CET)",
            "from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249])\n\tby usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id EF8DEA78;\n\tWed, 12 Dec 2018 19:37:53 -0800 (PST)",
            "from net-arm-thunderx2.shanghai.arm.com\n\t(net-arm-thunderx2.shanghai.arm.com [10.169.40.71])\n\tby usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id\n\tA46AB3F6A8; Wed, 12 Dec 2018 19:37:52 -0800 (PST)"
        ],
        "From": "Joyce Kong <joyce.kong@arm.com>",
        "To": "dev@dpdk.org",
        "Cc": "nd@arm.com, thomas@monjalon.net, jerin.jacob@caviumnetworks.com,\n\themant.agrawal@nxp.com, honnappa.nagarahalli@arm.com, gavin.hu@arm.com,\n\tjoyce.kong@arm.com",
        "Date": "Thu, 13 Dec 2018 11:37:43 +0800",
        "Message-Id": "<1544672265-219262-1-git-send-email-joyce.kong@arm.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "Subject": "[dpdk-dev] [PATCH v1 0/2] reimplement rwlock and add relevant perf\n\ttest case",
        "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": "v1: reimplement rwlock with __atomic builtins, and add a rwlock perf test\n    on all available cores to benchmark the improvement.\n\nWe tested the patches on three arm64 platforms, ThundeX2 gained 20% performance,\nQualcomm gained 36% and the 4-Cortex-A72 Marvell MACCHIATObin gained 19.6%.\nBelow is the detailed test result on ThunderX2:\n\n*** rwlock_autotest without __atomic builtins ***\nRwlock Perf Test on 128 cores...\nCore [0] count = 281\nCore [1] count = 252\nCore [2] count = 290\nCore [3] count = 259\nCore [4] count = 287\n...\nCore [209] count = 3\nCore [210] count = 31\nCore [211] count = 120\nTotal count = 18537\n\n*** rwlock_autotest with __atomic builtins ***\nRwlock Perf Test on 128 cores...\nCore [0] count = 346\nCore [1] count = 355\nCore [2] count = 259\nCore [3] count = 285\nCore [4] count = 320\n...\nCore [209] count = 2\nCore [210] count = 23\nCore [211] count = 63\nTotal count = 22194\n\nGavin Hu (1):\n  rwlock: reimplement with __atomic builtins\n\nJoyce Kong (1):\n  test/rwlock: add perf test case\n\n lib/librte_eal/common/include/generic/rte_rwlock.h | 16 ++---\n test/test/test_rwlock.c                            | 71 ++++++++++++++++++++++\n 2 files changed, 79 insertions(+), 8 deletions(-)",
    "diff": null,
    "prefixes": [
        "v1",
        "0/2"
    ]
}