diff options
author | David Sterba <dsterba@suse.com> | 2016-04-26 17:54:39 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-04-29 05:01:47 -0400 |
commit | af6f8f604d44e05f98ed45a69830547ed133adf8 (patch) | |
tree | d27887441a73a3e041f636c43e8f7ede42fe7c21 /fs/btrfs/extent_io.h | |
parent | f734c44a1bfffd762f6f5829cb41224d267b80d9 (diff) |
btrfs: sink gfp parameter to clear_extent_dirty
Callers pass GFP_NOFS. No need to pass the flags around.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/extent_io.h')
-rw-r--r-- | fs/btrfs/extent_io.h | 4 |
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 | ||
281 | static inline int clear_extent_dirty(struct extent_io_tree *tree, u64 start, | 281 | static 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 | ||
289 | int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, | 289 | int convert_extent_bit(struct extent_io_tree *tree, u64 start, u64 end, |