From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCVki-00012y-QF for qemu-devel@nongnu.org; Wed, 30 Jul 2014 11:25:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XCVkc-0004LJ-Ls for qemu-devel@nongnu.org; Wed, 30 Jul 2014 11:25:16 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49758) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XCVkc-0004Ki-Er for qemu-devel@nongnu.org; Wed, 30 Jul 2014 11:25:10 -0400 Message-ID: <53D90E4C.3090105@redhat.com> Date: Wed, 30 Jul 2014 17:25:00 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1406720388-18671-1-git-send-email-ming.lei@canonical.com> <1406720388-18671-15-git-send-email-ming.lei@canonical.com> <53D8FAD7.1070509@redhat.com> <20140730151232.GC26313@redhat.com> In-Reply-To: <20140730151232.GC26313@redhat.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 14/15] hw/block/virtio-blk: create num_queues vqs if dataplane is enabled List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: Kevin Wolf , Peter Maydell , Fam Zheng , Ming Lei , qemu-devel@nongnu.org, Stefan Hajnoczi Il 30/07/2014 17:12, Michael S. Tsirkin ha scritto: >> > >> > Dataplane must not be a change to the guest ABI. If you implement this >> > feature you have to implement it for both dataplane and non-dataplne. >> > >> > Paolo > Actually, I think different backends at runtime should be allowed to > change guest visible ABI. For example if you give qemu a read only > backend this is guest visible right? Dataplane is not meant to be a different backend, it's just moving stuff out to a separate thread. It's only due to QEMU limitation that it doesn't share the vring code (and these patches include a lot of steps backwards where dataplane becomes != non-dataplane). Paolo