From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0a-00082601.pphosted.com ([67.231.145.42]:16239 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751764AbbDTTtf (ORCPT ); Mon, 20 Apr 2015 15:49:35 -0400 Message-ID: <55355816.4030609@fb.com> Date: Mon, 20 Apr 2015 15:48:38 -0400 From: Chris Mason MIME-Version: 1.0 To: NeilBrown , David Howells , Al Viro , Josef Bacik , David Sterba CC: , Dave Chinner , , Christoph Hellwig , , Subject: Re: [PATCH 3/3] btrfs: set FS_SUPPORTS_SEEK_HOLE flag. References: <20150420052558.26554.97143.stgit@notabene.brown> <20150420052752.26554.13596.stgit@notabene.brown> In-Reply-To: <20150420052752.26554.13596.stgit@notabene.brown> Content-Type: text/plain; charset="utf-8" Sender: linux-btrfs-owner@vger.kernel.org List-ID: On 04/20/2015 01:27 AM, NeilBrown wrote: > This allows fscache to cachefiles in a btrfs filesystem. Thanks for working on this Neil. Signed-off-by: Chris Mason -chris > > Signed-off-by: NeilBrown > --- > fs/btrfs/super.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c > index 05fef198ff94..d3c5d2b40f8e 100644 > --- a/fs/btrfs/super.c > +++ b/fs/btrfs/super.c > @@ -1904,7 +1904,8 @@ static struct file_system_type btrfs_fs_type = { > .name = "btrfs", > .mount = btrfs_mount, > .kill_sb = btrfs_kill_super, > - .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA, > + .fs_flags = FS_REQUIRES_DEV | FS_BINARY_MOUNTDATA | > + FS_SUPPORTS_SEEK_HOLE, > }; > MODULE_ALIAS_FS("btrfs"); > > >