2018-06-06 10:42:14 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2007-07-11 09:09:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2007 Silicon Graphics, Inc.
|
2014-04-23 05:11:51 +08:00
|
|
|
* Copyright (c) 2014 Christoph Hellwig.
|
2007-07-11 09:09:12 +08:00
|
|
|
* All Rights Reserved.
|
|
|
|
*/
|
|
|
|
#include "xfs.h"
|
2019-06-29 10:25:35 +08:00
|
|
|
#include "xfs_shared.h"
|
2013-10-23 07:51:50 +08:00
|
|
|
#include "xfs_format.h"
|
2013-10-23 07:50:10 +08:00
|
|
|
#include "xfs_log_format.h"
|
|
|
|
#include "xfs_trans_resv.h"
|
|
|
|
#include "xfs_mount.h"
|
2007-07-11 09:09:12 +08:00
|
|
|
#include "xfs_inode.h"
|
|
|
|
#include "xfs_bmap.h"
|
2023-02-13 06:14:55 +08:00
|
|
|
#include "xfs_bmap_util.h"
|
2007-07-11 09:09:12 +08:00
|
|
|
#include "xfs_alloc.h"
|
|
|
|
#include "xfs_mru_cache.h"
|
2009-12-15 07:14:59 +08:00
|
|
|
#include "xfs_trace.h"
|
2021-06-02 08:48:24 +08:00
|
|
|
#include "xfs_ag.h"
|
xfs: set up per-AG free space reservations
One unfortunate quirk of the reference count and reverse mapping
btrees -- they can expand in size when blocks are written to *other*
allocation groups if, say, one large extent becomes a lot of tiny
extents. Since we don't want to start throwing errors in the middle
of CoWing, we need to reserve some blocks to handle future expansion.
The transaction block reservation counters aren't sufficient here
because we have to have a reserve of blocks in every AG, not just
somewhere in the filesystem.
Therefore, create two per-AG block reservation pools. One feeds the
AGFL so that rmapbt expansion always succeeds, and the other feeds all
other metadata so that refcountbt expansion never fails.
Use the count of how many reserved blocks we need to have on hand to
create a virtual reservation in the AG. Through selective clamping of
the maximum length of allocation requests and of the length of the
longest free extent, we can make it look like there's less free space
in the AG unless the reservation owner is asking for blocks.
In other words, play some accounting tricks in-core to make sure that
we always have blocks available. On the plus side, there's nothing to
clean up if we crash, which is contrast to the strategy that the rough
draft used (actually removing extents from the freespace btrees).
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
2016-09-19 08:30:52 +08:00
|
|
|
#include "xfs_ag_resv.h"
|
2018-07-12 13:26:14 +08:00
|
|
|
#include "xfs_trans.h"
|
2019-11-13 12:40:00 +08:00
|
|
|
#include "xfs_filestream.h"
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
struct xfs_fstrm_item {
|
|
|
|
struct xfs_mru_cache_elem mru;
|
2023-02-13 06:14:55 +08:00
|
|
|
struct xfs_perag *pag; /* AG in use for this directory */
|
2014-04-23 05:11:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum xfs_fstrm_alloc {
|
|
|
|
XFS_PICK_USERDATA = 1,
|
|
|
|
XFS_PICK_LOWSPACE = 2,
|
|
|
|
};
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
static void
|
|
|
|
xfs_fstrm_free_func(
|
2018-04-10 01:23:39 +08:00
|
|
|
void *data,
|
2014-04-23 05:11:51 +08:00
|
|
|
struct xfs_mru_cache_elem *mru)
|
|
|
|
{
|
|
|
|
struct xfs_fstrm_item *item =
|
|
|
|
container_of(mru, struct xfs_fstrm_item, mru);
|
2023-02-13 06:14:55 +08:00
|
|
|
struct xfs_perag *pag = item->pag;
|
2014-04-23 05:11:51 +08:00
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
trace_xfs_filestream_free(pag, mru->key);
|
2023-02-13 06:14:55 +08:00
|
|
|
atomic_dec(&pag->pagf_fstrms);
|
|
|
|
xfs_perag_rele(pag);
|
2014-04-23 05:11:51 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
kmem_free(item);
|
2014-04-23 05:11:51 +08:00
|
|
|
}
|
|
|
|
|
2007-07-11 09:09:12 +08:00
|
|
|
/*
|
|
|
|
* Scan the AGs starting at startag looking for an AG that isn't in use and has
|
|
|
|
* at least minlen blocks free.
|
|
|
|
*/
|
|
|
|
static int
|
2014-04-23 05:11:51 +08:00
|
|
|
xfs_filestream_pick_ag(
|
2023-02-13 06:14:56 +08:00
|
|
|
struct xfs_alloc_arg *args,
|
2014-04-23 05:11:51 +08:00
|
|
|
struct xfs_inode *ip,
|
2023-02-13 06:14:56 +08:00
|
|
|
xfs_agnumber_t start_agno,
|
2014-04-23 05:11:51 +08:00
|
|
|
int flags,
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_extlen_t *longest)
|
2007-07-11 09:09:12 +08:00
|
|
|
{
|
2014-04-23 05:11:51 +08:00
|
|
|
struct xfs_mount *mp = ip->i_mount;
|
|
|
|
struct xfs_fstrm_item *item;
|
|
|
|
struct xfs_perag *pag;
|
2023-02-13 06:14:55 +08:00
|
|
|
struct xfs_perag *max_pag = NULL;
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_extlen_t minlen = *longest;
|
|
|
|
xfs_extlen_t free = 0, minfree, maxfree = 0;
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_agnumber_t agno;
|
|
|
|
int err, trylock;
|
2014-04-23 05:11:51 +08:00
|
|
|
|
2016-02-09 13:54:58 +08:00
|
|
|
ASSERT(S_ISDIR(VFS_I(ip)->i_mode));
|
2007-07-11 09:09:12 +08:00
|
|
|
|
|
|
|
/* 2% of an AG's blocks must be free for it to be chosen. */
|
|
|
|
minfree = mp->m_sb.sb_agblocks / 50;
|
|
|
|
|
|
|
|
/* For the first pass, don't sleep trying to init the per-AG. */
|
|
|
|
trylock = XFS_ALLOC_FLAG_TRYLOCK;
|
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
restart:
|
|
|
|
for_each_perag_wrap(mp, start_agno, agno, pag) {
|
2023-02-13 06:14:56 +08:00
|
|
|
trace_xfs_filestream_scan(pag, ip->i_ino);
|
2023-02-13 06:14:55 +08:00
|
|
|
*longest = 0;
|
|
|
|
err = xfs_bmap_longest_free_extent(pag, NULL, longest);
|
2023-02-13 06:14:55 +08:00
|
|
|
if (err) {
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_perag_rele(pag);
|
2023-02-13 06:14:55 +08:00
|
|
|
if (err != -EAGAIN)
|
2023-02-13 06:14:55 +08:00
|
|
|
break;
|
2023-02-13 06:14:55 +08:00
|
|
|
/* Couldn't lock the AGF, skip this AG. */
|
2023-02-13 06:14:55 +08:00
|
|
|
err = 0;
|
2023-02-13 06:14:56 +08:00
|
|
|
continue;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Keep track of the AG with the most free blocks. */
|
|
|
|
if (pag->pagf_freeblks > maxfree) {
|
|
|
|
maxfree = pag->pagf_freeblks;
|
2023-02-13 06:14:55 +08:00
|
|
|
if (max_pag)
|
|
|
|
xfs_perag_rele(max_pag);
|
|
|
|
atomic_inc(&pag->pag_active_ref);
|
|
|
|
max_pag = pag;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2023-02-13 06:14:55 +08:00
|
|
|
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. */
|
|
|
|
free = pag->pagf_freeblks;
|
|
|
|
break;
|
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Drop the reference on this AG, it's not usable. */
|
2023-02-13 06:14:55 +08:00
|
|
|
atomic_dec(&pag->pagf_fstrms);
|
2023-02-13 06:14:55 +08:00
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
if (err) {
|
|
|
|
xfs_perag_rele(pag);
|
|
|
|
if (max_pag)
|
|
|
|
xfs_perag_rele(max_pag);
|
|
|
|
return err;
|
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
if (!pag) {
|
2022-07-07 17:07:32 +08:00
|
|
|
/* Allow sleeping in xfs_alloc_read_agf() on the 2nd pass. */
|
2023-02-13 06:14:55 +08:00
|
|
|
if (trylock) {
|
2007-07-11 09:09:12 +08:00
|
|
|
trylock = 0;
|
2023-02-13 06:14:55 +08:00
|
|
|
goto restart;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finally, if lowspace wasn't set, set it for the 3rd pass. */
|
|
|
|
if (!(flags & XFS_PICK_LOWSPACE)) {
|
|
|
|
flags |= XFS_PICK_LOWSPACE;
|
2023-02-13 06:14:55 +08:00
|
|
|
goto restart;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2023-02-13 06:14:55 +08:00
|
|
|
* No unassociated AGs are available, so select the AG with the
|
|
|
|
* most free space, regardless of whether it's already in use by
|
2023-02-13 06:14:56 +08:00
|
|
|
* another filestream. It none suit, just use whatever AG we can
|
|
|
|
* grab.
|
2007-07-11 09:09:12 +08:00
|
|
|
*/
|
2023-02-13 06:14:55 +08:00
|
|
|
if (!max_pag) {
|
2023-02-13 06:14:56 +08:00
|
|
|
for_each_perag_wrap(mp, start_agno, agno, pag)
|
|
|
|
break;
|
|
|
|
atomic_inc(&pag->pagf_fstrms);
|
|
|
|
*longest = 0;
|
|
|
|
} else {
|
|
|
|
pag = max_pag;
|
|
|
|
free = maxfree;
|
|
|
|
atomic_inc(&pag->pagf_fstrms);
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
2023-02-13 06:14:55 +08:00
|
|
|
} else if (max_pag) {
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_perag_rele(max_pag);
|
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
trace_xfs_filestream_pick(ip, pag, free);
|
2023-02-13 06:14:55 +08:00
|
|
|
|
2014-06-25 12:58:08 +08:00
|
|
|
err = -ENOMEM;
|
2014-04-23 05:11:51 +08:00
|
|
|
item = kmem_alloc(sizeof(*item), KM_MAYFAIL);
|
2007-07-11 09:09:12 +08:00
|
|
|
if (!item)
|
2014-04-23 05:11:51 +08:00
|
|
|
goto out_put_ag;
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We are going to use this perag now, so take another ref to it for the
|
|
|
|
* allocation context returned to the caller. If we raced to create and
|
|
|
|
* insert the filestreams item into the MRU (-EEXIST), then we still
|
|
|
|
* keep this reference but free the item reference we gained above. On
|
|
|
|
* any other failure, we have to drop both.
|
|
|
|
*/
|
|
|
|
atomic_inc(&pag->pag_active_ref);
|
2023-02-13 06:14:55 +08:00
|
|
|
item->pag = pag;
|
2023-02-13 06:14:56 +08:00
|
|
|
args->pag = pag;
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
err = xfs_mru_cache_insert(mp->m_filestream, ip->i_ino, &item->mru);
|
2007-07-11 09:09:12 +08:00
|
|
|
if (err) {
|
2023-02-13 06:14:56 +08:00
|
|
|
if (err == -EEXIST) {
|
2014-04-23 05:11:51 +08:00
|
|
|
err = 0;
|
2023-02-13 06:14:56 +08:00
|
|
|
} else {
|
|
|
|
xfs_perag_rele(args->pag);
|
|
|
|
args->pag = NULL;
|
|
|
|
}
|
2014-04-23 05:11:51 +08:00
|
|
|
goto out_free_item;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
out_free_item:
|
2014-04-23 05:11:51 +08:00
|
|
|
kmem_free(item);
|
2014-04-23 05:11:51 +08:00
|
|
|
out_put_ag:
|
2023-02-13 06:14:55 +08:00
|
|
|
atomic_dec(&pag->pagf_fstrms);
|
|
|
|
xfs_perag_rele(pag);
|
2014-04-23 05:11:51 +08:00
|
|
|
return err;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
static struct xfs_inode *
|
|
|
|
xfs_filestream_get_parent(
|
|
|
|
struct xfs_inode *ip)
|
2007-07-11 09:09:12 +08:00
|
|
|
{
|
2014-04-23 05:11:51 +08:00
|
|
|
struct inode *inode = VFS_I(ip), *dir = NULL;
|
|
|
|
struct dentry *dentry, *parent;
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
dentry = d_find_alias(inode);
|
|
|
|
if (!dentry)
|
|
|
|
goto out;
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
parent = dget_parent(dentry);
|
|
|
|
if (!parent)
|
|
|
|
goto out_dput;
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2015-03-18 06:25:59 +08:00
|
|
|
dir = igrab(d_inode(parent));
|
2014-04-23 05:11:51 +08:00
|
|
|
dput(parent);
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
out_dput:
|
|
|
|
dput(dentry);
|
|
|
|
out:
|
|
|
|
return dir ? XFS_I(dir) : NULL;
|
2007-07-11 09:09:12 +08:00
|
|
|
}
|
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
/*
|
|
|
|
* Lookup the mru cache for an existing association. If one exists and we can
|
|
|
|
* use it, return with the agno and blen 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 blen = 0 and agno pointing at the next agno to try.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
xfs_filestream_select_ag_mru(
|
|
|
|
struct xfs_bmalloca *ap,
|
|
|
|
struct xfs_alloc_arg *args,
|
|
|
|
struct xfs_inode *pip,
|
|
|
|
xfs_agnumber_t *agno,
|
|
|
|
xfs_extlen_t *blen)
|
|
|
|
{
|
|
|
|
struct xfs_mount *mp = ap->ip->i_mount;
|
|
|
|
struct xfs_perag *pag;
|
|
|
|
struct xfs_mru_cache_elem *mru;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
mru = xfs_mru_cache_lookup(mp->m_filestream, pip->i_ino);
|
|
|
|
if (!mru)
|
|
|
|
goto out_default_agno;
|
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2023-02-13 06:14:55 +08:00
|
|
|
pag = container_of(mru, struct xfs_fstrm_item, mru)->pag;
|
2023-02-13 06:14:56 +08:00
|
|
|
atomic_inc(&pag->pag_active_ref);
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_mru_cache_done(mp->m_filestream);
|
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
trace_xfs_filestream_lookup(pag, ap->ip->i_ino);
|
2023-02-13 06:14:55 +08:00
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
ap->blkno = XFS_AGB_TO_FSB(args->mp, pag->pag_agno, 0);
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_bmap_adjacent(ap);
|
|
|
|
|
|
|
|
error = xfs_bmap_longest_free_extent(pag, args->tp, blen);
|
|
|
|
if (error) {
|
2023-02-13 06:14:56 +08:00
|
|
|
/* We aren't going to use this perag */
|
|
|
|
xfs_perag_rele(pag);
|
2023-02-13 06:14:55 +08:00
|
|
|
if (error != -EAGAIN)
|
|
|
|
return error;
|
|
|
|
*blen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We are done if there's still enough contiguous free space to succeed.
|
2023-02-13 06:14:56 +08:00
|
|
|
* If there is very little free space before we start a filestreams
|
|
|
|
* allocation, we're almost guaranteed to fail to find a better AG with
|
|
|
|
* larger free space available so we don't even try.
|
2023-02-13 06:14:55 +08:00
|
|
|
*/
|
2023-02-13 06:14:55 +08:00
|
|
|
*agno = pag->pag_agno;
|
2023-02-13 06:14:56 +08:00
|
|
|
if (*blen >= args->maxlen || (ap->tp->t_flags & XFS_TRANS_LOWMODE)) {
|
|
|
|
args->pag = pag;
|
2023-02-13 06:14:55 +08:00
|
|
|
return 0;
|
2023-02-13 06:14:56 +08:00
|
|
|
}
|
2023-02-13 06:14:55 +08:00
|
|
|
|
|
|
|
/* Changing parent AG association now, so remove the existing one. */
|
2023-02-13 06:14:56 +08:00
|
|
|
xfs_perag_rele(pag);
|
2023-02-13 06:14:55 +08:00
|
|
|
mru = xfs_mru_cache_remove(mp->m_filestream, pip->i_ino);
|
|
|
|
if (mru) {
|
|
|
|
struct xfs_fstrm_item *item =
|
|
|
|
container_of(mru, struct xfs_fstrm_item, mru);
|
2023-02-13 06:14:55 +08:00
|
|
|
*agno = (item->pag->pag_agno + 1) % mp->m_sb.sb_agcount;
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_fstrm_free_func(mp, mru);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
out_default_agno:
|
|
|
|
if (xfs_is_inode32(mp)) {
|
|
|
|
xfs_agnumber_t rotorstep = xfs_rotorstep;
|
|
|
|
*agno = (mp->m_agfrotor / rotorstep) %
|
|
|
|
mp->m_sb.sb_agcount;
|
|
|
|
mp->m_agfrotor = (mp->m_agfrotor + 1) %
|
|
|
|
(mp->m_sb.sb_agcount * rotorstep);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
*agno = XFS_INO_TO_AGNO(mp, pip->i_ino);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
/*
|
|
|
|
* Search for an allocation group with a single extent large enough for
|
2023-02-13 06:14:55 +08:00
|
|
|
* the request. If one isn't found, then adjust the minimum allocation
|
|
|
|
* size to the largest space found.
|
2023-02-13 06:14:55 +08:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
xfs_filestream_select_ag(
|
2023-02-13 06:14:55 +08:00
|
|
|
struct xfs_bmalloca *ap,
|
|
|
|
struct xfs_alloc_arg *args,
|
|
|
|
xfs_extlen_t *blen)
|
|
|
|
{
|
|
|
|
struct xfs_mount *mp = ap->ip->i_mount;
|
2023-02-13 06:14:55 +08:00
|
|
|
struct xfs_inode *pip = NULL;
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_agnumber_t agno;
|
2023-02-13 06:14:55 +08:00
|
|
|
int flags = 0;
|
2023-02-13 06:14:56 +08:00
|
|
|
int error = 0;
|
2023-02-13 06:14:55 +08:00
|
|
|
|
|
|
|
args->total = ap->total;
|
2023-02-13 06:14:55 +08:00
|
|
|
*blen = 0;
|
2023-02-13 06:14:55 +08:00
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
pip = xfs_filestream_get_parent(ap->ip);
|
|
|
|
if (!pip) {
|
2023-02-13 06:14:56 +08:00
|
|
|
ap->blkno = XFS_AGB_TO_FSB(mp, 0, 0);
|
|
|
|
return 0;
|
2023-02-13 06:14:55 +08:00
|
|
|
}
|
|
|
|
|
2023-02-13 06:14:55 +08:00
|
|
|
error = xfs_filestream_select_ag_mru(ap, args, pip, &agno, blen);
|
2023-02-13 06:14:56 +08:00
|
|
|
if (error)
|
2023-02-13 06:14:55 +08:00
|
|
|
goto out_rele;
|
2023-02-13 06:14:56 +08:00
|
|
|
if (*blen >= args->maxlen)
|
|
|
|
goto out_select;
|
2023-02-13 06:14:55 +08:00
|
|
|
if (ap->tp->t_flags & XFS_TRANS_LOWMODE)
|
2023-02-13 06:14:55 +08:00
|
|
|
goto out_select;
|
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
ap->blkno = XFS_AGB_TO_FSB(args->mp, agno, 0);
|
|
|
|
xfs_bmap_adjacent(ap);
|
|
|
|
*blen = ap->length;
|
2023-02-13 06:14:55 +08:00
|
|
|
if (ap->datatype & XFS_ALLOC_USERDATA)
|
|
|
|
flags |= XFS_PICK_USERDATA;
|
|
|
|
if (ap->tp->t_flags & XFS_TRANS_LOWMODE)
|
|
|
|
flags |= XFS_PICK_LOWSPACE;
|
2023-02-13 06:14:55 +08:00
|
|
|
|
2023-02-13 06:14:56 +08:00
|
|
|
error = xfs_filestream_pick_ag(args, pip, agno, flags, blen);
|
|
|
|
if (error)
|
|
|
|
goto out_rele;
|
2023-02-13 06:14:55 +08:00
|
|
|
out_select:
|
2023-02-13 06:14:56 +08:00
|
|
|
ap->blkno = XFS_AGB_TO_FSB(mp, args->pag->pag_agno, 0);
|
2023-02-13 06:14:55 +08:00
|
|
|
out_rele:
|
2023-02-13 06:14:55 +08:00
|
|
|
xfs_irele(pip);
|
|
|
|
return error;
|
|
|
|
|
|
|
|
}
|
2023-02-13 06:14:55 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
void
|
|
|
|
xfs_filestream_deassociate(
|
|
|
|
struct xfs_inode *ip)
|
|
|
|
{
|
|
|
|
xfs_mru_cache_delete(ip->i_mount->m_filestream, ip->i_ino);
|
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
int
|
|
|
|
xfs_filestream_mount(
|
|
|
|
xfs_mount_t *mp)
|
|
|
|
{
|
2007-07-11 09:09:12 +08:00
|
|
|
/*
|
2014-04-23 05:11:51 +08:00
|
|
|
* 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.
|
2007-07-11 09:09:12 +08:00
|
|
|
*/
|
2018-04-10 01:23:39 +08:00
|
|
|
return xfs_mru_cache_create(&mp->m_filestream, mp,
|
|
|
|
xfs_fstrm_centisecs * 10, 10, xfs_fstrm_free_func);
|
2014-04-23 05:11:51 +08:00
|
|
|
}
|
2007-07-11 09:09:12 +08:00
|
|
|
|
2014-04-23 05:11:51 +08:00
|
|
|
void
|
|
|
|
xfs_filestream_unmount(
|
|
|
|
xfs_mount_t *mp)
|
|
|
|
{
|
|
|
|
xfs_mru_cache_destroy(mp->m_filestream);
|
|
|
|
}
|