From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:46711) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfBd3-0003rg-ET for qemu-devel@nongnu.org; Wed, 22 May 2013 12:11:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UfBcy-0005jY-DE for qemu-devel@nongnu.org; Wed, 22 May 2013 12:11:05 -0400 Received: from atl4mhob14.myregisteredsite.com ([209.17.115.52]:39879) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UfBcx-0005jN-V9 for qemu-devel@nongnu.org; Wed, 22 May 2013 12:11:00 -0400 From: "Mark Trumpold" Message-ID: Date: Wed, 22 May 2013 16:10:56 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] 'qemu-nbd' explicit flush List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini , Stefan Hajnoczi Cc: Mark Trumpold , qemu-devel@nongnu.org, markt@tachyon.net Thank you guys for responding!! > > > 1. Add a signal handler (like SIGHUP or SIGUSR1) to qemu-nbd which > > flushes all exports. > > That would be a useful addition anyway. > > Paolo This is exactly what I was going to try today. I'm just getting familiar with Qemu source. I'll let you know how it goes.. Thanks again Paolo and Stefan. Regards, Mark Trumpold -----Original Message----- From: Paolo Bonzini [mailto:pbonzini@redhat.com] Sent: Wednesday, May 22, 2013 04:07 AM To: 'Stefan Hajnoczi' Cc: 'Mark Trumpold', qemu-devel@nongnu.org, markt@tachyon.net Subject: Re: 'qemu-nbd' explicit flush Il 22/05/2013 11:47, Stefan Hajnoczi ha scritto: > On Tue, May 21, 2013 at 08:01:10PM +0000, Mark Trumpold wrote: >> Linux kernel 3.3.1 with Qemu patch to enable kernel flushing: >> http://thread.gmane.org/gmane.linux.drivers.nbd.general/1108 > > Did you check that the kernel is sending NBD_FLUSH commands? You can > use tcpdump and then check the captured network traffic. > >> Usage example: >> 'qemu-nbd --cache=writeback -c /dev/nbd0 /images/my-qcow.img' >> 'mount /dev/nbd0 /my-mount-point' >> >> Everything does flush correctly when I first unmount and then disconnect the device; however, in my case I am not able to unmount things before snapshotting. >> >> I tried several approaches externally to flush the device. For example: >> 'mount -o remount,ro /dev/nbd0' >> 'blockdev --flushbufs /dev/nbd0' > > Did you try plain old sync(1)? This could also work: dd if=/dev/zero of=dummy oflag=sync bs=512 count=1 > 1. Add a signal handler (like SIGHUP or SIGUSR1) to qemu-nbd which > flushes all exports. That would be a useful addition anyway. Paolo