From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KoHUw-0005eH-9o for qemu-devel@nongnu.org; Fri, 10 Oct 2008 08:53:38 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KoHUv-0005e5-RV for qemu-devel@nongnu.org; Fri, 10 Oct 2008 08:53:38 -0400 Received: from [199.232.76.173] (port=36520 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KoHUv-0005e2-O2 for qemu-devel@nongnu.org; Fri, 10 Oct 2008 08:53:37 -0400 Received: from mail.codesourcery.com ([65.74.133.4]:40521) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KoHUv-0007hN-9l for qemu-devel@nongnu.org; Fri, 10 Oct 2008 08:53:37 -0400 From: Paul Brook Subject: Re: [Qemu-devel] [RFC] Disk integrity in QEMU Date: Fri, 10 Oct 2008 13:53:31 +0100 References: <48EE38B9.2050106@codemonkey.ws> <20081010081157.GA13431@volta.aurel32.net> <48EF49D8.3090002@codemonkey.ws> In-Reply-To: <48EF49D8.3090002@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200810101353.32933.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Chris Wright , Mark McLoughlin , kvm-devel , Laurent Vivier , Ryan Harper > But that said, I'm concerned that this is far too confusing for users. > I don't think anyone is relying on disk write performance when in > write-back mode simply because the guest already has a page cache so > writes are already being completed instantaneously from the > application's perspective. This isn't entirely true. With IDE devices you don't have command queueing, so it's easy for a large write to stall subsequent reads for a relatively long time. I'm not sure how much this effects qemu, but I've definitely seen it happening on real hardware. Paul