]> git.baikalelectronics.ru Git - kernel.git/commit
afs: Fix afs_write_end() to handle short writes
authorDavid Howells <dhowells@redhat.com>
Mon, 14 Jun 2021 13:13:41 +0000 (14:13 +0100)
committerDavid Howells <dhowells@redhat.com>
Mon, 21 Jun 2021 20:23:36 +0000 (21:23 +0100)
commit53ebd050a1637e77f89a35f54c20b1728c341b33
tree9d12875d5d73cb8cfbc86c773e35e5fa150a7ff4
parentfe8b090db1728e313ba3d15b89c5676907859a29
afs: Fix afs_write_end() to handle short writes

Fix afs_write_end() to correctly handle a short copy into the intended
write region of the page.  Two things are necessary:

 (1) If the page is not up to date, then we should just return 0
     (ie. indicating a zero-length copy).  The loop in
     generic_perform_write() will go around again, possibly breaking up the
     iterator into discrete chunks[1].

     This is analogous to commit 98a84e66e5825d39dbf997bb41ab8deb13910ea2
     for ceph.

 (2) The page should not have been set uptodate if it wasn't completely set
     up by netfs_write_begin() (this will be fixed in the next patch), so
     we need to set uptodate here in such a case.

Also remove the assertion that was checking that the page was set uptodate
since it's now set uptodate if it wasn't already a few lines above.  The
assertion was from when uptodate was set elsewhere.

Changes:
v3: Remove the handling of len exceeding the end of the page.

Fixes: 32c27710f15a ("afs: Use the netfs_write_begin() helper")
Reported-by: Jeff Layton <jlayton@kernel.org>
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Jeff Layton <jlayton@kernel.org>
Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>
cc: Al Viro <viro@zeniv.linux.org.uk>
cc: linux-afs@lists.infradead.org
Link: https://lore.kernel.org/r/YMwVp268KTzTf8cN@zeniv-ca.linux.org.uk/
Link: https://lore.kernel.org/r/162367682522.460125.5652091227576721609.stgit@warthog.procyon.org.uk/
Link: https://lore.kernel.org/r/162391825688.1173366.3437507255136307904.stgit@warthog.procyon.org.uk/
fs/afs/write.c