ext2: Remove GFP_NOFS use in ext2_xattr_cache_insert()
[linux-2.6-microblaze.git] / fs / ext2 / xattr.c
index e849241..c885dcc 100644 (file)
@@ -874,7 +874,7 @@ ext2_xattr_cache_insert(struct mb_cache *cache, struct buffer_head *bh)
        __u32 hash = le32_to_cpu(HDR(bh)->h_hash);
        int error;
 
-       error = mb_cache_entry_create(cache, GFP_NOFS, hash, bh->b_blocknr,
+       error = mb_cache_entry_create(cache, GFP_KERNEL, hash, bh->b_blocknr,
                                      true);
        if (error) {
                if (error == -EBUSY) {