aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/extent_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/btrfs/extent_io.h')
-rw-r--r--fs/btrfs/extent_io.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/btrfs/extent_io.h b/fs/btrfs/extent_io.h
index b7c258c9fa2d..9e987ee03361 100644
--- a/fs/btrfs/extent_io.h
+++ b/fs/btrfs/extent_io.h
@@ -279,11 +279,11 @@ static inline int set_extent_dirty(struct extent_io_tree *tree, u64 start,
279} 279}
280 280
281static inline int clear_extent_dirty(struct extent_io_tree *tree, u64 start, 281static inline int clear_extent_dirty(struct extent_io_tree *tree, u64 start,
282 u64 end, gfp_t mask) 282 u64 end)
283{ 283{
284 return clear_extent_bit(tree, start, end, 284 return clear_extent_bit(tree, start, end,
285 EXTENT_DIRTY | EXTENT_DELALLOC | 285 EXTENT_DIRTY | EXTENT_DELALLOC |
286 EXTENT_DO_ACCOUNTING, 0, 0, NULL, mask); 286 EXTENT_DO_ACCOUNTING, 0, 0, NULL, GFP_NOFS);
287} 287}
288 288
289int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, 289int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,