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

Commit c855ff37 authored by David Howells's avatar David Howells Committed by Linus Torvalds
Browse files

Fix a bad error case handling in read_cache_page_async()



Commit 6fe6900e introduced a nasty bug
in read_cache_page_async().

It added a "mark_page_accessed(page)" at the final return path in
read_cache_page_async().  But in error cases, 'page' holds the error
code, and you can't mark it accessed.

[ and Glauber de Oliveira Costa points out that we can use a return
  instead of adding more goto's ]

Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
Acked-by: default avatarNick Piggin <npiggin@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent aabded9c
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1784,7 +1784,7 @@ struct page *read_cache_page_async(struct address_space *mapping,
retry:
	page = __read_cache_page(mapping, index, filler, data);
	if (IS_ERR(page))
		goto out;
		return page;
	mark_page_accessed(page);
	if (PageUptodate(page))
		goto out;
@@ -1802,7 +1802,7 @@ struct page *read_cache_page_async(struct address_space *mapping,
	err = filler(data, page);
	if (err < 0) {
		page_cache_release(page);
		page = ERR_PTR(err);
		return ERR_PTR(err);
	}
out:
	mark_page_accessed(page);