get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 51317,
    "url": "http://patches.dpdk.org/api/patches/51317/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/20190319064312.13743-1-tiwei.bie@intel.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": "<20190319064312.13743-1-tiwei.bie@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190319064312.13743-1-tiwei.bie@intel.com",
    "date": "2019-03-19T06:43:02",
    "name": "[00/10] net/virtio: cleanups and fixes for packed/split ring",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 617,
        "url": "http://patches.dpdk.org/api/people/617/?format=api",
        "name": "Tiwei Bie",
        "email": "tiwei.bie@intel.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/20190319064312.13743-1-tiwei.bie@intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/51317/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/51317/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 F38351B19;\n\tTue, 19 Mar 2019 07:43:37 +0100 (CET)",
            "from mga07.intel.com (mga07.intel.com [134.134.136.100])\n\tby dpdk.org (Postfix) with ESMTP id B9BE4239\n\tfor <dev@dpdk.org>; Tue, 19 Mar 2019 07:43:35 +0100 (CET)",
            "from orsmga007.jf.intel.com ([10.7.209.58])\n\tby orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t18 Mar 2019 23:43:34 -0700",
            "from dpdk-tbie.sh.intel.com ([10.67.104.173])\n\tby orsmga007.jf.intel.com with ESMTP; 18 Mar 2019 23:43:33 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.58,496,1544515200\"; d=\"scan'208\";a=\"123847032\"",
        "From": "Tiwei Bie <tiwei.bie@intel.com>",
        "To": "maxime.coquelin@redhat.com,\n\tzhihong.wang@intel.com,\n\tdev@dpdk.org",
        "Date": "Tue, 19 Mar 2019 14:43:02 +0800",
        "Message-Id": "<20190319064312.13743-1-tiwei.bie@intel.com>",
        "X-Mailer": "git-send-email 2.17.1",
        "Subject": "[dpdk-dev] [PATCH 00/10] net/virtio: cleanups and fixes for\n\tpacked/split ring",
        "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": "Tiwei Bie (10):\n  net/virtio: fix typo in packed ring init\n  net/virtio: fix interrupt helper for packed ring\n  net/virtio: add missing barrier in interrupt enable\n  net/virtio: optimize flags update for packed ring\n  net/virtio: refactor virtqueue structure\n  net/virtio: drop redundant suffix in packed ring structure\n  net/virtio: drop unused field in Tx region structure\n  net/virtio: add interrupt helper for split ring\n  net/virtio: add ctrl vq helper for split ring\n  net/virtio: improve batching in standard Rx path\n\n drivers/net/virtio/virtio_ethdev.c            | 172 +++++++++---------\n drivers/net/virtio/virtio_ring.h              |  15 +-\n drivers/net/virtio/virtio_rxtx.c              | 139 +++++++-------\n drivers/net/virtio/virtio_rxtx_simple.h       |   2 +-\n drivers/net/virtio/virtio_rxtx_simple_neon.c  |   2 +-\n drivers/net/virtio/virtio_rxtx_simple_sse.c   |   2 +-\n .../net/virtio/virtio_user/virtio_user_dev.c  |  22 +--\n drivers/net/virtio/virtio_user_ethdev.c       |  11 +-\n drivers/net/virtio/virtqueue.c                |   6 +-\n drivers/net/virtio/virtqueue.h                | 100 +++++-----\n 10 files changed, 241 insertions(+), 230 deletions(-)",
    "diff": null,
    "prefixes": [
        "00/10"
    ]
}