From: "Darrick J. Wong" <darrick.wong@oracle.com>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 4/7] xfs: finobt AG reserves don't consider last AG can be a runt
Date: Tue, 20 Nov 2018 14:49:08 -0800 [thread overview]
Message-ID: <20181120224908.GH6792@magnolia> (raw)
In-Reply-To: <20181119210459.8506-5-david@fromorbit.com>
On Tue, Nov 20, 2018 at 08:04:56AM +1100, Dave Chinner wrote:
> From: Dave Chinner <dchinner@redhat.com>
>
> The last AG may be very small comapred to all other AGs, and hence
> AG reservations based on the superblock AG size may actually consume
> more space than the AG actually has. This results on assert failures
> like:
>
> XFS: Assertion failed: xfs_perag_resv(pag, XFS_AG_RESV_METADATA)->ar_reserved + xfs_perag_resv(pag, XFS_AG_RESV_RMAPBT)->ar_reserved <= pag->pagf_freeblks + pag->pagf_flcount, file: fs/xfs/libxfs/xfs_ag_resv.c, line: 319
> [ 48.932891] xfs_ag_resv_init+0x1bd/0x1d0
> [ 48.933853] xfs_fs_reserve_ag_blocks+0x37/0xb0
> [ 48.934939] xfs_mountfs+0x5b3/0x920
> [ 48.935804] xfs_fs_fill_super+0x462/0x640
> [ 48.936784] ? xfs_test_remount_options+0x60/0x60
> [ 48.937908] mount_bdev+0x178/0x1b0
> [ 48.938751] mount_fs+0x36/0x170
> [ 48.939533] vfs_kern_mount.part.43+0x54/0x130
> [ 48.940596] do_mount+0x20e/0xcb0
> [ 48.941396] ? memdup_user+0x3e/0x70
> [ 48.942249] ksys_mount+0xba/0xd0
> [ 48.943046] __x64_sys_mount+0x21/0x30
> [ 48.943953] do_syscall_64+0x54/0x170
> [ 48.944835] entry_SYSCALL_64_after_hwframe+0x49/0xbe
>
> Hence we need to ensure the finobt per-ag space reservations take
> into account the size of the last AG rather than treat it like all
> the other full size AGs.
>
> Note that both refcountbt and rmapbt already take the size of the AG
> into account via reading the AGF length directly.
>
> Signed-off-by: Dave Chinner <dchinner@redhat.com>
Looks ok now,
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
--D
> ---
> fs/xfs/libxfs/xfs_ialloc_btree.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/fs/xfs/libxfs/xfs_ialloc_btree.c b/fs/xfs/libxfs/xfs_ialloc_btree.c
> index 86c50208a143..7fbf8af0b159 100644
> --- a/fs/xfs/libxfs/xfs_ialloc_btree.c
> +++ b/fs/xfs/libxfs/xfs_ialloc_btree.c
> @@ -538,15 +538,18 @@ xfs_inobt_rec_check_count(
>
> static xfs_extlen_t
> xfs_inobt_max_size(
> - struct xfs_mount *mp)
> + struct xfs_mount *mp,
> + xfs_agnumber_t agno)
> {
> + xfs_agblock_t agblocks = xfs_ag_block_count(mp, agno);
> +
> /* Bail out if we're uninitialized, which can happen in mkfs. */
> if (mp->m_inobt_mxr[0] == 0)
> return 0;
>
> return xfs_btree_calc_size(mp->m_inobt_mnr,
> - (uint64_t)mp->m_sb.sb_agblocks * mp->m_sb.sb_inopblock /
> - XFS_INODES_PER_CHUNK);
> + (uint64_t)agblocks * mp->m_sb.sb_inopblock /
> + XFS_INODES_PER_CHUNK);
> }
>
> static int
> @@ -594,7 +597,7 @@ xfs_finobt_calc_reserves(
> if (error)
> return error;
>
> - *ask += xfs_inobt_max_size(mp);
> + *ask += xfs_inobt_max_size(mp, agno);
> *used += tree_len;
> return 0;
> }
> --
> 2.19.1
>
next prev parent reply other threads:[~2018-11-21 9:20 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-19 21:04 [PATCH 0/7] xfs: various fixes for 4.20 Dave Chinner
2018-11-19 21:04 ` [PATCH 1/7] xfs: zero length symlinks are not valid Dave Chinner
2018-11-20 8:12 ` Christoph Hellwig
2018-11-20 13:44 ` Brian Foster
2018-11-20 21:19 ` Dave Chinner
2018-11-21 12:01 ` Brian Foster
2018-11-19 21:04 ` [PATCH 2/7] xfs: uncached buffer tracing needs to print bno Dave Chinner
2018-11-20 8:12 ` Christoph Hellwig
2018-11-20 22:46 ` Darrick J. Wong
2018-11-19 21:04 ` [PATCH 3/7] xfs: fix transient reference count error in xfs_buf_resubmit_failed_buffers Dave Chinner
2018-11-20 8:13 ` Christoph Hellwig
2018-11-20 22:48 ` Darrick J. Wong
2018-11-19 21:04 ` [PATCH 4/7] xfs: finobt AG reserves don't consider last AG can be a runt Dave Chinner
2018-11-20 8:14 ` Christoph Hellwig
2018-11-20 22:49 ` Darrick J. Wong [this message]
2018-11-19 21:04 ` [PATCH 5/7] xfs: extent shifting doesn't fully invalidate page cache Dave Chinner
2018-11-20 8:18 ` Christoph Hellwig
2018-11-20 22:53 ` Darrick J. Wong
2018-11-19 21:04 ` [PATCH 6/7] xfs: don't ENOSPC on writeback when punching holes Dave Chinner
2018-11-20 8:20 ` Christoph Hellwig
2018-11-20 9:50 ` Dave Chinner
2018-11-20 16:28 ` Christoph Hellwig
2018-11-20 21:00 ` Dave Chinner
2018-11-21 18:09 ` Darrick J. Wong
2018-11-22 2:31 ` Dave Chinner
2018-11-19 21:04 ` [PATCH 7/7] xfs: flush removing page cache in xfs_reflink_remap_prep Dave Chinner
2018-11-20 8:32 ` Christoph Hellwig
2018-11-20 22:56 ` Darrick J. Wong
2018-11-20 6:36 ` [PATCH 8/7] xfs: delalloc -> unwritten COW fork allocation can go wrong Dave Chinner
2018-11-20 13:45 ` Brian Foster
2018-11-20 16:33 ` Christoph Hellwig
2018-11-20 21:08 ` Dave Chinner
2018-11-20 16:32 ` Christoph Hellwig
2018-11-20 22:58 ` Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181120224908.GH6792@magnolia \
--to=darrick.wong@oracle.com \
--cc=david@fromorbit.com \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.