Skip to content

Commit

Permalink
xfs: combine __xfs_alloc_vextent_this_ag and xfs_alloc_ag_vextent
Browse files Browse the repository at this point in the history
There's a bit of a recursive conundrum around
xfs_alloc_ag_vextent(). We can't first call xfs_alloc_ag_vextent()
without preparing the AGFL for the allocation, and preparing the
AGFL calls xfs_alloc_ag_vextent() to prepare the AGFL for the
allocation. This "double allocation" requirement is not really clear
from the current xfs_alloc_fix_freelist() calls that are sprinkled
through the allocation code.

It's not helped that xfs_alloc_ag_vextent() can actually allocate
from the AGFL itself, but there's special code to prevent AGFL prep
allocations from allocating from the free list it's trying to prep.
The naming is also not consistent: args->wasfromfl is true when we
allocated _from_ the free list, but the indication that we are
allocating _for_ the free list is via checking that (args->resv ==
XFS_AG_RESV_AGFL).

So, lets make this "allocation required for allocation" situation
clear by moving it all inside xfs_alloc_ag_vextent(). The freelist
allocation is a specific XFS_ALLOCTYPE_THIS_AG allocation, which
translated directly to xfs_alloc_ag_vextent_size() allocation.

This enables us to replace __xfs_alloc_vextent_this_ag() with a call
to xfs_alloc_ag_vextent(), and we drive the freelist fixing further
into the per-ag allocation algorithm.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
  • Loading branch information
Dave Chinner committed Feb 12, 2023
1 parent 2edf06a commit 4811c93
Showing 1 changed file with 35 additions and 30 deletions.
65 changes: 35 additions & 30 deletions fs/xfs/libxfs/xfs_alloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1140,22 +1140,38 @@ xfs_alloc_ag_vextent_small(
* and of the form k * prod + mod unless there's nothing that large.
* Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
*/
STATIC int /* error */
static int
xfs_alloc_ag_vextent(
xfs_alloc_arg_t *args) /* argument structure for allocation */
struct xfs_alloc_arg *args)
{
int error=0;
struct xfs_mount *mp = args->mp;
int error = 0;

ASSERT(args->minlen > 0);
ASSERT(args->maxlen > 0);
ASSERT(args->minlen <= args->maxlen);
ASSERT(args->mod < args->prod);
ASSERT(args->alignment > 0);
ASSERT(args->resv != XFS_AG_RESV_AGFL);


error = xfs_alloc_fix_freelist(args, 0);
if (error) {
trace_xfs_alloc_vextent_nofix(args);
return error;
}
if (!args->agbp) {
/* cannot allocate in this AG at all */
trace_xfs_alloc_vextent_noagbp(args);
args->agbno = NULLAGBLOCK;
return 0;
}
args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
args->wasfromfl = 0;

/*
* Branch to correct routine based on the type.
*/
args->wasfromfl = 0;
switch (args->type) {
case XFS_ALLOCTYPE_THIS_AG:
error = xfs_alloc_ag_vextent_size(args);
Expand All @@ -1176,7 +1192,6 @@ xfs_alloc_ag_vextent(

ASSERT(args->len >= args->minlen);
ASSERT(args->len <= args->maxlen);
ASSERT(!args->wasfromfl || args->resv != XFS_AG_RESV_AGFL);
ASSERT(args->agbno % args->alignment == 0);

/* if not file data, insert new block into the reverse map btree */
Expand Down Expand Up @@ -2721,7 +2736,7 @@ xfs_alloc_fix_freelist(
targs.resv = XFS_AG_RESV_AGFL;

/* Allocate as many blocks as possible at once. */
error = xfs_alloc_ag_vextent(&targs);
error = xfs_alloc_ag_vextent_size(&targs);
if (error)
goto out_agflbp_relse;

Expand All @@ -2735,6 +2750,18 @@ xfs_alloc_fix_freelist(
break;
goto out_agflbp_relse;
}

if (!xfs_rmap_should_skip_owner_update(&targs.oinfo)) {
error = xfs_rmap_alloc(tp, agbp, pag,
targs.agbno, targs.len, &targs.oinfo);
if (error)
goto out_agflbp_relse;
}
error = xfs_alloc_update_counters(tp, agbp,
-((long)(targs.len)));
if (error)
goto out_agflbp_relse;

/*
* Put each allocated block on the list.
*/
Expand Down Expand Up @@ -3244,28 +3271,6 @@ xfs_alloc_vextent_set_fsbno(
/*
* Allocate within a single AG only.
*/
static int
__xfs_alloc_vextent_this_ag(
struct xfs_alloc_arg *args)
{
struct xfs_mount *mp = args->mp;
int error;

error = xfs_alloc_fix_freelist(args, 0);
if (error) {
trace_xfs_alloc_vextent_nofix(args);
return error;
}
if (!args->agbp) {
/* cannot allocate in this AG at all */
trace_xfs_alloc_vextent_noagbp(args);
args->agbno = NULLAGBLOCK;
return 0;
}
args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
return xfs_alloc_ag_vextent(args);
}

static int
xfs_alloc_vextent_this_ag(
struct xfs_alloc_arg *args,
Expand All @@ -3289,7 +3294,7 @@ xfs_alloc_vextent_this_ag(
}

args->pag = xfs_perag_get(mp, args->agno);
error = __xfs_alloc_vextent_this_ag(args);
error = xfs_alloc_ag_vextent(args);

xfs_alloc_vextent_set_fsbno(args, minimum_agno);
xfs_perag_put(args->pag);
Expand Down Expand Up @@ -3329,7 +3334,7 @@ xfs_alloc_vextent_iterate_ags(
args->agno = start_agno;
for (;;) {
args->pag = xfs_perag_get(mp, args->agno);
error = __xfs_alloc_vextent_this_ag(args);
error = xfs_alloc_ag_vextent(args);
if (error) {
args->agbno = NULLAGBLOCK;
break;
Expand Down

0 comments on commit 4811c93

Please sign in to comment.