]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
xfs: trigger zone GC when out of available rt blocks
authorHans Holmberg <Hans.Holmberg@wdc.com>
Mon, 10 Mar 2025 13:39:59 +0000 (13:39 +0000)
committerCarlos Maiolino <cem@kernel.org>
Tue, 11 Mar 2025 11:52:27 +0000 (12:52 +0100)
We periodically check the available rt blocks when filling up zones
and start GC if needed, but we may run completely out in between
filling zones, so start GC(unless already running) if we can't reserve
writable space.

This should only happen as a corner case in setups with very few
backing zones.

Fixes: 080d01c41d44 ("xfs: implement zoned garbage collection")
Signed-off-by: Hans Holmberg <hans.holmberg@wdc.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
fs/xfs/xfs_zone_space_resv.c

index 4bf1b18aa7a7924926a5429030ab0a1223681b09..93c9a7721139472f2ed38b754a2218a7ec46bba9 100644 (file)
@@ -159,6 +159,16 @@ xfs_zoned_reserve_available(
                if (error != -ENOSPC)
                        break;
 
+               /*
+                * Make sure to start GC if it is not running already. As we
+                * check the rtavailable count when filling up zones, GC is
+                * normally already running at this point, but in some setups
+                * with very few zones we may completely run out of non-
+                * reserved blocks in between filling zones.
+                */
+               if (!xfs_is_zonegc_running(mp))
+                       wake_up_process(zi->zi_gc_thread);
+
                /*
                 * If there is no reclaimable group left and we aren't still
                 * processing a pending GC request give up as we're fully out