summaryrefslogtreecommitdiff
path: root/fs/xfs/xfs_rtalloc.c
diff options
context:
space:
mode:
authorOmar Sandoval <osandov@fb.com>2023-10-16 10:45:46 -0700
committerDarrick J. Wong <djwong@kernel.org>2023-10-19 08:34:33 -0700
commitec5857bf07639a03d32b8ecb346df634925f8bc2 (patch)
tree06c0535ea3f6dda7702cd49ee43783e5637a3d5c /fs/xfs/xfs_rtalloc.c
parent1b5d63963f9820b1c14883ee56b387586ff72aa0 (diff)
xfs: limit maxlen based on available space in xfs_rtallocate_extent_near()
xfs_rtallocate_extent_near() calls xfs_rtallocate_extent_block() with the minlen and maxlen that were passed to it. xfs_rtallocate_extent_block() then scans the bitmap block looking for a free range of size maxlen. If there is none, it has to scan the whole bitmap block before returning the largest range of at least size minlen. For a fragmented realtime device and a large allocation request, it's almost certain that this will have to search the whole bitmap block, leading to high CPU usage. However, the realtime summary tells us the maximum size available in the bitmap block. We can limit the search in xfs_rtallocate_extent_block() to that size and often stop before scanning the whole bitmap block. Signed-off-by: Omar Sandoval <osandov@fb.com> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Darrick J. Wong <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
-rw-r--r--fs/xfs/xfs_rtalloc.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c
index c774a4ccdd15..3aa9634a9e76 100644
--- a/fs/xfs/xfs_rtalloc.c
+++ b/fs/xfs/xfs_rtalloc.c
@@ -497,6 +497,9 @@ xfs_rtallocate_extent_near(
* allocating one.
*/
if (maxlog >= 0) {
+ xfs_extlen_t maxavail =
+ min_t(xfs_rtblock_t, maxlen,
+ (1ULL << (maxlog + 1)) - 1);
/*
* On the positive side of the starting location.
*/
@@ -506,7 +509,7 @@ xfs_rtallocate_extent_near(
* this block.
*/
error = xfs_rtallocate_extent_block(args,
- bbno + i, minlen, maxlen, len,
+ bbno + i, minlen, maxavail, len,
&n, prod, &r);
if (error) {
return error;
@@ -553,7 +556,7 @@ xfs_rtallocate_extent_near(
continue;
error = xfs_rtallocate_extent_block(args,
bbno + j, minlen,
- maxlen, len, &n, prod,
+ maxavail, len, &n, prod,
&r);
if (error) {
return error;
@@ -575,7 +578,7 @@ xfs_rtallocate_extent_near(
* that we found.
*/
error = xfs_rtallocate_extent_block(args,
- bbno + i, minlen, maxlen, len,
+ bbno + i, minlen, maxavail, len,
&n, prod, &r);
if (error) {
return error;