From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46405) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFeV-0007sN-C5 for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:07:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxFeP-00029u-GR for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:07:15 -0400 Received: from e06smtp17.uk.ibm.com ([195.75.94.113]:40037) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxFeP-000242-5D for qemu-devel@nongnu.org; Thu, 11 Jul 2013 08:07:09 -0400 Received: from /spool/local by e06smtp17.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 11 Jul 2013 13:02:54 +0100 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id EF1A42190023 for ; Thu, 11 Jul 2013 13:10:57 +0100 (BST) Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by b06cxnps4076.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r6BC6qwR52297930 for ; Thu, 11 Jul 2013 12:06:52 GMT Received: from d06av11.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r6BC73AU016722 for ; Thu, 11 Jul 2013 06:07:03 -0600 From: Cornelia Huck Date: Thu, 11 Jul 2013 14:07:01 +0200 Message-Id: <1373544421-14462-2-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1373544421-14462-1-git-send-email-cornelia.huck@de.ibm.com> References: <1373544421-14462-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PATCH] virtio-ccw: Enable x-data-plane for virtio-ccw-blk List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Cc: Dominik Dingel From: Dominik Dingel Add property x-data-plane to virtio-ccw-blk devices. Signed-off-by: Dominik Dingel Signed-off-by: Cornelia Huck --- hw/s390x/virtio-ccw.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c index e744957..8835bd4 100644 --- a/hw/s390x/virtio-ccw.c +++ b/hw/s390x/virtio-ccw.c @@ -1031,6 +1031,9 @@ static Property virtio_ccw_blk_properties[] = { DEFINE_VIRTIO_BLK_PROPERTIES(VirtIOBlkCcw, blk), DEFINE_PROP_BIT("ioeventfd", VirtioCcwDevice, flags, VIRTIO_CCW_FLAG_USE_IOEVENTFD_BIT, true), +#ifdef CONFIG_VIRTIO_BLK_DATA_PLANE + DEFINE_PROP_BIT("x-data-plane", VirtIOBlkCcw, blk.data_plane, 0, false), +#endif DEFINE_PROP_END_OF_LIST(), }; -- 1.7.9.5