Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756897AbcCDL0M (ORCPT ); Fri, 4 Mar 2016 06:26:12 -0500 Received: from mail-wm0-f45.google.com ([74.125.82.45]:37505 "EHLO mail-wm0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756249AbcCDL0H (ORCPT ); Fri, 4 Mar 2016 06:26:07 -0500 Date: Fri, 4 Mar 2016 14:26:03 +0300 From: "Kirill A. Shutemov" To: linux-fsdevel@vger.kernel.org, linux-api@vger.kernel.org Cc: "Kirill A. Shutemov" , Hugh Dickins , Andrea Arcangeli , Andrew Morton , Dave Hansen , Vlastimil Babka , Christoph Lameter , Naoya Horiguchi , Jerome Marchand , Yang Shi , Sasha Levin , linux-kernel@vger.kernel.org, linux-mm@kvack.org Subject: THP-enabled filesystem vs. FALLOC_FL_PUNCH_HOLE Message-ID: <20160304112603.GA9790@node.shutemov.name> References: <1457023939-98083-1-git-send-email-kirill.shutemov@linux.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1457023939-98083-1-git-send-email-kirill.shutemov@linux.intel.com> User-Agent: Mutt/1.5.23.1 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 870 Lines: 22 On Thu, Mar 03, 2016 at 07:51:50PM +0300, Kirill A. Shutemov wrote: > Truncate and punch hole that only cover part of THP range is implemented > by zero out this part of THP. > > This have visible effect on fallocate(FALLOC_FL_PUNCH_HOLE) behaviour. > As we don't really create hole in this case, lseek(SEEK_HOLE) may have > inconsistent results depending what pages happened to be allocated. > Not sure if it should be considered ABI break or not. Looks like this shouldn't be a problem. man 2 fallocate: Within the specified range, partial filesystem blocks are zeroed, and whole filesystem blocks are removed from the file. After a successful call, subsequent reads from this range will return zeroes. It means we effectively have 2M filesystem block size. And I don't see any guarantee about subsequent lseek(SEEK_HOLE) beheviour. -- Kirill A. Shutemov