aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph
diff options
context:
space:
mode:
authorJeff Layton <jlayton@kernel.org>2021-06-14 07:15:38 -0400
committerIlya Dryomov <idryomov@gmail.com>2021-09-02 22:49:16 +0200
commitce3a8732ae0d43a6d14aa24624c0f12b3e6281b9 (patch)
tree60dd95e43c1d6c7197b1cc291ffa32791828ef0f /fs/ceph
parentceph: fix memory leak on decode error in ceph_handle_caps (diff)
downloadlinux-dev-ce3a8732ae0d43a6d14aa24624c0f12b3e6281b9.tar.xz
linux-dev-ce3a8732ae0d43a6d14aa24624c0f12b3e6281b9.zip
ceph: fix comment about short copies in ceph_write_end
Signed-off-by: Jeff Layton <jlayton@kernel.org> Reviewed-by: Ilya Dryomov <idryomov@gmail.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r--fs/ceph/addr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/addr.c b/fs/ceph/addr.c
index a1e2813731d1..6d3f74d46e5b 100644
--- a/fs/ceph/addr.c
+++ b/fs/ceph/addr.c
@@ -1281,8 +1281,8 @@ static int ceph_write_end(struct file *file, struct address_space *mapping,
dout("write_end file %p inode %p page %p %d~%d (%d)\n", file,
inode, page, (int)pos, (int)copied, (int)len);
- /* zero the stale part of the page if we did a short copy */
if (!PageUptodate(page)) {
+ /* just return that nothing was copied on a short copy */
if (copied < len) {
copied = 0;
goto out;