get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 59680,
    "url": "https://patches.dpdk.org/api/patches/59680/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20190924141033.3894-1-adamx.dybkowski@intel.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": "<20190924141033.3894-1-adamx.dybkowski@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190924141033.3894-1-adamx.dybkowski@intel.com",
    "date": "2019-09-24T14:10:31",
    "name": "[v2,0/2] Add external mbufs option",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1322,
        "url": "https://patches.dpdk.org/api/people/1322/?format=api",
        "name": "Dybkowski, AdamX",
        "email": "adamx.dybkowski@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20190924141033.3894-1-adamx.dybkowski@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/59680/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/59680/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 DA31D2BE6;\n\tTue, 24 Sep 2019 16:12:38 +0200 (CEST)",
            "from mga04.intel.com (mga04.intel.com [192.55.52.120])\n\tby dpdk.org (Postfix) with ESMTP id 8089F2956\n\tfor <dev@dpdk.org>; Tue, 24 Sep 2019 16:12:37 +0200 (CEST)",
            "from orsmga001.jf.intel.com ([10.7.209.18])\n\tby fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t24 Sep 2019 07:12:36 -0700",
            "from adamdybx-mobl.ger.corp.intel.com (HELO\n\taddy-VirtualBox.isw.intel.com) ([10.103.104.111])\n\tby orsmga001.jf.intel.com with ESMTP; 24 Sep 2019 07:12:34 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.64,544,1559545200\"; d=\"scan'208\";a=\"272642315\"",
        "From": "Adam Dybkowski <adamx.dybkowski@intel.com>",
        "To": "dev@dpdk.org, fiona.trahe@intel.com, arturx.trybula@intel.com,\n\takhil.goyal@nxp.com",
        "Cc": "Adam Dybkowski <adamx.dybkowski@intel.com>",
        "Date": "Tue, 24 Sep 2019 16:10:31 +0200",
        "Message-Id": "<20190924141033.3894-1-adamx.dybkowski@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20190903094312.8780-1-adamx.dybkowski@intel.com>",
        "References": "<20190903094312.8780-1-adamx.dybkowski@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/2] Add external mbufs option",
        "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": "This patchset adds a unit test of the external buffers\nfunctionality and a new option to the compression\nperformance benchmark tool to use memzones as external\nbuffers instead of the data put directly inside mbufs.\n---\nv2:\n* Rebasing over the stateful decompression patch\n\nThis patch depends on https://patches.dpdk.org/cover/59610/\n\nAdam Dybkowski (2):\n  test/compress: add external buffer in mbuf API test\n  app/compress-perf: add external mbufs option\n\n app/test-compress-perf/comp_perf_options.h    |   2 +\n .../comp_perf_options_parse.c                 |  15 +\n .../comp_perf_test_benchmark.c                |   3 +-\n .../comp_perf_test_common.c                   | 201 ++++++++++-\n .../comp_perf_test_common.h                   |   9 +-\n .../comp_perf_test_verify.c                   |   4 +-\n app/test/test_compressdev.c                   | 314 ++++++++++++------\n 7 files changed, 443 insertions(+), 105 deletions(-)",
    "diff": null,
    "prefixes": [
        "v2",
        "0/2"
    ]
}