Commit c4cdd038 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] gfp_t: reiserfs mapping_set_gfp_mask() use

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b4e3ca1a
...@@ -453,7 +453,7 @@ static struct page *reiserfs_get_page(struct inode *dir, unsigned long n) ...@@ -453,7 +453,7 @@ static struct page *reiserfs_get_page(struct inode *dir, unsigned long n)
struct page *page; struct page *page;
/* We can deadlock if we try to free dentries, /* We can deadlock if we try to free dentries,
and an unlink/rmdir has just occured - GFP_NOFS avoids this */ and an unlink/rmdir has just occured - GFP_NOFS avoids this */
mapping->flags = (mapping->flags & ~__GFP_BITS_MASK) | GFP_NOFS; mapping_set_gfp_mask(mapping, GFP_NOFS);
page = read_cache_page(mapping, n, page = read_cache_page(mapping, n,
(filler_t *) mapping->a_ops->readpage, NULL); (filler_t *) mapping->a_ops->readpage, NULL);
if (!IS_ERR(page)) { if (!IS_ERR(page)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment