From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dave Chinner Subject: Re: [PATCH, 3.7-rc7, RESEND] fs: revert commit bbdd6808 to fallocate UAPI Date: Tue, 27 Nov 2012 08:12:00 +1100 Message-ID: <20121126211200.GI6434@dastard> References: <1353366267-15629-1-git-send-email-david@fromorbit.com> <20121126002814.GM32450@dastard> <20121126025520.GC22858@thunk.org> <20121126115345.19977e46@pyramind.ukuu.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Theodore Ts'o , torvalds@linux-foundation.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org To: Alan Cox Return-path: Content-Disposition: inline In-Reply-To: <20121126115345.19977e46@pyramind.ukuu.org.uk> Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Mon, Nov 26, 2012 at 11:53:45AM +0000, Alan Cox wrote: > > It's not like there is any shortage of flag bits, so what's the harm > > of reserving the bit? > > Why not just reserve a small group of bits for fs private use in that > case - for any fs. Flawed - one bit, one function for all filesystems, otherwise the same binary could behave very differently on different filesystems. Besides, we already have a mechanism for adding filesystem specific interfaces. It's called an ioctl. That's what it's there for - a free-form extensible interface that can be wholly defined and contained in the out-of-tree patch. Most filesystems implement ioctls for their own specific functionality, including for one-off preallocation semantics (e.g. XFS_IOC_ZERO_RANGE). There is no reason why ext4 can't do the same thing and we can drop the whole issue of having to modify a syscall API with magic, undocumented flag bits with unpredictable behaviour.... ext4 is not a special snowflake that allows developers to bend rules whenever they want. If the ext4 developers want to support out of tree functionality for their filesystem, then they can do it within their filesystem via ioctls like everyone else does. Cheers, Dave. -- Dave Chinner david@fromorbit.com