From: Brian Foster <bfoster@redhat.com>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-xfs@vger.kernel.org
Subject: Re: [PATCH 2/7] xfs: convert growfs AG header init to use buffer lists
Date: Thu, 8 Feb 2018 13:53:21 -0500 [thread overview]
Message-ID: <20180208185320.GB15342@bfoster.bfoster> (raw)
In-Reply-To: <20180201064202.7174-3-david@fromorbit.com>
On Thu, Feb 01, 2018 at 05:41:57PM +1100, Dave Chinner wrote:
> From: Dave Chinner <dchinner@redhat.com>
>
> We currently write all new AG headers synchronously, which can be
> slow for large grow operations. All we really need to do is ensure
> all the headers are on disk before we run the growfs transaction, so
> convert this to a buffer list and a delayed write operation. We
> block waiting for the delayed write buffer submission to complete,
> so this will fulfill the requirement to have all the buffers written
> correctly before proceeding.
>
> Signed-Off-By: Dave Chinner <dchinner@redhat.com>
> ---
Reviewed-by: Brian Foster <bfoster@redhat.com>
> fs/xfs/xfs_fsops.c | 74 ++++++++++++++++++++++++------------------------------
> 1 file changed, 33 insertions(+), 41 deletions(-)
>
> diff --git a/fs/xfs/xfs_fsops.c b/fs/xfs/xfs_fsops.c
> index cd5196bf8756..d9e08d8cf9ac 100644
> --- a/fs/xfs/xfs_fsops.c
> +++ b/fs/xfs/xfs_fsops.c
> @@ -81,7 +81,8 @@ xfs_grow_ag_headers(
> struct xfs_mount *mp,
> xfs_agnumber_t agno,
> xfs_extlen_t agsize,
> - xfs_rfsblock_t *nfree)
> + xfs_rfsblock_t *nfree,
> + struct list_head *buffer_list)
> {
> struct xfs_agf *agf;
> struct xfs_agi *agi;
> @@ -135,11 +136,8 @@ xfs_grow_ag_headers(
> agf->agf_refcount_level = cpu_to_be32(1);
> agf->agf_refcount_blocks = cpu_to_be32(1);
> }
> -
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /*
> * AG freelist header block
> @@ -164,10 +162,8 @@ xfs_grow_ag_headers(
> for (bucket = 0; bucket < XFS_AGFL_SIZE(mp); bucket++)
> agfl_bno[bucket] = cpu_to_be32(NULLAGBLOCK);
>
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /*
> * AG inode header block
> @@ -201,10 +197,8 @@ xfs_grow_ag_headers(
> for (bucket = 0; bucket < XFS_AGI_UNLINKED_BUCKETS; bucket++)
> agi->agi_unlinked[bucket] = cpu_to_be32(NULLAGINO);
>
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /*
> * BNO btree root block
> @@ -226,10 +220,8 @@ xfs_grow_ag_headers(
> arec->ar_blockcount = cpu_to_be32(
> agsize - be32_to_cpu(arec->ar_startblock));
>
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /*
> * CNT btree root block
> @@ -251,10 +243,8 @@ xfs_grow_ag_headers(
> agsize - be32_to_cpu(arec->ar_startblock));
> *nfree += be32_to_cpu(arec->ar_blockcount);
>
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /* RMAP btree root block */
> if (xfs_sb_version_hasrmapbt(&mp->m_sb)) {
> @@ -326,10 +316,8 @@ xfs_grow_ag_headers(
> be16_add_cpu(&block->bb_numrecs, 1);
> }
>
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
> }
>
> /*
> @@ -345,11 +333,8 @@ xfs_grow_ag_headers(
> }
>
> xfs_btree_init_block(mp, bp, XFS_BTNUM_INO , 0, 0, agno, 0);
> -
> - error = xfs_bwrite(bp);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
>
> /*
> * FINO btree root block
> @@ -364,13 +349,9 @@ xfs_grow_ag_headers(
> goto out_error;
> }
>
> - xfs_btree_init_block(mp, bp, XFS_BTNUM_FINO,
> - 0, 0, agno, 0);
> -
> - error = xfs_bwrite(bp);
> + xfs_btree_init_block(mp, bp, XFS_BTNUM_FINO, 0, 0, agno, 0);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
> }
>
> /*
> @@ -386,13 +367,9 @@ xfs_grow_ag_headers(
> goto out_error;
> }
>
> - xfs_btree_init_block(mp, bp, XFS_BTNUM_REFC,
> - 0, 0, agno, 0);
> -
> - error = xfs_bwrite(bp);
> + xfs_btree_init_block(mp, bp, XFS_BTNUM_REFC, 0, 0, agno, 0);
> + xfs_buf_delwri_queue(bp, buffer_list);
> xfs_buf_relse(bp);
> - if (error)
> - goto out_error;
> }
>
> out_error:
> @@ -419,6 +396,7 @@ xfs_growfs_data_private(
> xfs_agnumber_t oagcount;
> int pct;
> xfs_trans_t *tp;
> + LIST_HEAD (buffer_list);
>
> nb = in->newblocks;
> pct = in->imaxpct;
> @@ -459,9 +437,16 @@ xfs_growfs_data_private(
> return error;
>
> /*
> - * Write new AG headers to disk. Non-transactional, but written
> - * synchronously so they are completed prior to the growfs transaction
> - * being logged.
> + * Write new AG headers to disk. Non-transactional, but need to be
> + * written and completed prior to the growfs transaction being logged.
> + * To do this, we use a delayed write buffer list and wait for
> + * submission and IO completion of the list as a whole. This allows the
> + * IO subsystem to merge all the AG headers in a single AG into a single
> + * IO and hide most of the latency of the IO from us.
> + *
> + * This also means that if we get an error whilst building the buffer
> + * list to write, we can cancel the entire list without having written
> + * anything.
> */
> nfree = 0;
> for (agno = nagcount - 1; agno >= oagcount; agno--, new -= agsize) {
> @@ -472,10 +457,17 @@ xfs_growfs_data_private(
> else
> agsize = mp->m_sb.sb_agblocks;
>
> - error = xfs_grow_ag_headers(mp, agno, agsize, &nfree);
> - if (error)
> + error = xfs_grow_ag_headers(mp, agno, agsize, &nfree,
> + &buffer_list);
> + if (error) {
> + xfs_buf_delwri_cancel(&buffer_list);
> goto error0;
> + }
> }
> + error = xfs_buf_delwri_submit(&buffer_list);
> + if (error)
> + goto error0;
> +
> xfs_trans_agblocks_delta(tp, nfree);
>
> /*
> --
> 2.15.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2018-02-08 18:53 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-01 6:41 [PATCH 0/7] xfs: refactor and tablise growfs Dave Chinner
2018-02-01 6:41 ` [PATCH 1/7] xfs: factor out AG header initialisation from growfs core Dave Chinner
2018-02-08 18:53 ` Brian Foster
2018-02-01 6:41 ` [PATCH 2/7] xfs: convert growfs AG header init to use buffer lists Dave Chinner
2018-02-08 18:53 ` Brian Foster [this message]
2018-02-01 6:41 ` [PATCH 3/7] xfs: factor ag btree reoot block initialisation Dave Chinner
2018-02-08 18:54 ` Brian Foster
2018-02-08 20:00 ` Darrick J. Wong
2018-02-09 13:10 ` Brian Foster
2018-02-12 0:45 ` Darrick J. Wong
2018-02-15 5:53 ` Darrick J. Wong
2018-02-01 6:41 ` [PATCH 4/7] xfs: turn ag header initialisation into a table driven operation Dave Chinner
2018-02-09 16:11 ` Brian Foster
2018-02-01 6:42 ` [PATCH 5/7] xfs: make imaxpct changes in growfs separate Dave Chinner
2018-02-09 16:11 ` Brian Foster
2018-02-15 22:10 ` Dave Chinner
2018-02-01 6:42 ` [PATCH 6/7] xfs: separate secondary sb update in growfs Dave Chinner
2018-02-09 16:11 ` Brian Foster
2018-02-15 22:23 ` Dave Chinner
2018-02-16 12:31 ` Brian Foster
2018-02-01 6:42 ` [PATCH 7/7] xfs: rework secondary superblock updates " Dave Chinner
2018-02-09 16:12 ` Brian Foster
2018-02-15 22:31 ` Dave Chinner
2018-02-16 12:56 ` Brian Foster
2018-02-16 16:20 ` Darrick J. Wong
2018-02-19 2:16 ` Dave Chinner
2018-02-19 13:21 ` Brian Foster
2018-02-19 22:14 ` Dave Chinner
2018-02-20 12:44 ` Brian Foster
2018-03-24 0:37 ` Darrick J. Wong
2018-02-06 23:44 ` [PATCH 0/7] xfs: refactor and tablise growfs Darrick J. Wong
2018-02-07 7:10 ` Dave Chinner
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=20180208185320.GB15342@bfoster.bfoster \
--to=bfoster@redhat.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).