From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLXE-0001H4-Sn for qemu-devel@nongnu.org; Thu, 07 Aug 2014 07:07:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XFLX9-00040u-Vx for qemu-devel@nongnu.org; Thu, 07 Aug 2014 07:07:04 -0400 Received: from mx1.redhat.com ([209.132.183.28]:29304) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLX9-00040W-Ou for qemu-devel@nongnu.org; Thu, 07 Aug 2014 07:06:59 -0400 Date: Thu, 7 Aug 2014 13:06:51 +0200 From: Kevin Wolf Message-ID: <20140807110651.GA3374@noname.redhat.com> References: <20140805134815.GD12251@stefanha-thinkpad.redhat.com> <20140805144728.GH4391@noname.str.redhat.com> <20140806084855.GA4090@noname.str.redhat.com> <20140806100918.GC4090@noname.str.redhat.com> <20140806154041.GD4090@noname.str.redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [PATCH v1 00/17] dataplane: optimization and multi virtqueue support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Ming Lei Cc: Peter Maydell , Fam Zheng , "Michael S. Tsirkin" , qemu-devel , Stefan Hajnoczi , Paolo Bonzini Am 07.08.2014 um 12:52 hat Ming Lei geschrieben: > On Thu, Aug 7, 2014 at 6:27 PM, Ming Lei wrote: > > On Wed, Aug 6, 2014 at 11:40 PM, Kevin Wolf wrote: > > > Also there are some problems with your patches which can't boot a > > VM in my environment: > > > > - __thread patch: looks there is no '__thread' used, and the patch > > basically makes bypass not workable. > > > > - bdrv_co_writev callback isn't set for raw-posix, looks my rootfs need to > > write during booting > > > > - another problem, I am investigating: laio isn't accessable > > in qemu_laio_process_completion() sometimes > > This one should be caused by accessing 'laiocb' after cb(). I stumbled across the same problems this morning when I tried to actually run VMs with it instead of just qemu-img bench. They should all be fixed in my git repo now. (Haven't figured out yet why __thread doesn't work, so I have reverted that part, probably at the cost of some performance.) Kevin