From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53035) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YHD5P-0004Rg-J0 for qemu-devel@nongnu.org; Fri, 30 Jan 2015 10:02:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YHD5L-0005nT-NL for qemu-devel@nongnu.org; Fri, 30 Jan 2015 10:02:19 -0500 Received: from mx1.redhat.com ([209.132.183.28]:38632) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YHD5L-0005nE-H0 for qemu-devel@nongnu.org; Fri, 30 Jan 2015 10:02:15 -0500 Message-ID: <54CB9CF0.5010600@redhat.com> Date: Fri, 30 Jan 2015 10:02:08 -0500 From: Max Reitz MIME-Version: 1.0 References: <1422607337-25335-1-git-send-email-den@openvz.org> <1422607337-25335-7-git-send-email-den@openvz.org> In-Reply-To: <1422607337-25335-7-git-send-email-den@openvz.org> Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 6/7] block: use fallocate(FALLOC_FL_PUNCH_HOLE) & fallocate(0) to write zeroes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Denis V. Lunev" Cc: Kevin Wolf , Fam Zheng , Peter Lieven , qemu-devel@nongnu.org, Stefan Hajnoczi On 2015-01-30 at 03:42, Denis V. Lunev wrote: > This sequence works efficiently if FALLOC_FL_ZERO_RANGE is not supported. > Unfortunately, FALLOC_FL_ZERO_RANGE is supported on really modern systems > and only for a couple of filesystems. FALLOC_FL_PUNCH_HOLE is much more > mature. > > The sequence of 2 operations FALLOC_FL_PUNCH_HOLE and 0 is necessary due > to the following reasons: > - FALLOC_FL_PUNCH_HOLE creates a hole in the file, the file becomes > sparse. In order to retain original functionality we must allocate > disk space afterwards. This is done using fallocate(0) call > - fallocate(0) without preceeding FALLOC_FL_PUNCH_HOLE will do nothing > if called above already allocated areas of the file, i.e. the content > will not be zeroed > > This should increase the performance a bit for not-so-modern kernels. > > Signed-off-by: Denis V. Lunev > CC: Max Reitz > CC: Kevin Wolf > CC: Stefan Hajnoczi > CC: Peter Lieven > CC: Fam Zheng > --- > block/raw-posix.c | 19 +++++++++++++++++++ > 1 file changed, 19 insertions(+) Reviewed-by: Max Reitz