From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60240) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLJH-0002PP-BF for qemu-devel@nongnu.org; Thu, 07 Aug 2014 06:52:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XFLJA-0007Gw-Eg for qemu-devel@nongnu.org; Thu, 07 Aug 2014 06:52:39 -0400 Received: from youngberry.canonical.com ([91.189.89.112]:59508) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XFLJA-0007Gk-9X for qemu-devel@nongnu.org; Thu, 07 Aug 2014 06:52:32 -0400 Received: from mail-vc0-f178.google.com ([209.85.220.178]) by youngberry.canonical.com with esmtpsa (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1XFLJ9-0000uo-Jj for qemu-devel@nongnu.org; Thu, 07 Aug 2014 10:52:31 +0000 Received: by mail-vc0-f178.google.com with SMTP id la4so6009236vcb.9 for ; Thu, 07 Aug 2014 03:52:30 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <1407209598-2572-1-git-send-email-ming.lei@canonical.com> <20140805094844.GF4391@noname.str.redhat.com> <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> Date: Thu, 7 Aug 2014 18:52:30 +0800 Message-ID: From: Ming Lei Content-Type: text/plain; charset=UTF-8 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: Kevin Wolf Cc: Peter Maydell , Fam Zheng , "Michael S. Tsirkin" , qemu-devel , Stefan Hajnoczi , Paolo Bonzini 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(). Thanks,