On Fri, Apr 10, 2015 at 10:42:21AM +1000, NeilBrown wrote: > On Fri, 10 Apr 2015 09:52:34 +1000 Dave Chinner <david@xxxxxxxxxxxxx> wrote: > > > On Thu, Apr 09, 2015 at 10:23:08AM +0100, David Howells wrote: > > > NeilBrown <neilb@xxxxxxx> wrote: > > > > > > > Is there a better way? Could a better way be created? Maybe > > > > SEEK_DATA_RELIABLE ?? > > > > > > fiemap() maybe? > > > > fiemap is not reliable for mapping holes - it returns extent info, > > not whether there is data in a range. i.e. there can be data over a > > hole (e.g. delayed allocation) and fiemap will return it as a hole. > > cp made this mistake back when fiemap was first introduced, > > resulting in corrupt file copies. > > I assumed from the doco that FIEMAP_EXTENT_DELALLOC would get returned in > this case. I guess not? FIEMAP is advisory and implementing features in it are optional. It's also not guaranteed to be an accurate representation of the layout of the file because it can change even before hte FIEMAP ioctl returns to userspace. it's also a representation of the physical layout of the data in the file, but it does not need to be coherent with the current data in the file. i.e. FIEMAP is not required to report the current state of data in the files to the caller, just the working physical layout sitting in memory... > > SEEK_HOLE/SEEK_DATA is what you want, as they are page cache > > coherent, not extent based operations. And, really if you need it to > > really be able to find real holes, then a superblock flag might be a > > better way of marking filesystems with the required capability. > > btrfs seems to use the same underlying functionality for both fiemap and > SEEK_HOLE/SEEK_DATA... That's just an internal implementation detail - it does not define the behaviour and constraints of the information FIEMAP or SEEK_HOLE/SEEK_DATA APIs are supposed to provide. Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html