get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

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

{
    "id": 60770,
    "url": "https://patches.dpdk.org/api/patches/60770/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/20191009115432.14863-1-amorenoz@redhat.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": "<20191009115432.14863-1-amorenoz@redhat.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20191009115432.14863-1-amorenoz@redhat.com",
    "date": "2019-10-09T11:54:29",
    "name": "[v6,0/3] vhost: add support for IOVA_VA mode",
    "commit_ref": null,
    "pull_url": null,
    "state": null,
    "archived": false,
    "hash": null,
    "submitter": {
        "id": 1397,
        "url": "https://patches.dpdk.org/api/people/1397/?format=api",
        "name": "Adrian Moreno",
        "email": "amorenoz@redhat.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/20191009115432.14863-1-amorenoz@redhat.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/60770/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/60770/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 1F1FD1C20D;\n\tWed,  9 Oct 2019 13:54:47 +0200 (CEST)",
            "from mx1.redhat.com (mx1.redhat.com [209.132.183.28])\n\tby dpdk.org (Postfix) with ESMTP id 83B2B1C11E;\n\tWed,  9 Oct 2019 13:54:45 +0200 (CEST)",
            "from smtp.corp.redhat.com\n\t(int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby mx1.redhat.com (Postfix) with ESMTPS id A4DF1315C00D;\n\tWed,  9 Oct 2019 11:54:44 +0000 (UTC)",
            "from amorenoz.users.ipa.redhat.com (ovpn-117-37.ams2.redhat.com\n\t[10.36.117.37])\n\tby smtp.corp.redhat.com (Postfix) with ESMTP id D281A5D9CD;\n\tWed,  9 Oct 2019 11:54:37 +0000 (UTC)"
        ],
        "From": "Adrian Moreno <amorenoz@redhat.com>",
        "To": "dev@dpdk.org",
        "Cc": "tiwei.bie@intel.com, zhihong.wang@intel.com, maxime.coquelin@redhat.com, \n\tAdrian Moreno <amorenoz@redhat.com>, stable@dpdk.org",
        "Date": "Wed,  9 Oct 2019 13:54:29 +0200",
        "Message-Id": "<20191009115432.14863-1-amorenoz@redhat.com>",
        "MIME-Version": "1.0",
        "Content-Transfer-Encoding": "8bit",
        "X-Scanned-By": "MIMEDefang 2.79 on 10.5.11.14",
        "X-Greylist": "Sender IP whitelisted, not delayed by milter-greylist-4.5.16\n\t(mx1.redhat.com [10.5.110.41]); Wed, 09 Oct 2019 11:54:44 +0000 (UTC)",
        "Subject": "[dpdk-dev] [PATCH v6 0/3] vhost: add support for IOVA_VA mode",
        "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": "Currently, IOVAs are assumed to be GPA when the dirty page logging\nis performed.\n\nAdd support for guest IOVA_VA mode by translating addresses\nto GPA before doing the dirty page logging.\n\nAlso, the guest_pages tracking mechanism used for zero_copy will not work\neither if IOVA_VA is enabled. In fact, enabling dequeue_zero_copy and\nIOMMU is dangerous altogether because IOTLB invalidation of guest\npages can happen while the buffers are being used. So, ensure this\ncannot happen by preventing both features to be activated\nsimultaneously.\n\nFurther information: https://bugs.dpdk.org/show_bug.cgi?id=337\n\nFixes: 69c90e98f483 (\"vhost: enable IOMMU support\")\nCc: maxime.coquelin@redhat.com\nCc: stable@dpdk.org\n\n---\nv6 changes: Change log string to fix UB1604-32 build\nv5 changes: Rebase on top of dpdk-next-virtio\nv4 changes: Address review comments\nv3 changes: Address style warnings\nv2 changes: Also translate buffer addresses\n----\n\nAdrian Moreno (3):\n  vhost: translate incoming log address to gpa\n  vhost: convert buffer addresses to GPA for logging\n  vhost: prevent zero copy mode if iommu is on\n\n lib/librte_vhost/rte_vhost.h  |  2 +-\n lib/librte_vhost/socket.c     |  8 ++++++\n lib/librte_vhost/vdpa.c       |  3 ++-\n lib/librte_vhost/vhost.c      | 41 ++++++++++++++++++++++++++++\n lib/librte_vhost/vhost.h      | 51 +++++++++++++++++++++++++++++++++++\n lib/librte_vhost/vhost_user.c | 42 ++++++++++++++++++++++++++++-\n lib/librte_vhost/virtio_net.c | 12 +++++----\n 7 files changed, 151 insertions(+), 8 deletions(-)",
    "diff": null,
    "prefixes": [
        "v6",
        "0/3"
    ]
}