diff options
author | David Sterba <dsterba@suse.com> | 2016-04-27 00:54:39 +0300 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2016-04-29 12:01:47 +0300 |
commit | 91166212e0ffbb4db50aa8a238548e967008b33d (patch) | |
tree | 39ddd7b777e11e65b514ea6e991d317c348179f4 /fs/btrfs/relocation.c | |
parent | ceeb0ae7bf42a3deaaaee981d2da02e5d3ad2b0f (diff) | |
download | linux-91166212e0ffbb4db50aa8a238548e967008b33d.tar.xz |
btrfs: sink gfp parameter to clear_extent_bits
Callers pass GFP_NOFS and GFP_KERNEL. No need to pass the flags around.
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/relocation.c')
-rw-r--r-- | fs/btrfs/relocation.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/relocation.c b/fs/btrfs/relocation.c index 78cbfb530de6..bd5ea1a8a9f1 100644 --- a/fs/btrfs/relocation.c +++ b/fs/btrfs/relocation.c @@ -4059,8 +4059,7 @@ restart: } btrfs_release_path(path); - clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY, - GFP_NOFS); + clear_extent_bits(&rc->processed_blocks, 0, (u64)-1, EXTENT_DIRTY); if (trans) { btrfs_end_transaction_throttle(trans, rc->extent_root); |