From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=43384 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pi8EG-0002FW-2a for qemu-devel@nongnu.org; Wed, 26 Jan 2011 11:28:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pi8EE-0002EM-Jn for qemu-devel@nongnu.org; Wed, 26 Jan 2011 11:28:19 -0500 Received: from mail-qy0-f180.google.com ([209.85.216.180]:63816) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pi8EE-0002EH-Fk for qemu-devel@nongnu.org; Wed, 26 Jan 2011 11:28:18 -0500 Received: by qyk29 with SMTP id 29so1204892qyk.4 for ; Wed, 26 Jan 2011 08:28:17 -0800 (PST) Message-ID: <4D404B9F.7040801@codemonkey.ws> Date: Wed, 26 Jan 2011 10:28:15 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [RFC][PATCH 11/12] qcow2: Convert qcow2 to use coroutines for async I/O References: <1295688567-25496-1-git-send-email-stefanha@linux.vnet.ibm.com> <1295688567-25496-12-git-send-email-stefanha@linux.vnet.ibm.com> <4D40406B.2070302@redhat.com> <4D4042A8.2040903@redhat.com> <4D4046EF.3050108@codemonkey.ws> <4D40481E.9040309@redhat.com> In-Reply-To: <4D40481E.9040309@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Avi Kivity Cc: Kevin Wolf , Stefan Hajnoczi , qemu-devel@nongnu.org On 01/26/2011 10:13 AM, Avi Kivity wrote: > Serializing against a global mutex has the advantage that it can be > treated as a global lock that is decomposed into fine-grained locks. > > For example, we can start the code conversion from an explict async > model to a threaded sync model by converting the mutex into a > shared/exclusive lock. Operations like read and write take the lock > for shared access (and take a fine-grained mutex on the metadata cache > entry), while operation like creating a snapshot take the lock for > exclusive access. That doesn't work with freeze/thaw. The trouble with this is that you increase the amount of re-entrance whereas freeze/thaw doesn't. The code from the beginning of the request to where the mutex is acquired will be executed for every single request even while requests are blocked at the mutex acquisition. With freeze/thaw, you freeze the queue and prevent any request from starting until you thaw. You only thaw and return control to allow another request to execute when you begin executing an asynchronous I/O callback. I think my previous example was wrong, you really want to do: qcow2_aio_writev() { coroutine { freeze(); sync_io(); // existing qcow2 code thaw(); // existing non I/O code bdrv_aio_writev(callback); // no explicit freeze/thaw needed } } This is equivalent to our existing code because no new re-entrance is introduced. The only re-entrancy points are in the bdrv_aio_{readv,writev} calls. Regards, Anthony Liguori