nfsd: Clone should commit src file metadata too
authorTrond Myklebust <trondmy@gmail.com>
Wed, 18 Dec 2019 19:57:23 +0000 (14:57 -0500)
committerJ. Bruce Fields <bfields@redhat.com>
Thu, 19 Dec 2019 22:46:08 +0000 (17:46 -0500)
vfs_clone_file_range() can modify the metadata on the source file too,
so we need to commit that to stable storage as well.

Reported-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Acked-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/vfs.c

index f0bca0e87d0c4f7df43871daa851c4af75dd55b0..82cf80dde5c710532c87ab907d96567abac2e1d4 100644 (file)
@@ -280,19 +280,25 @@ out:
  * Commit metadata changes to stable storage.
  */
 static int
-commit_metadata(struct svc_fh *fhp)
+commit_inode_metadata(struct inode *inode)
 {
-       struct inode *inode = d_inode(fhp->fh_dentry);
        const struct export_operations *export_ops = inode->i_sb->s_export_op;
 
-       if (!EX_ISSYNC(fhp->fh_export))
-               return 0;
-
        if (export_ops->commit_metadata)
                return export_ops->commit_metadata(inode);
        return sync_inode_metadata(inode, 1);
 }
 
+static int
+commit_metadata(struct svc_fh *fhp)
+{
+       struct inode *inode = d_inode(fhp->fh_dentry);
+
+       if (!EX_ISSYNC(fhp->fh_export))
+               return 0;
+       return commit_inode_metadata(inode);
+}
+
 /*
  * Go over the attributes and take care of the small differences between
  * NFS semantics and what Linux expects.
@@ -537,6 +543,9 @@ __be32 nfsd4_clone_file_range(struct file *src, u64 src_pos, struct file *dst,
        if (sync) {
                loff_t dst_end = count ? dst_pos + count - 1 : LLONG_MAX;
                int status = vfs_fsync_range(dst, dst_pos, dst_end, 0);
+
+               if (!status)
+                       status = commit_inode_metadata(file_inode(src));
                if (status < 0)
                        return nfserrno(status);
        }