/* * Scan the AGs starting at start_agno looking for an AG that isn't in use and * has at least minlen blocks free. If no AG is found to match the allocation * requirements, pick the AG with the most free space in it.
*/ staticint
xfs_filestream_pick_ag( struct xfs_alloc_arg *args,
xfs_ino_t pino,
xfs_agnumber_t start_agno, int flags,
xfs_extlen_t *longest)
{ struct xfs_mount *mp = args->mp; struct xfs_perag *pag; struct xfs_perag *max_pag = NULL;
xfs_extlen_t minlen = *longest;
xfs_extlen_t minfree, maxfree = 0;
xfs_agnumber_t agno; bool first_pass = true;
/* 2% of an AG's blocks must be free for it to be chosen. */
minfree = mp->m_sb.sb_agblocks / 50;
restart:
for_each_perag_wrap(mp, start_agno, agno, pag) { int err;
trace_xfs_filestream_scan(pag, pino);
*longest = 0;
err = xfs_bmap_longest_free_extent(pag, NULL, longest); if (err) { if (err == -EAGAIN) { /* Couldn't lock the AGF, skip this AG. */
err = 0; continue;
}
xfs_perag_rele(pag); if (max_pag)
xfs_perag_rele(max_pag); return err;
}
/* Keep track of the AG with the most free blocks. */ if (pag->pagf_freeblks > maxfree) {
maxfree = pag->pagf_freeblks; if (max_pag)
xfs_perag_rele(max_pag);
atomic_inc(&pag_group(pag)->xg_active_ref);
max_pag = pag;
}
/* * The AG reference count does two things: it enforces mutual * exclusion when examining the suitability of an AG in this * loop, and it guards against two filestreams being established * in the same AG as each other.
*/ if (atomic_inc_return(&pag->pagf_fstrms) <= 1) { if (((minlen && *longest >= minlen) ||
(!minlen && pag->pagf_freeblks >= minfree)) &&
(!xfs_perag_prefers_metadata(pag) ||
!(flags & XFS_PICK_USERDATA) ||
(flags & XFS_PICK_LOWSPACE))) { /* Break out, retaining the reference on the AG. */ if (max_pag)
xfs_perag_rele(max_pag); goto done;
}
}
/* Drop the reference on this AG, it's not usable. */
atomic_dec(&pag->pagf_fstrms);
}
/* * Allow a second pass to give xfs_bmap_longest_free_extent() another * attempt at locking AGFs that it might have skipped over before we * fail.
*/ if (first_pass) {
first_pass = false; goto restart;
}
/* * We must be low on data space, so run a final lowspace optimised * selection pass if we haven't already.
*/ if (!(flags & XFS_PICK_LOWSPACE)) {
flags |= XFS_PICK_LOWSPACE; goto restart;
}
/* * No unassociated AGs are available, so select the AG with the most * free space, regardless of whether it's already in use by another * filestream. It none suit, just use whatever AG we can grab.
*/ if (!max_pag) {
for_each_perag_wrap(args->mp, 0, start_agno, pag) {
max_pag = pag; break;
}
/* Bail if there are no AGs at all to select from. */ if (!max_pag) return -ENOSPC;
}
dentry = d_find_alias(inode); if (!dentry) goto out;
parent = dget_parent(dentry); if (!parent) goto out_dput;
dir = igrab(d_inode(parent));
dput(parent);
out_dput:
dput(dentry);
out: return dir ? XFS_I(dir) : NULL;
}
/* * Lookup the mru cache for an existing association. If one exists and we can * use it, return with an active perag reference indicating that the allocation * will proceed with that association. * * If we have no association, or we cannot use the current one and have to * destroy it, return with longest = 0 to tell the caller to create a new * association.
*/ staticint
xfs_filestream_lookup_association( struct xfs_bmalloca *ap, struct xfs_alloc_arg *args,
xfs_ino_t pino,
xfs_extlen_t *longest)
{ struct xfs_mount *mp = args->mp; struct xfs_perag *pag; struct xfs_mru_cache_elem *mru; int error = 0;
*longest = 0;
mru = xfs_mru_cache_lookup(mp->m_filestream, pino); if (!mru) return 0; /* * Grab the pag and take an extra active reference for the caller whilst * the mru item cannot go away. This means we'll pin the perag with * the reference we get here even if the filestreams association is torn * down immediately after we mark the lookup as done.
*/
pag = container_of(mru, struct xfs_fstrm_item, mru)->pag;
atomic_inc(&pag_group(pag)->xg_active_ref);
xfs_mru_cache_done(mp->m_filestream);
/* * If there is very little free space before we start a filestreams * allocation, we're almost guaranteed to fail to find a large enough * free space available so just use the cached AG.
*/ if (ap->tp->t_flags & XFS_TRANS_LOWMODE) {
*longest = 1; goto out_done;
}
error = xfs_bmap_longest_free_extent(pag, args->tp, longest); if (error == -EAGAIN)
error = 0; if (error || *longest < args->maxlen) { /* We aren't going to use this perag */
*longest = 0;
xfs_perag_rele(pag); return error;
}
/* * We are going to use this perag now, so create an assoication for it. * xfs_filestream_pick_ag() has already bumped the perag fstrms counter * for us, so all we need to do here is take another active reference to * the perag for the cached association. * * If we fail to store the association, we do not need to return an * error for this failure - as long as we return a referenced AG, the * allocation can still go ahead just fine.
*/
item = kmalloc(sizeof(*item), GFP_KERNEL | __GFP_RETRY_MAYFAIL); if (!item) goto out_put_fstrms;
/* * Search for an allocation group with a single extent large enough for * the request. First we look for an existing association and use that if it * is found. Otherwise, we create a new association by selecting an AG that fits * the allocation criteria. * * We return with a referenced perag in args->pag to indicate which AG we are * allocating into or an error with no references held.
*/ int
xfs_filestream_select_ag( struct xfs_bmalloca *ap, struct xfs_alloc_arg *args,
xfs_extlen_t *longest)
{ struct xfs_inode *pip;
xfs_ino_t ino = 0; int error = 0;
*longest = 0;
args->total = ap->total;
pip = xfs_filestream_get_parent(ap->ip); if (pip) {
ino = pip->i_ino;
error = xfs_filestream_lookup_association(ap, args, ino,
longest);
xfs_irele(pip); if (error) return error; if (*longest >= args->maxlen) goto out_select; if (ap->tp->t_flags & XFS_TRANS_LOWMODE) goto out_select;
}
error = xfs_filestream_create_association(ap, args, ino, longest); if (error) return error;
int
xfs_filestream_mount(
xfs_mount_t *mp)
{ /* * The filestream timer tunable is currently fixed within the range of * one second to four minutes, with five seconds being the default. The * group count is somewhat arbitrary, but it'd be nice to adhere to the * timer tunable to within about 10 percent. This requires at least 10 * groups.
*/ return xfs_mru_cache_create(&mp->m_filestream, mp,
xfs_fstrm_centisecs * 10, 10, xfs_fstrm_free_func);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.