get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 14851,
    "url": "http://patches.dpdk.org/api/patches/14851/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/patch/1468585713-28557-1-git-send-email-yuanhan.liu@linux.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": "<1468585713-28557-1-git-send-email-yuanhan.liu@linux.intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1468585713-28557-1-git-send-email-yuanhan.liu@linux.intel.com",
    "date": "2016-07-15T12:28:33",
    "name": "[dpdk-dev] doc: deprecate vhost-cuse",
    "commit_ref": null,
    "pull_url": null,
    "state": "accepted",
    "archived": true,
    "hash": "7bf43f34ed75d0a88ce754a3e3660f8355c00e17",
    "submitter": {
        "id": 307,
        "url": "http://patches.dpdk.org/api/people/307/?format=api",
        "name": "Yuanhan Liu",
        "email": "yuanhan.liu@linux.intel.com"
    },
    "delegate": null,
    "mbox": "http://patches.dpdk.org/project/dpdk/patch/1468585713-28557-1-git-send-email-yuanhan.liu@linux.intel.com/mbox/",
    "series": [],
    "comments": "http://patches.dpdk.org/api/patches/14851/comments/",
    "check": "pending",
    "checks": "http://patches.dpdk.org/api/patches/14851/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 [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id 7AB295581;\n\tFri, 15 Jul 2016 14:25:36 +0200 (CEST)",
            "from mga11.intel.com (mga11.intel.com [192.55.52.93])\n\tby dpdk.org (Postfix) with ESMTP id 5881A532D\n\tfor <dev@dpdk.org>; Fri, 15 Jul 2016 14:25:34 +0200 (CEST)",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby fmsmga102.fm.intel.com with ESMTP; 15 Jul 2016 05:25:31 -0700",
            "from yliu-dev.sh.intel.com ([10.239.67.162])\n\tby fmsmga002.fm.intel.com with ESMTP; 15 Jul 2016 05:25:26 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos; i=\"5.28,368,1464678000\"; d=\"scan'208\";\n\ta=\"1022334524\"",
        "From": "Yuanhan Liu <yuanhan.liu@linux.intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "Thomas Monjalon <thomas.monjalon@6wind.com>,\n\tYuanhan Liu <yuanhan.liu@linux.intel.com>",
        "Date": "Fri, 15 Jul 2016 20:28:33 +0800",
        "Message-Id": "<1468585713-28557-1-git-send-email-yuanhan.liu@linux.intel.com>",
        "X-Mailer": "git-send-email 1.9.0",
        "Subject": "[dpdk-dev] [PATCH] doc: deprecate vhost-cuse",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "patches and discussions about DPDK <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Vhost-cuse was invented before vhost-user exist. The both are actually\ndoing the same thing: a vhost-net implementation in user space. But they\nare not exactly the same thing.\n\nFirstly, vhost-cuse is harder for use; no one seems to care it, either.\nFurthermore, since v2.1, a large majority of development effort has gone\nto vhost-user. For example, we extended the vhost-user spec to add the\nmultiple queue support. We also added the vhost-user live migration at\nv16.04 and the latest one, vhost-user reconnect that allows vhost app\nrestart without restarting the guest. Both of them are very important\nfeatures for product usage and none of them works for vhost-cuse.\n\nYou now see that the difference between vhost-user and vhost-cuse is\nbig (and will be bigger and bigger as time moves forward), that you\nshould never use vhost-cuse, that we should drop it completely.\n\nThe remove would also result to a much cleaner code base, allowing us\nto do all kinds of extending easier.\n\nSo here to mark vhost-cuse as deprecated in this release and will be\nremoved in the next release (v16.11).\n\nSigned-off-by: Yuanhan Liu <yuanhan.liu@linux.intel.com>\n---\n doc/guides/rel_notes/deprecation.rst | 4 ++++\n 1 file changed, 4 insertions(+)",
    "diff": "diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst\nindex f502f86..ee99558 100644\n--- a/doc/guides/rel_notes/deprecation.rst\n+++ b/doc/guides/rel_notes/deprecation.rst\n@@ -41,3 +41,7 @@ Deprecation Notices\n * The mempool functions for single/multi producer/consumer are deprecated and\n   will be removed in 16.11.\n   It is replaced by rte_mempool_generic_get/put functions.\n+\n+* The vhost-cuse will be removed in 16.11. Since v2.1, a large majority of\n+  development effort has gone to vhost-user, such as multiple-queue, live\n+  migration, reconnect etc. Therefore, vhost-user should be used instead.\n",
    "prefixes": [
        "dpdk-dev"
    ]
}