From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Maxim V. Patlasov" Subject: Re: [RFC PATCH v2 15/21] loop: use aio to perform io on the underlying file Date: Fri, 20 Apr 2012 20:14:28 +0400 Message-ID: <4F918B64.5030602@parallels.com> References: <1333122228-13633-1-git-send-email-dave.kleikamp@oracle.com> <1333122228-13633-16-git-send-email-dave.kleikamp@oracle.com> <4F917751.9040600@parallels.com> <4F917C2F.4020805@oracle.com> <4F91862F.2030502@zabbo.net> <4F918758.8020001@oracle.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Cc: Zach Brown , Jeff Moyer , "linux-fsdevel@vger.kernel.org" , "linux-kernel@vger.kernel.org" To: Dave Kleikamp Return-path: Received: from relay.parallels.com ([195.214.232.42]:42586 "EHLO relay.parallels.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752620Ab2DTQOW (ORCPT ); Fri, 20 Apr 2012 12:14:22 -0400 In-Reply-To: <4F918758.8020001@oracle.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On 04/20/2012 07:57 PM, Dave Kleikamp wrote: >> So yeah, I'd agree that the loop code should be reworked a bit so that >> both the filebacked and aio methods call vfs_sync() when they see >> REQ_FLUSH. > It's an easy fix. I don't anticipate that it will hurt performance too > badly. Two questions: 1. Could we use fdatasync there? (otherwise it can hurt performance very badly) 2. vfs_sync() is synchronous. loop_thread() will be blocked till it's completed. Would it be better to perform vfs_sync in another thread (to allow other bio-s in loop queue proceed)? Also, if there are more than one REQ_FLUSH bio in lo->lo_bio_list, we could call vfs_sync() only once. Make sense? Thanks, Maxim