btrfs: fix wrong allocating flag when reading page
authorItaru Kitayama <kitayama@cl.bb4u.ne.jp>
Mon, 25 Apr 2011 23:43:51 +0000 (19:43 -0400)
committerChris Mason <chris.mason@oracle.com>
Mon, 25 Apr 2011 23:43:51 +0000 (19:43 -0400)
the space cache use extent_readpages() to read free space information,
so we can not use GFP_KERNEL flag to allocate memory, or it may lead
to deadlock.

Signed-off-by: Itaru Kitayama <kitayama@cl.bb4u.ne.jp>
Signed-off-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
fs/btrfs/extent_io.c

index 5ae0bffaa4d8e2c9a4f10666a0ddea8cb9a35fe1..0d1196d6f786119782e38ee35d9c7c37069dc4cd 100644 (file)
@@ -2681,7 +2681,7 @@ int extent_readpages(struct extent_io_tree *tree,
                prefetchw(&page->flags);
                list_del(&page->lru);
                if (!add_to_page_cache_lru(page, mapping,
-                                       page->index, GFP_KERNEL)) {
+                                       page->index, GFP_NOFS)) {
                        __extent_read_full_page(tree, page, get_extent,
                                                &bio, 0, &bio_flags);
                }
This page took 0.027632 seconds and 5 git commands to generate.