From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:53965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gphA2-00036t-HU for qemu-devel@nongnu.org; Fri, 01 Feb 2019 17:19:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gphA0-00012G-Mj for qemu-devel@nongnu.org; Fri, 01 Feb 2019 17:19:46 -0500 Received: from mx1.redhat.com ([209.132.183.28]:46320) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gph9w-0000vh-JU for qemu-devel@nongnu.org; Fri, 01 Feb 2019 17:19:42 -0500 Date: Fri, 1 Feb 2019 17:19:32 -0500 From: "Michael S. Tsirkin" Message-ID: <20190201171915-mutt-send-email-mst@kernel.org> References: <20190118133826.22447-1-berrange@redhat.com> <20190128174857.GT4136@habkost.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20190128174857.GT4136@habkost.net> Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH] hw: report invalid disable-legacy|modern usage for virtio-1-only devs List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eduardo Habkost Cc: Daniel =?iso-8859-1?Q?P=2E_Berrang=E9?= , qemu-devel@nongnu.org, Gonglei , Gerd Hoffmann On Mon, Jan 28, 2019 at 03:48:57PM -0200, Eduardo Habkost wrote: > On Fri, Jan 18, 2019 at 01:38:26PM +0000, Daniel P. Berrang=E9 wrote: > > A number of virtio devices (gpu, crypto, mouse, keyboard, tablet) onl= y > > support the virtio-1 (aka modern) mode. Currently if the user launche= s > > QEMU, setting those devices to enable legacy mode, QEMU will silently > > create them in modern mode, ignoring the user's (mistaken) request. > >=20 > > This patch introduces proper data validation so that an attempt to > > configure a virtio-1-only devices in legacy mode gets reported as an > > error to the user. > >=20 > > Checking this required introduction of a new field to explicitly trac= k > > what operating model is to be used for a device, separately from the > > disable_modern and disable_legacy fields that record the user's > > requested configuration. > >=20 > > Signed-off-by: Daniel P. Berrang=E9 >=20 > This breaks the virtio-1-only devices on pc-*-2.6: >=20 > $ ./x86_64-softmmu/qemu-system-x86_64 -device virtio-vga -machine pc-= i440fx-2.6 > qemu-system-x86_64: -device virtio-vga: Unable to set disable-legacy=3D= off on a virtio-1.0 only device >=20 > Probably the simplest way to fix that is to append the following to > hw_compat_2_6: >=20 > { virtio-vga, disable-modern, off }, > { virtio-gpu-pci, disable-modern, off }, > { virtio-input-pci, disable-modern, off }, > { virtio-crypto-pci, disable-modern, off } Daniel do you plan to take a stub at this approach? > We could also remove the property completely from those devices > (e.g. by moving virtio-vga to virtio_vga_info.non_transitional_name), > but it would break compatibility in case people are explicitly > setting "disable-modern=3Doff" on those devices. >=20 > --=20 > Eduardo