From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45462) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gC067-000328-8H for qemu-devel@nongnu.org; Mon, 15 Oct 2018 06:27:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gC062-0003t2-C1 for qemu-devel@nongnu.org; Mon, 15 Oct 2018 06:27:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44022) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gC062-0003rV-5G for qemu-devel@nongnu.org; Mon, 15 Oct 2018 06:27:34 -0400 Date: Mon, 15 Oct 2018 06:27:21 -0400 From: "Michael S. Tsirkin" Message-ID: <20181015062543-mutt-send-email-mst@kernel.org> References: <20181013025435.25785-1-ehabkost@redhat.com> <20181015081641.q6r5wnhm7rq5tgfh@sirius.home.kraxel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20181015081641.q6r5wnhm7rq5tgfh@sirius.home.kraxel.org> Subject: Re: [Qemu-devel] [PATCH] virtio: Provide version-specific variants of virtio PCI devices List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann Cc: Eduardo Habkost , qemu-devel@nongnu.org, Gonglei , Philippe =?iso-8859-1?Q?Mathieu-Daud=E9?= , Wainer dos Santos Moschetta , Cleber Rosa , Markus Armbruster , Laine Stump , Caio Carrara On Mon, Oct 15, 2018 at 10:16:41AM +0200, Gerd Hoffmann wrote: > On Fri, Oct 12, 2018 at 11:54:35PM -0300, Eduardo Habkost wrote: > > The current virtio-*-pci device types actually represent 3 > > different types of devices: > > * virtio 1.0 non-transitional devices > > * virtio 1.0 transitional devices > > Ok. > > > * virtio 0.9 ("legacy device" in virtio 1.0 terminology) > > Why? Is there any reason to prefer 0.9 over transitional? > > cheers, > Gerd Right - maybe a flag to disable modern interface is enough. We thus get two types: - transitional (legacy) - non-transitional (modern) which matches spec nicely. -- MST