summaryrefslogtreecommitdiffstats
path: root/mm/filemap.c
diff options
context:
space:
mode:
authorMichal Hocko <mhocko@suse.cz>2015-06-24 19:58:06 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2015-06-24 20:49:44 -0400
commit6afdb859b71019143b8eecda02b8b29b03185055 (patch)
tree4b7700350fc54a4e531dfd9f9d63c02be75ab4d3 /mm/filemap.c
parent0f96ae2928a547b86678688042a9759edcc8285d (diff)
mm: do not ignore mapping_gfp_mask in page cache allocation paths
page_cache_read, do_generic_file_read, __generic_file_splice_read and __ntfs_grab_cache_pages currently ignore mapping_gfp_mask when calling add_to_page_cache_lru which might cause recursion into fs down in the direct reclaim path if the mapping really relies on GFP_NOFS semantic. This doesn't seem to be the case now because page_cache_read (page fault path) doesn't seem to suffer from the reclaim recursion issues and do_generic_file_read and __generic_file_splice_read also shouldn't be called under fs locks which would deadlock in the reclaim path. Anyway it is better to obey mapping gfp mask and prevent from later breakage. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Michal Hocko <mhocko@suse.cz> Cc: Dave Chinner <david@fromorbit.com> Cc: Neil Brown <neilb@suse.de> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Al Viro <viro@zeniv.linux.org.uk> Cc: Mel Gorman <mgorman@suse.de> Cc: Rik van Riel <riel@redhat.com> Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Anton Altaparmakov <anton@tuxera.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/filemap.c')
-rw-r--r--mm/filemap.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/mm/filemap.c b/mm/filemap.c
index 519af0045b1c..8d17ceea8dbe 100644
--- a/mm/filemap.c
+++ b/mm/filemap.c
@@ -1664,8 +1664,8 @@ no_cached_page:
1664 error = -ENOMEM; 1664 error = -ENOMEM;
1665 goto out; 1665 goto out;
1666 } 1666 }
1667 error = add_to_page_cache_lru(page, mapping, 1667 error = add_to_page_cache_lru(page, mapping, index,
1668 index, GFP_KERNEL); 1668 GFP_KERNEL & mapping_gfp_mask(mapping));
1669 if (error) { 1669 if (error) {
1670 page_cache_release(page); 1670 page_cache_release(page);
1671 if (error == -EEXIST) { 1671 if (error == -EEXIST) {
@@ -1766,7 +1766,8 @@ static int page_cache_read(struct file *file, pgoff_t offset)
1766 if (!page) 1766 if (!page)
1767 return -ENOMEM; 1767 return -ENOMEM;
1768 1768
1769 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL); 1769 ret = add_to_page_cache_lru(page, mapping, offset,
1770 GFP_KERNEL & mapping_gfp_mask(mapping));
1770 if (ret == 0) 1771 if (ret == 0)
1771 ret = mapping->a_ops->readpage(file, page); 1772 ret = mapping->a_ops->readpage(file, page);
1772 else if (ret == -EEXIST) 1773 else if (ret == -EEXIST)