From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:38691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHYTC-0004Gi-CM for qemu-devel@nongnu.org; Mon, 18 Mar 2013 07:43:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHYTB-0004m0-3H for qemu-devel@nongnu.org; Mon, 18 Mar 2013 07:43:14 -0400 Received: from e06smtp11.uk.ibm.com ([195.75.94.107]:38571) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHYTA-0004lV-T3 for qemu-devel@nongnu.org; Mon, 18 Mar 2013 07:43:13 -0400 Received: from /spool/local by e06smtp11.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 18 Mar 2013 11:40:21 -0000 Received: from b06cxnps4075.portsmouth.uk.ibm.com (d06relay12.portsmouth.uk.ibm.com [9.149.109.197]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id 1827417D801F for ; Mon, 18 Mar 2013 11:43:44 +0000 (GMT) Received: from d06av08.portsmouth.uk.ibm.com (d06av08.portsmouth.uk.ibm.com [9.149.37.249]) by b06cxnps4075.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r2IBgr5v25428074 for ; Mon, 18 Mar 2013 11:42:53 GMT Received: from d06av08.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r2IBh2T7028936 for ; Mon, 18 Mar 2013 05:43:02 -0600 From: Cornelia Huck Date: Mon, 18 Mar 2013 12:42:58 +0100 Message-Id: <1363606979-13252-2-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1363606979-13252-1-git-send-email-cornelia.huck@de.ibm.com> References: <1363606979-13252-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PATCH 1/2] virtio-ccw: Add missing blk chs properties. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Cc: Alexander Graf Signed-off-by: Cornelia Huck --- hw/s390x/virtio-ccw.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c index d4361f6..70aba41 100644 --- a/hw/s390x/virtio-ccw.c +++ b/hw/s390x/virtio-ccw.c @@ -755,6 +755,7 @@ static const TypeInfo virtio_ccw_net = { static Property virtio_ccw_blk_properties[] = { DEFINE_PROP_STRING("devno", VirtioCcwDevice, bus_id), DEFINE_BLOCK_PROPERTIES(VirtioCcwDevice, blk.conf), + DEFINE_BLOCK_CHS_PROPERTIES(VirtioCcwDevice, blk.conf), DEFINE_PROP_STRING("serial", VirtioCcwDevice, blk.serial), #ifdef __linux__ DEFINE_PROP_BIT("scsi", VirtioCcwDevice, blk.scsi, 0, true), -- 1.7.9.5