From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40986) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fWMub-0003mW-6B for qemu-devel@nongnu.org; Fri, 22 Jun 2018 10:19:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fWMuX-0002gU-GK for qemu-devel@nongnu.org; Fri, 22 Jun 2018 10:19:41 -0400 From: Markus Armbruster References: <20180615142108.27814-1-kwolf@redhat.com> <20180615142108.27814-26-kwolf@redhat.com> <7a310b92-f8cb-b68b-d882-9b2959794347@de.ibm.com> <20180622125502.GF4366@localhost.localdomain> Date: Fri, 22 Jun 2018 16:19:29 +0200 In-Reply-To: <20180622125502.GF4366@localhost.localdomain> (Kevin Wolf's message of "Fri, 22 Jun 2018 14:55:02 +0200") Message-ID: <8736xec39q.fsf@dusky.pond.sub.org> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PULL 25/26] block: Remove deprecated -drive option serial List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Kevin Wolf Cc: Christian Borntraeger , Boris Fiuczynski , qemu-block@nongnu.org, libvir-list@redhat.com, qemu-devel@nongnu.org, pkrempa@redhat.com Kevin Wolf writes: > Am 22.06.2018 um 13:38 hat Christian Borntraeger geschrieben: >> >> On 06/15/2018 04:21 PM, Kevin Wolf wrote: >> > The -drive option serial was deprecated in QEMU 2.10. It's time to >> > remove it. >> > >> > Tests need to be updated to set the serial number with -global instead >> > of using the -drive option. >> >> libvirt 4.5 still creates those (at least on s390x) >> >> >> >> >> >> skel >> >>
>> >> >> >> -> >> [...] >> -drive file=/var/lib/libvirt/qemu/image.zhyp137,format=qcow2,if=none,id=drive-virtio-disk0,serial=skel,cache=none,aio=native -device virtio-blk-ccw,iothread=iothread1,scsi=off,devno=fe.0.0000,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1,write-cache=on >> [...] >> >> 2018-06-22T11:25:20.946024Z qemu-system-s390x: -drive file=/var/lib/libvirt/qemu/image.zhyp137,format=qcow2,if=none,id=drive-virtio-disk0,serial=skel,cache=none,aio=native: Block format 'qcow2' does not support the option 'serial' >> 2018-06-22 11:25:21.098+0000: shutting down, reason=failed >> >> So it seems that this breaks s390x. > > Thanks for bringing this up. libvirt should fix this before QEMU 3.0 is > released. > > Sadly, it also shows that deprecation warnings in log files go > unnoticed. Nobody reads log files until things have gone belly up, and even then unrelated log entries get ignored. The way to get deprecation warnings noticed it to have the management application fail its "make check". Perhaps we could use a more structured notification, to make detecting use of deprecated features programmatically trivial. A QMP event might do.