]> www.infradead.org Git - nvme.git/commitdiff
cifs: Fix setting of zero_point after DIO write
authorDavid Howells <dhowells@redhat.com>
Fri, 19 Jul 2024 13:07:07 +0000 (14:07 +0100)
committerSteve French <stfrench@microsoft.com>
Fri, 19 Jul 2024 16:08:57 +0000 (11:08 -0500)
At the moment, at the end of a DIO write, cifs calls netfs_resize_file() to
adjust the size of the file if it needs it.  This will reduce the
zero_point (the point above which we assume a read will just return zeros)
if it's more than the new i_size, but won't increase it.

With DIO writes, however, we definitely want to increase it as we have
clobbered the local pagecache and then written some data that's not
available locally.

Fix cifs to make the zero_point above the end of a DIO or unbuffered write.

This fixes corruption seen occasionally with the generic/708 xfs-test.  In
that case, the read-back of some of the written data is being
short-circuited and replaced with zeroes.

Fixes: 3ee1a1fc3981 ("cifs: Cut over to using netfslib")
Cc: stable@vger.kernel.org
Reported-by: Steve French <sfrench@samba.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Paulo Alcantara (Red Hat) <pc@manguebit.com>
cc: Jeff Layton <jlayton@kernel.org>
cc: linux-cifs@vger.kernel.org
cc: netfs@lists.linux.dev
cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/smb/client/file.c

index 6178c6d8097d180fe0ecc2c2e0e5669e385688e9..72cc265bc471b0755008fabf9be8b60191e68525 100644 (file)
@@ -2358,13 +2358,18 @@ void cifs_write_subrequest_terminated(struct cifs_io_subrequest *wdata, ssize_t
                                      bool was_async)
 {
        struct netfs_io_request *wreq = wdata->rreq;
-       loff_t new_server_eof;
+       struct netfs_inode *ictx = netfs_inode(wreq->inode);
+       loff_t wrend;
 
        if (result > 0) {
-               new_server_eof = wdata->subreq.start + wdata->subreq.transferred + result;
-
-               if (new_server_eof > netfs_inode(wreq->inode)->remote_i_size)
-                       netfs_resize_file(netfs_inode(wreq->inode), new_server_eof, true);
+               wrend = wdata->subreq.start + wdata->subreq.transferred + result;
+
+               if (wrend > ictx->zero_point &&
+                   (wdata->rreq->origin == NETFS_UNBUFFERED_WRITE ||
+                    wdata->rreq->origin == NETFS_DIO_WRITE))
+                       ictx->zero_point = wrend;
+               if (wrend > ictx->remote_i_size)
+                       netfs_resize_file(ictx, wrend, true);
        }
 
        netfs_write_subrequest_terminated(&wdata->subreq, result, was_async);