diff options
| author | Nick Piggin <npiggin@suse.de> | 2010-03-15 11:05:29 -0400 |
|---|---|---|
| committer | Chris Mason <chris.mason@oracle.com> | 2010-03-15 11:05:57 -0400 |
| commit | ef5780c018ed169a77b623f87c4ba52faa8ad0fe (patch) | |
| tree | 4c93fbaa09ed4b2f4b9713ae462646d149be8550 | |
| parent | 5ff7ba3a797a8ffd5299b8477df2dca3c3ebd34e (diff) | |
Btrfs: fix gfp flags masking in the compression code
GFP_FS must be masked out, NOFS can't be or'd in.
Signed-off-by: Chris Mason <chris.mason@oracle.com>
| -rw-r--r-- | fs/btrfs/compression.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/compression.c b/fs/btrfs/compression.c index a11a32058b50..28b92a7218ab 100644 --- a/fs/btrfs/compression.c +++ b/fs/btrfs/compression.c | |||
| @@ -478,7 +478,7 @@ static noinline int add_ra_bio_pages(struct inode *inode, | |||
| 478 | goto next; | 478 | goto next; |
| 479 | } | 479 | } |
| 480 | 480 | ||
| 481 | page = alloc_page(mapping_gfp_mask(mapping) | GFP_NOFS); | 481 | page = alloc_page(mapping_gfp_mask(mapping) & ~__GFP_FS); |
| 482 | if (!page) | 482 | if (!page) |
| 483 | break; | 483 | break; |
| 484 | 484 | ||
