diff options
author | Michal Hocko <mhocko@suse.com> | 2015-11-06 19:28:49 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-11-06 20:50:42 -0500 |
commit | c62d25556be6c965dc14288e796a576e8e39a7e9 (patch) | |
tree | d82b41091f4dd8d378e2e2c841c90093da1485e0 /fs/ext4 | |
parent | 89903327607232de32f05100cf03f9390b858e0b (diff) |
mm, fs: introduce mapping_gfp_constraint()
There are many places which use mapping_gfp_mask to restrict a more
generic gfp mask which would be used for allocations which are not
directly related to the page cache but they are performed in the same
context.
Let's introduce a helper function which makes the restriction explicit and
easier to track. This patch doesn't introduce any functional changes.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: Michal Hocko <mhocko@suse.com>
Suggested-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/inode.c | 2 | ||||
-rw-r--r-- | fs/ext4/readpage.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c index 612fbcf76b5c..60aaecd5598b 100644 --- a/fs/ext4/inode.c +++ b/fs/ext4/inode.c | |||
@@ -3344,7 +3344,7 @@ static int __ext4_block_zero_page_range(handle_t *handle, | |||
3344 | int err = 0; | 3344 | int err = 0; |
3345 | 3345 | ||
3346 | page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, | 3346 | page = find_or_create_page(mapping, from >> PAGE_CACHE_SHIFT, |
3347 | mapping_gfp_mask(mapping) & ~__GFP_FS); | 3347 | mapping_gfp_constraint(mapping, ~__GFP_FS)); |
3348 | if (!page) | 3348 | if (!page) |
3349 | return -ENOMEM; | 3349 | return -ENOMEM; |
3350 | 3350 | ||
diff --git a/fs/ext4/readpage.c b/fs/ext4/readpage.c index 560af0437704..1061611ae14d 100644 --- a/fs/ext4/readpage.c +++ b/fs/ext4/readpage.c | |||
@@ -166,7 +166,7 @@ int ext4_mpage_readpages(struct address_space *mapping, | |||
166 | page = list_entry(pages->prev, struct page, lru); | 166 | page = list_entry(pages->prev, struct page, lru); |
167 | list_del(&page->lru); | 167 | list_del(&page->lru); |
168 | if (add_to_page_cache_lru(page, mapping, page->index, | 168 | if (add_to_page_cache_lru(page, mapping, page->index, |
169 | GFP_KERNEL & mapping_gfp_mask(mapping))) | 169 | mapping_gfp_constraint(mapping, GFP_KERNEL))) |
170 | goto next_page; | 170 | goto next_page; |
171 | } | 171 | } |
172 | 172 | ||