Skip to content

Commit 7bf811a

Browse files
Josef BacikChris Mason
authored andcommitted
Btrfs: limit delalloc pages outside of find_delalloc_range
Liu fixed part of this problem and unfortunately I steered him in slightly the wrong direction and so didn't completely fix the problem. The problem is we limit the size of the delalloc range we are looking for to max bytes and then we try to lock that range. If we fail to lock the pages in that range we will shrink the max bytes to a single page and re loop. However if our first page is inside of the delalloc range then we will end up limiting the end of the range to a period before our first page. This is illustrated below [0 -------- delalloc range --------- 256mb] [page] So find_delalloc_range will return with delalloc_start as 0 and end as 128mb, and then we will notice that delalloc_start < *start and adjust it up, but not adjust delalloc_end up, so things go sideways. To fix this we need to not limit the max bytes in find_delalloc_range, but in find_lock_delalloc_range and that way we don't end up with this confusion. Thanks, Signed-off-by: Josef Bacik <[email protected]> Signed-off-by: Chris Mason <[email protected]>
1 parent 4871c15 commit 7bf811a

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

fs/btrfs/extent_io.c

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1482,10 +1482,8 @@ static noinline u64 find_delalloc_range(struct extent_io_tree *tree,
14821482
cur_start = state->end + 1;
14831483
node = rb_next(node);
14841484
total_bytes += state->end - state->start + 1;
1485-
if (total_bytes >= max_bytes) {
1486-
*end = *start + max_bytes - 1;
1485+
if (total_bytes >= max_bytes)
14871486
break;
1488-
}
14891487
if (!node)
14901488
break;
14911489
}
@@ -1627,10 +1625,9 @@ static noinline u64 find_lock_delalloc_range(struct inode *inode,
16271625

16281626
/*
16291627
* make sure to limit the number of pages we try to lock down
1630-
* if we're looping.
16311628
*/
1632-
if (delalloc_end + 1 - delalloc_start > max_bytes && loops)
1633-
delalloc_end = delalloc_start + PAGE_CACHE_SIZE - 1;
1629+
if (delalloc_end + 1 - delalloc_start > max_bytes)
1630+
delalloc_end = delalloc_start + max_bytes - 1;
16341631

16351632
/* step two, lock all the pages after the page that has start */
16361633
ret = lock_delalloc_pages(inode, locked_page,
@@ -1641,8 +1638,7 @@ static noinline u64 find_lock_delalloc_range(struct inode *inode,
16411638
*/
16421639
free_extent_state(cached_state);
16431640
if (!loops) {
1644-
unsigned long offset = (*start) & (PAGE_CACHE_SIZE - 1);
1645-
max_bytes = PAGE_CACHE_SIZE - offset;
1641+
max_bytes = PAGE_CACHE_SIZE;
16461642
loops = 1;
16471643
goto again;
16481644
} else {

0 commit comments

Comments
 (0)