On Fri, Jan 27, 2017 at 6:20 PM, Amir Goldstein <amir73il@xxxxxxxxx> wrote: > On Fri, Jan 27, 2017 at 1:50 PM, Amir Goldstein <amir73il@xxxxxxxxx> wrote: >> On Fri, Jan 27, 2017 at 1:09 PM, Miklos Szeredi <miklos@xxxxxxxxxx> wrote: >>> On Mon, Jan 23, 2017 at 8:43 PM, Amir Goldstein <amir73il@xxxxxxxxx> wrote: >>>> Before calling write f_ops, call file_start_write() instead >>>> of sb_start_write(). >>>> >>>> This ensures freeze protection for both overlay and upper fs >>>> when file is open from an overlayfs mount. >>>> >>>> Replace {sb,file}_start_write() for {copy,clone}_file_range() and >>>> for fallocate(). >>>> Oh boy! there is more. IIUC, file_start_write() is in order were write to regular file should get freeze protection and write to special file should not. So after eliminating dedup_range from this patch, from the 3 remaining ops: fallocate(), clone_file_range() and copy_file_range() all have nice stories. fallocate() can operate or regular file directory and blockdev. blockdev does not call for freeze protection, if we use file_start_write() fs that supports fallocate on directory (anybody?) will not get freeze protection. clone_file_range() operates only on regular file, so file_start_write() seems in order. especially if clone_range() is ever extended to operate on blockdev, which does not sound such a far fetched idea. copy_file_range() looks like it was meant to operate only on regular files, but neither syscall nor vfs helper actually check that. Jan, Would it make sense to add directory to file types for which file_start_write() gets freeze protection to cover the fallocate() case correctly? Christoph, To your understanding, is it correct to add the IS_REG check in vfs_copy_file_range()? Michael, man page for copy_file_range(2) does not explicitly mention regular files but it seems implied and also EINVAL does not mention the case of fd is not a regular file, which is how xfs (and probably other fs too) respond. -- 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