aboutsummaryrefslogtreecommitdiffstats
path: root/mm/filemap.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/filemap.c')
-rw-r--r--mm/filemap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index 0ab0a3ea5721..14b4642279f1 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1753,7 +1753,7 @@ EXPORT_SYMBOL(generic_file_read_iter);
1753static int page_cache_read(struct file *file, pgoff_t offset) 1753static int page_cache_read(struct file *file, pgoff_t offset)
1754{ 1754{
1755 struct address_space *mapping = file->f_mapping; 1755 struct address_space *mapping = file->f_mapping;
1756 struct page *page; 1756 struct page *page;
1757 int ret; 1757 int ret;
1758 1758
1759 do { 1759 do {
@@ -1770,7 +1770,7 @@ static int page_cache_read(struct file *file, pgoff_t offset)
1770 page_cache_release(page); 1770 page_cache_release(page);
1771 1771
1772 } while (ret == AOP_TRUNCATED_PAGE); 1772 } while (ret == AOP_TRUNCATED_PAGE);
1773 1773
1774 return ret; 1774 return ret;
1775} 1775}
1776 1776