xfs: return a referenced perag from filestreams allocator
authorDave Chinner <dchinner@redhat.com>
Sun, 12 Feb 2023 22:14:56 +0000 (09:14 +1100)
committerDave Chinner <dchinner@redhat.com>
Sun, 12 Feb 2023 22:14:56 +0000 (09:14 +1100)
commitf8f1ed1ab3babad46b25e2dbe8de43b33fe7aaa6
tree7c73be6061063b8875d6f84787b5be39a7317b28
parent571e259282a43f58b1f70dcbf2add20d8c83a72b
xfs: return a referenced perag from filestreams allocator

Now that the filestreams AG selection tracks active perags, we need
to return an active perag to the core allocator code. This is
because the file allocation the filestreams code will run are AG
specific allocations and so need to pin the AG until the allocations
complete.

We cannot rely on the filestreams item reference to do this - the
filestreams association can be torn down at any time, hence we
need to have a separate reference for the allocation process to pin
the AG after it has been selected.

This means there is some perag juggling in allocation failure
fallback paths as they will do all AG scans in the case the AG
specific allocation fails. Hence we need to track the perag
reference that the filestream allocator returned to make sure we
don't leak it on repeated allocation failure.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/libxfs/xfs_bmap.c
fs/xfs/xfs_filestream.c