diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2005-10-21 03:22:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-28 08:16:51 -0700 |
commit | c4cdd038318863e912e9b992489f61497f98b442 (patch) | |
tree | 07ebd1d1d5d27be8adcca5b81991af077f6044f8 /fs | |
parent | b4e3ca1ab1ae9ae86134126dcdc88da1caaa32ca (diff) | |
download | linux-3.10-c4cdd038318863e912e9b992489f61497f98b442.tar.gz linux-3.10-c4cdd038318863e912e9b992489f61497f98b442.tar.bz2 linux-3.10-c4cdd038318863e912e9b992489f61497f98b442.zip |
[PATCH] gfp_t: reiserfs mapping_set_gfp_mask() use
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/reiserfs/xattr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/xattr.c b/fs/reiserfs/xattr.c index 87ac9dc8b38..72e12079867 100644 --- a/fs/reiserfs/xattr.c +++ b/fs/reiserfs/xattr.c @@ -453,7 +453,7 @@ static struct page *reiserfs_get_page(struct inode *dir, unsigned long n) struct page *page; /* We can deadlock if we try to free dentries, 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, (filler_t *) mapping->a_ops->readpage, NULL); if (!IS_ERR(page)) { |