From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52122) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UykzN-0002pI-Cx for qemu-devel@nongnu.org; Mon, 15 Jul 2013 11:47:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UykzK-0005td-Tu for qemu-devel@nongnu.org; Mon, 15 Jul 2013 11:47:01 -0400 Received: from e06smtp15.uk.ibm.com ([195.75.94.111]:52590) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UykzK-0005sN-J0 for qemu-devel@nongnu.org; Mon, 15 Jul 2013 11:46:58 -0400 Received: from /spool/local by e06smtp15.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 15 Jul 2013 16:41:59 +0100 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 23F721B08066 for ; Mon, 15 Jul 2013 16:46:54 +0100 (BST) Received: from d06av09.portsmouth.uk.ibm.com (d06av09.portsmouth.uk.ibm.com [9.149.37.250]) by b06cxnps3074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r6FFkgWs51445932 for ; Mon, 15 Jul 2013 15:46:42 GMT Received: from d06av09.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av09.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r6FFkqqa032688 for ; Mon, 15 Jul 2013 09:46:53 -0600 From: Cornelia Huck Date: Mon, 15 Jul 2013 17:46:47 +0200 Message-Id: <1373903207-27085-2-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1373903207-27085-1-git-send-email-cornelia.huck@de.ibm.com> References: <1373903207-27085-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PULL] 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: Blue Swirl , Cornelia Huck , Anthony Liguori , Dominik Dingel , =?UTF-8?q?Aur=C3=A9lien=20Jarno?= 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