mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-06 06:35:12 +00:00
btrfs: sink gfp parameter to clear_record_extent_bits
Callers pass GFP_NOFS. No need to pass the flags around. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
91166212e0
commit
f734c44a1b
3 changed files with 5 additions and 8 deletions
|
@ -1308,8 +1308,7 @@ int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
}
|
}
|
||||||
|
|
||||||
int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
|
int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
unsigned bits, gfp_t mask,
|
unsigned bits, struct extent_changeset *changeset)
|
||||||
struct extent_changeset *changeset)
|
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Don't support EXTENT_LOCKED case, same reason as
|
* Don't support EXTENT_LOCKED case, same reason as
|
||||||
|
@ -1317,7 +1316,7 @@ int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
*/
|
*/
|
||||||
BUG_ON(bits & EXTENT_LOCKED);
|
BUG_ON(bits & EXTENT_LOCKED);
|
||||||
|
|
||||||
return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, mask,
|
return __clear_extent_bit(tree, start, end, bits, 0, 0, NULL, GFP_NOFS,
|
||||||
changeset);
|
changeset);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -221,8 +221,7 @@ int test_range_bit(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
unsigned bits, int filled,
|
unsigned bits, int filled,
|
||||||
struct extent_state *cached_state);
|
struct extent_state *cached_state);
|
||||||
int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
|
int clear_record_extent_bits(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
unsigned bits, gfp_t mask,
|
unsigned bits, struct extent_changeset *changeset);
|
||||||
struct extent_changeset *changeset);
|
|
||||||
int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
|
int clear_extent_bit(struct extent_io_tree *tree, u64 start, u64 end,
|
||||||
unsigned bits, int wake, int delete,
|
unsigned bits, int wake, int delete,
|
||||||
struct extent_state **cached, gfp_t mask);
|
struct extent_state **cached, gfp_t mask);
|
||||||
|
|
|
@ -2580,8 +2580,7 @@ static int __btrfs_qgroup_release_data(struct inode *inode, u64 start, u64 len,
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
|
ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, start,
|
||||||
start + len -1, EXTENT_QGROUP_RESERVED, GFP_NOFS,
|
start + len -1, EXTENT_QGROUP_RESERVED, &changeset);
|
||||||
&changeset);
|
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
@ -2688,7 +2687,7 @@ void btrfs_qgroup_check_reserved_leak(struct inode *inode)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
|
ret = clear_record_extent_bits(&BTRFS_I(inode)->io_tree, 0, (u64)-1,
|
||||||
EXTENT_QGROUP_RESERVED, GFP_NOFS, &changeset);
|
EXTENT_QGROUP_RESERVED, &changeset);
|
||||||
|
|
||||||
WARN_ON(ret < 0);
|
WARN_ON(ret < 0);
|
||||||
if (WARN_ON(changeset.bytes_changed)) {
|
if (WARN_ON(changeset.bytes_changed)) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue