summaryrefslogtreecommitdiff
path: root/fs/btrfs/extent_io.h
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-10-31 17:02:39 +0100
committerDavid Sterba <dsterba@suse.com>2018-01-22 16:08:12 +0100
commitf08dc36f781af622be5398ac3ab2ec9c3749889d (patch)
tree44aaef7ef42e6c5c7bf24c61c931fe15dbf79ea3 /fs/btrfs/extent_io.h
parentae0f162534e98afccc7d055cfaa3d3e920a928f0 (diff)
btrfs: sink gfp parameter to clear_extent_uptodate
There's only one callsite with GFP_NOFS. Signed-off-by: David Sterba <dsterba@suse.com>
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 b679309545d8..9f6a5133ce8a 100644
--- a/fs/btrfs/extent_io.h
+++ b/fs/btrfs/extent_io.h
@@ -342,10 +342,10 @@ static inline int set_extent_bits(struct extent_io_tree *tree, u64 start,
}
static inline int clear_extent_uptodate(struct extent_io_tree *tree, u64 start,
- u64 end, struct extent_state **cached_state, gfp_t mask)
+ u64 end, struct extent_state **cached_state)
{
return __clear_extent_bit(tree, start, end, EXTENT_UPTODATE, 0, 0,
- cached_state, mask, NULL);
+ cached_state, GFP_NOFS, NULL);
}
static inline int set_extent_dirty(struct extent_io_tree *tree, u64 start,