Commit 917aacec authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba

btrfs: Sink find_lock_delalloc_range's 'max_bytes' argument

All callers of this function pass BTRFS_MAX_EXTENT_SIZE (128M) so let's
reduce the argument count and make that a local variable. No functional
changes.
Reviewed-by: default avatarQu Wenruo <wqu@suse.com>
Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarDavid Sterba <dsterba@suse.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 64bc6c2a
...@@ -1559,8 +1559,9 @@ static noinline int lock_delalloc_pages(struct inode *inode, ...@@ -1559,8 +1559,9 @@ static noinline int lock_delalloc_pages(struct inode *inode,
static noinline_for_stack u64 find_lock_delalloc_range(struct inode *inode, static noinline_for_stack u64 find_lock_delalloc_range(struct inode *inode,
struct extent_io_tree *tree, struct extent_io_tree *tree,
struct page *locked_page, u64 *start, struct page *locked_page, u64 *start,
u64 *end, u64 max_bytes) u64 *end)
{ {
u64 max_bytes = BTRFS_MAX_EXTENT_SIZE;
u64 delalloc_start; u64 delalloc_start;
u64 delalloc_end; u64 delalloc_end;
u64 found; u64 found;
...@@ -1640,10 +1641,9 @@ static noinline_for_stack u64 find_lock_delalloc_range(struct inode *inode, ...@@ -1640,10 +1641,9 @@ static noinline_for_stack u64 find_lock_delalloc_range(struct inode *inode,
u64 btrfs_find_lock_delalloc_range(struct inode *inode, u64 btrfs_find_lock_delalloc_range(struct inode *inode,
struct extent_io_tree *tree, struct extent_io_tree *tree,
struct page *locked_page, u64 *start, struct page *locked_page, u64 *start,
u64 *end, u64 max_bytes) u64 *end)
{ {
return find_lock_delalloc_range(inode, tree, locked_page, start, end, return find_lock_delalloc_range(inode, tree, locked_page, start, end);
max_bytes);
} }
#endif #endif
...@@ -3217,8 +3217,7 @@ static noinline_for_stack int writepage_delalloc(struct inode *inode, ...@@ -3217,8 +3217,7 @@ static noinline_for_stack int writepage_delalloc(struct inode *inode,
nr_delalloc = find_lock_delalloc_range(inode, tree, nr_delalloc = find_lock_delalloc_range(inode, tree,
page, page,
&delalloc_start, &delalloc_start,
&delalloc_end, &delalloc_end);
BTRFS_MAX_EXTENT_SIZE);
if (nr_delalloc == 0) { if (nr_delalloc == 0) {
delalloc_start = delalloc_end + 1; delalloc_start = delalloc_end + 1;
continue; continue;
......
...@@ -525,7 +525,7 @@ int free_io_failure(struct extent_io_tree *failure_tree, ...@@ -525,7 +525,7 @@ int free_io_failure(struct extent_io_tree *failure_tree,
u64 btrfs_find_lock_delalloc_range(struct inode *inode, u64 btrfs_find_lock_delalloc_range(struct inode *inode,
struct extent_io_tree *tree, struct extent_io_tree *tree,
struct page *locked_page, u64 *start, struct page *locked_page, u64 *start,
u64 *end, u64 max_bytes); u64 *end);
#endif #endif
struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info, struct extent_buffer *alloc_test_extent_buffer(struct btrfs_fs_info *fs_info,
u64 start); u64 start);
......
...@@ -108,7 +108,7 @@ static int test_find_delalloc(u32 sectorsize) ...@@ -108,7 +108,7 @@ static int test_find_delalloc(u32 sectorsize)
start = 0; start = 0;
end = 0; end = 0;
found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start, found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start,
&end, max_bytes); &end);
if (!found) { if (!found) {
test_err("should have found at least one delalloc"); test_err("should have found at least one delalloc");
goto out_bits; goto out_bits;
...@@ -139,7 +139,7 @@ static int test_find_delalloc(u32 sectorsize) ...@@ -139,7 +139,7 @@ static int test_find_delalloc(u32 sectorsize)
start = test_start; start = test_start;
end = 0; end = 0;
found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start, found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start,
&end, max_bytes); &end);
if (!found) { if (!found) {
test_err("couldn't find delalloc in our range"); test_err("couldn't find delalloc in our range");
goto out_bits; goto out_bits;
...@@ -173,7 +173,7 @@ static int test_find_delalloc(u32 sectorsize) ...@@ -173,7 +173,7 @@ static int test_find_delalloc(u32 sectorsize)
start = test_start; start = test_start;
end = 0; end = 0;
found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start, found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start,
&end, max_bytes); &end);
if (found) { if (found) {
test_err("found range when we shouldn't have"); test_err("found range when we shouldn't have");
goto out_bits; goto out_bits;
...@@ -194,7 +194,7 @@ static int test_find_delalloc(u32 sectorsize) ...@@ -194,7 +194,7 @@ static int test_find_delalloc(u32 sectorsize)
start = test_start; start = test_start;
end = 0; end = 0;
found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start, found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start,
&end, max_bytes); &end);
if (!found) { if (!found) {
test_err("didn't find our range"); test_err("didn't find our range");
goto out_bits; goto out_bits;
...@@ -235,7 +235,7 @@ static int test_find_delalloc(u32 sectorsize) ...@@ -235,7 +235,7 @@ static int test_find_delalloc(u32 sectorsize)
* tests expected behavior. * tests expected behavior.
*/ */
found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start, found = btrfs_find_lock_delalloc_range(inode, &tmp, locked_page, &start,
&end, max_bytes); &end);
if (!found) { if (!found) {
test_err("didn't find our range"); test_err("didn't find our range");
goto out_bits; goto out_bits;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment