On Mon, Jul 24, 2023 at 06:38:38PM +0200, Christoph Hellwig wrote: > > > Change generic_copy_file_checks to use ->f_mapping->host for both inode_in > > > and inode_out. Allow block device in generic_file_rw_checks. > > > > Why? copy_file_range() is for copying a range of a regular file to > > another regular file - why do we want to support block devices for > > somethign that is clearly intended for copying data files? > > Nitesh has a series to add block layer copy offload, Yes, I know. > and uses that to > implement copy_file_range on block device nodes, Yes, I know. > which seems like a > sensible use case for copy_file_range on block device nodes, Except for the fact it's documented and implemented as for copying data ranges of *regular files*. Block devices are not regular files... There is nothing in this patchset that explains why this syscall feature creep is desired, why it is the best solution, what benefits it provides, how this new feature is discoverable, etc. It also does not mention that user facing documentation needs to change, etc > and that > series was hiding a change like this deep down in a "block" title > patch, I know. > so I asked for it to be split out. It still really should > be in that series, as there's very little point in changing this > check without an actual implementation making use of it. And that's because it's the wrong way to be implementing block device copy offloads. That patchset originally added ioctls to issue block copy offloads to block devices from userspace - that's the way block device specific functionality is generally added and I have no problems with that. However, when I originally suggested that the generic copy_file_range() fallback path that filesystems use (i.e. generic_copy_file_range()) should try to use the block copy offload path before falling back to using splice to copy the data through host memory, things went off the rails. That has turned into "copy_file_range() should support block devices directly" and the ioctl interfaces were removed. The block copy offload patchset still doesn't have a generic path for filesystems to use this block copy offload. This is *not* what I originally suggested, and provides none of the benefit to users that would come from what I originally suggested. Block device copy offload is largely useless to users if file data copies within a filesystem don't make use of it - very few applications ever copy data directly to/from block devices directly... So from a system level point of view, expanding copy_file_range() to do direct block device data copies doesn't make any sense. Expanding the existing copy_file_range() generic fallback to attempt block copy offload (i.e. hardware accel) makes much more sense, and will make copy_file_range() much more useful to users on filesystem like ext4 that don't have reflink support... So, yeah, this patch, regardless of how it is presented, needs to a whole lot more justification that "we want to do this" in the commit message... -Dave. -- Dave Chinner david@xxxxxxxxxxxxx