get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 61292,
    "url": "https://patches.dpdk.org/api/patches/61292/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20191016094045.19895-1-arturx.trybula@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": "<20191016094045.19895-1-arturx.trybula@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191016094045.19895-1-arturx.trybula@intel.com",
    "date": "2019-10-16T09:40:43",
    "name": "[v4,0/2] Add overflow recovery for stateless compression",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1327,
        "url": "https://patches.dpdk.org/api/people/1327/?format=api",
        "name": "Artur Trybula",
        "email": "arturx.trybula@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20191016094045.19895-1-arturx.trybula@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/61292/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/61292/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 78F4E1E8B7;\n\tWed, 16 Oct 2019 11:40:52 +0200 (CEST)",
            "from mga01.intel.com (mga01.intel.com [192.55.52.88])\n\tby dpdk.org (Postfix) with ESMTP id 597531E54C\n\tfor <dev@dpdk.org>; Wed, 16 Oct 2019 11:40:51 +0200 (CEST)",
            "from orsmga001.jf.intel.com ([10.7.209.18])\n\tby fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t16 Oct 2019 02:40:50 -0700",
            "from atrybulx-mobl.ger.corp.intel.com (HELO\n\tbuild-VirtualBox.isw.intel.com) ([10.103.104.115])\n\tby orsmga001.jf.intel.com with ESMTP; 16 Oct 2019 02:40:48 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.67,303,1566889200\"; d=\"scan'208\";a=\"279476705\"",
        "From": "Artur Trybula <arturx.trybula@intel.com>",
        "To": "dev@dpdk.org, fiona.trahe@intel.com, shallyv@marvell.com,\n\tadamx.dybkowski@intel.com, arturx.trybula@intel.com, akhil.goyal@nxp.com",
        "Date": "Wed, 16 Oct 2019 11:40:43 +0200",
        "Message-Id": "<20191016094045.19895-1-arturx.trybula@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "In-Reply-To": "<20191011174613.4770-1-arturx.trybula@intel.com>",
        "References": "<20191011174613.4770-1-arturx.trybula@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v4 0/2] Add overflow recovery for stateless\n\tcompression",
        "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 patch adds out-of-space recoverable feature for stateless\ncompression scenario to QuickAssist compressdev driver. Unit test\nwas also created to verify the new feature.\n\nv4:\t- if a device doesn't support out-of-space recoverable feature,\n\tthen instead of \"failed\", \"unsupported\" result will be\n\tprinted out on the screen\n\nv3:\t- rebasing onto the recent master\n\nv2:\t- rebasing over the external mbufs\n\nArtur Trybula (2):\n  compress/qat: overflow catch for stateless compression\n  test/compress: unit test for stateless overflow recovery\n\n app/test/test_compressdev.c     | 280 ++++++++++++++++++++++++++------\n drivers/compress/qat/qat_comp.c |  28 +++-\n 2 files changed, 258 insertions(+), 50 deletions(-)",
    "diff": null,
    "prefixes": [
        "v4",
        "0/2"
    ]
}