Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56ae414e authored by Alexander Levin's avatar Alexander Levin Committed by Linus Torvalds
Browse files

9p: set page uptodate when required in write_end()



Commit 77469c3f prevented setting the page as uptodate when we wrote
the right amount of data, fix that.

Fixes: 77469c3f ("9p: saner ->write_end() on failing copy into non-uptodate page")
Reviewed-by: default avatarJan Kara <jack@suse.com>
Signed-off-by: default avatarAlexander Levin <alexander.levin@verizon.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent a0db2890
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -310,9 +310,13 @@ static int v9fs_write_end(struct file *filp, struct address_space *mapping,

	p9_debug(P9_DEBUG_VFS, "filp %p, mapping %p\n", filp, mapping);

	if (unlikely(copied < len && !PageUptodate(page))) {
	if (!PageUptodate(page)) {
		if (unlikely(copied < len)) {
			copied = 0;
			goto out;
		} else if (len == PAGE_SIZE) {
			SetPageUptodate(page);
		}
	}
	/*
	 * No need to use i_size_read() here, the i_size