Patch "NFSv4.2: Fixup CLONE dest file size for zero-length count" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    NFSv4.2: Fixup CLONE dest file size for zero-length count

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     nfsv4.2-fixup-clone-dest-file-size-for-zero-length-c.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 8e7a08a7683e427ce7bcb7dcb5ed47fc78b442b9
Author: Benjamin Coddington <bcodding@xxxxxxxxxx>
Date:   Thu Oct 13 11:58:01 2022 -0400

    NFSv4.2: Fixup CLONE dest file size for zero-length count
    
    [ Upstream commit 038efb6348ce96228f6828354cb809c22a661681 ]
    
    When holding a delegation, the NFS client optimizes away setting the
    attributes of a file from the GETATTR in the compound after CLONE, and for
    a zero-length CLONE we will end up setting the inode's size to zero in
    nfs42_copy_dest_done().  Handle this case by computing the resulting count
    from the server's reported size after CLONE's GETATTR.
    
    Suggested-by: Trond Myklebust <trond.myklebust@xxxxxxxxxxxxxxx>
    Signed-off-by: Benjamin Coddington <bcodding@xxxxxxxxxx>
    Fixes: 94d202d5ca39 ("NFSv42: Copy offload should update the file size when appropriate")
    Signed-off-by: Anna Schumaker <Anna.Schumaker@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/nfs/nfs42proc.c b/fs/nfs/nfs42proc.c
index 6dab9e408372..21c9e97c3ba3 100644
--- a/fs/nfs/nfs42proc.c
+++ b/fs/nfs/nfs42proc.c
@@ -1093,6 +1093,9 @@ static int _nfs42_proc_clone(struct rpc_message *msg, struct file *src_f,
 				&args.seq_args, &res.seq_res, 0);
 	trace_nfs4_clone(src_inode, dst_inode, &args, status);
 	if (status == 0) {
+		/* a zero-length count means clone to EOF in src */
+		if (count == 0 && res.dst_fattr->valid & NFS_ATTR_FATTR_SIZE)
+			count = nfs_size_to_loff_t(res.dst_fattr->size) - dst_offset;
 		nfs42_copy_dest_done(dst_inode, dst_offset, count);
 		status = nfs_post_op_update_inode(dst_inode, res.dst_fattr);
 	}



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux