linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Naohiro Aota <naohiro.aota@wdc.com>
To: Josef Bacik <josef@toxicpanda.com>
Cc: linux-btrfs@vger.kernel.org, dsterba@suse.com, hare@suse.com,
	linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH v9 33/41] btrfs: implement copying for ZONED device-replace
Date: Tue, 10 Nov 2020 20:09:36 +0900	[thread overview]
Message-ID: <20201110110936.dtf6bx3uqdupuhk5@naota.dhcp.fujisawa.hgst.com> (raw)
In-Reply-To: <b15a7c94-97e3-e6b3-0f83-c02433992d47@toxicpanda.com>

On Tue, Nov 03, 2020 at 12:19:41PM -0500, Josef Bacik wrote:
>On 10/30/20 9:51 AM, Naohiro Aota wrote:
>>This is 3/4 patch to implement device-replace on ZONED mode.
>>
>>This commit implement copying. So, it track the write pointer during device
>>replace process. Device-replace's copying is smart to copy only used
>>extents on source device, we have to fill the gap to honor the sequential
>>write rule in the target device.
>>
>>Device-replace process in ZONED mode must copy or clone all the extents in
>>the source device exactly once.  So, we need to use to ensure allocations
>>started just before the dev-replace process to have their corresponding
>>extent information in the B-trees. finish_extent_writes_for_zoned()
>>implements that functionality, which basically is the removed code in the
>>commit 042528f8d840 ("Btrfs: fix block group remaining RO forever after
>>error during device replace").
>>
>>Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
>>---
>>  fs/btrfs/scrub.c | 86 ++++++++++++++++++++++++++++++++++++++++++++++++
>>  fs/btrfs/zoned.c | 12 +++++++
>>  fs/btrfs/zoned.h |  7 ++++
>>  3 files changed, 105 insertions(+)
>>
>>diff --git a/fs/btrfs/scrub.c b/fs/btrfs/scrub.c
>>index 371bb6437cab..aaf7882dee06 100644
>>--- a/fs/btrfs/scrub.c
>>+++ b/fs/btrfs/scrub.c
>>@@ -169,6 +169,7 @@ struct scrub_ctx {
>>  	int			pages_per_rd_bio;
>>  	int			is_dev_replace;
>>+	u64			write_pointer;
>>  	struct scrub_bio        *wr_curr_bio;
>>  	struct mutex            wr_lock;
>>@@ -1623,6 +1624,25 @@ static int scrub_write_page_to_dev_replace(struct scrub_block *sblock,
>>  	return scrub_add_page_to_wr_bio(sblock->sctx, spage);
>>  }
>>+static int fill_writer_pointer_gap(struct scrub_ctx *sctx, u64 physical)
>>+{
>>+	int ret = 0;
>>+	u64 length;
>>+
>>+	if (!btrfs_is_zoned(sctx->fs_info))
>>+		return 0;
>>+
>>+	if (sctx->write_pointer < physical) {
>>+		length = physical - sctx->write_pointer;
>>+
>>+		ret = btrfs_zoned_issue_zeroout(sctx->wr_tgtdev,
>>+						sctx->write_pointer, length);
>>+		if (!ret)
>>+			sctx->write_pointer = physical;
>>+	}
>>+	return ret;
>>+}
>>+
>>  static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
>>  				    struct scrub_page *spage)
>>  {
>>@@ -1645,6 +1665,13 @@ static int scrub_add_page_to_wr_bio(struct scrub_ctx *sctx,
>>  	if (sbio->page_count == 0) {
>>  		struct bio *bio;
>>+		ret = fill_writer_pointer_gap(sctx,
>>+					      spage->physical_for_dev_replace);
>>+		if (ret) {
>>+			mutex_unlock(&sctx->wr_lock);
>>+			return ret;
>>+		}
>>+
>>  		sbio->physical = spage->physical_for_dev_replace;
>>  		sbio->logical = spage->logical;
>>  		sbio->dev = sctx->wr_tgtdev;
>>@@ -1706,6 +1733,10 @@ static void scrub_wr_submit(struct scrub_ctx *sctx)
>>  	 * doubled the write performance on spinning disks when measured
>>  	 * with Linux 3.5 */
>>  	btrfsic_submit_bio(sbio->bio);
>>+
>>+	if (btrfs_is_zoned(sctx->fs_info))
>>+		sctx->write_pointer = sbio->physical +
>>+			sbio->page_count * PAGE_SIZE;
>>  }
>>  static void scrub_wr_bio_end_io(struct bio *bio)
>>@@ -2973,6 +3004,21 @@ static noinline_for_stack int scrub_raid56_parity(struct scrub_ctx *sctx,
>>  	return ret < 0 ? ret : 0;
>>  }
>>+static void sync_replace_for_zoned(struct scrub_ctx *sctx)
>>+{
>>+	if (!btrfs_is_zoned(sctx->fs_info))
>>+		return;
>>+
>>+	sctx->flush_all_writes = true;
>>+	scrub_submit(sctx);
>>+	mutex_lock(&sctx->wr_lock);
>>+	scrub_wr_submit(sctx);
>>+	mutex_unlock(&sctx->wr_lock);
>>+
>>+	wait_event(sctx->list_wait,
>>+		   atomic_read(&sctx->bios_in_flight) == 0);
>>+}
>>+
>>  static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
>>  					   struct map_lookup *map,
>>  					   struct btrfs_device *scrub_dev,
>>@@ -3105,6 +3151,14 @@ static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
>>  	 */
>>  	blk_start_plug(&plug);
>>+	if (sctx->is_dev_replace &&
>>+	    btrfs_dev_is_sequential(sctx->wr_tgtdev, physical)) {
>>+		mutex_lock(&sctx->wr_lock);
>>+		sctx->write_pointer = physical;
>>+		mutex_unlock(&sctx->wr_lock);
>>+		sctx->flush_all_writes = true;
>>+	}
>>+
>>  	/*
>>  	 * now find all extents for each stripe and scrub them
>>  	 */
>>@@ -3292,6 +3346,9 @@ static noinline_for_stack int scrub_stripe(struct scrub_ctx *sctx,
>>  			if (ret)
>>  				goto out;
>>+			if (sctx->is_dev_replace)
>>+				sync_replace_for_zoned(sctx);
>>+
>>  			if (extent_logical + extent_len <
>>  			    key.objectid + bytes) {
>>  				if (map->type & BTRFS_BLOCK_GROUP_RAID56_MASK) {
>>@@ -3414,6 +3471,25 @@ static noinline_for_stack int scrub_chunk(struct scrub_ctx *sctx,
>>  	return ret;
>>  }
>>+static int finish_extent_writes_for_zoned(struct btrfs_root *root,
>>+					  struct btrfs_block_group *cache)
>>+{
>>+	struct btrfs_fs_info *fs_info = cache->fs_info;
>>+	struct btrfs_trans_handle *trans;
>>+
>>+	if (!btrfs_is_zoned(fs_info))
>>+		return 0;
>>+
>>+	btrfs_wait_block_group_reservations(cache);
>>+	btrfs_wait_nocow_writers(cache);
>>+	btrfs_wait_ordered_roots(fs_info, U64_MAX, cache->start, cache->length);
>>+
>>+	trans = btrfs_join_transaction(root);
>>+	if (IS_ERR(trans))
>>+		return PTR_ERR(trans);
>>+	return btrfs_commit_transaction(trans);
>>+}
>>+
>>  static noinline_for_stack
>>  int scrub_enumerate_chunks(struct scrub_ctx *sctx,
>>  			   struct btrfs_device *scrub_dev, u64 start, u64 end)
>>@@ -3569,6 +3645,16 @@ int scrub_enumerate_chunks(struct scrub_ctx *sctx,
>>  		 * group is not RO.
>>  		 */
>>  		ret = btrfs_inc_block_group_ro(cache, sctx->is_dev_replace);
>>+		if (!ret && sctx->is_dev_replace) {
>>+			ret = finish_extent_writes_for_zoned(root, cache);
>>+			if (ret) {
>>+				btrfs_dec_block_group_ro(cache);
>>+				scrub_pause_off(fs_info);
>>+				btrfs_put_block_group(cache);
>>+				break;
>>+			}
>>+		}
>>+
>>  		if (ret == 0) {
>>  			ro_set = 1;
>>  		} else if (ret == -ENOSPC && !sctx->is_dev_replace) {
>>diff --git a/fs/btrfs/zoned.c b/fs/btrfs/zoned.c
>>index f672465d1bb1..1b080184440d 100644
>>--- a/fs/btrfs/zoned.c
>>+++ b/fs/btrfs/zoned.c
>>@@ -1181,3 +1181,15 @@ void btrfs_revert_meta_write_pointer(struct btrfs_block_group *cache,
>>  	ASSERT(cache->meta_write_pointer == eb->start + eb->len);
>>  	cache->meta_write_pointer = eb->start;
>>  }
>>+
>>+int btrfs_zoned_issue_zeroout(struct btrfs_device *device, u64 physical,
>>+			      u64 length)
>>+{
>>+	if (!btrfs_dev_is_sequential(device, physical))
>>+		return -EOPNOTSUPP;
>>+
>
>This is going to result in a bunch of scrub errors.  Is this unlikely 
>to happen?  And if it isn't, should we do something different?  If 
>it's not sequential then we can probably just write to whatever offset 
>we want right?  So do we need an error here at all?  Thanks,
>
>Josef

I'm intended to use this to synchronize the write pointer.  For
conventional zones, we don't need to synchronize it anyway. We can just
skip the unwritten area in the source device and continue the writing at
the different location.

  reply	other threads:[~2020-11-10 11:09 UTC|newest]

Thread overview: 119+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-30 13:51 [PATCH v9 00/41] btrfs: zoned block device support Naohiro Aota
2020-10-30 13:51 ` [PATCH v9 01/41] block: add bio_add_zone_append_page Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 02/41] iomap: support REQ_OP_ZONE_APPEND Naohiro Aota
2020-11-02  5:34     ` Naohiro Aota
2020-11-02 16:55     ` Darrick J. Wong
2020-11-02 17:39       ` Johannes Thumshirn
2020-10-30 13:51   ` [PATCH v9 03/41] btrfs: introduce ZONED feature flag Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 04/41] btrfs: Get zone information of zoned block devices Naohiro Aota
2020-11-02 16:53     ` Josef Bacik
2020-11-02 16:58       ` Johannes Thumshirn
2020-11-02 21:07       ` Naohiro Aota
2020-11-03 12:02     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 05/41] btrfs: Check and enable ZONED mode Naohiro Aota
2020-11-03 12:13     ` David Sterba
2020-11-06  9:36       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 06/41] btrfs: introduce max_zone_append_size Naohiro Aota
2020-11-02 16:57     ` Josef Bacik
2020-11-03 12:16     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 07/41] btrfs: disallow space_cache in ZONED mode Naohiro Aota
2020-11-02 17:02     ` Josef Bacik
2020-11-02 17:37       ` Johannes Thumshirn
2020-11-03 12:48     ` David Sterba
2020-11-10 10:14       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 08/41] btrfs: disallow NODATACOW " Naohiro Aota
2020-11-02 17:05     ` Josef Bacik
2020-11-03 12:57     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 09/41] btrfs: disable fallocate " Naohiro Aota
2020-11-03 13:00     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 10/41] btrfs: disallow mixed-bg " Naohiro Aota
2020-11-03 13:01     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 11/41] btrfs: implement log-structured superblock for " Naohiro Aota
2020-11-02 18:22     ` Josef Bacik
2020-11-02 18:53       ` Johannes Thumshirn
2020-11-02 19:01         ` Josef Bacik
2020-11-02 19:31           ` Johannes Thumshirn
2020-11-03  8:21       ` Naohiro Aota
2020-11-02 18:54     ` Josef Bacik
2020-11-03  3:31       ` Naohiro Aota
2020-11-03 13:15     ` David Sterba
2020-11-03 14:10     ` David Sterba
2020-11-06 10:37       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 12/41] btrfs: implement zoned chunk allocator Naohiro Aota
2020-11-02 20:09     ` Josef Bacik
2020-11-02 22:21       ` Naohiro Aota
2020-11-03 13:23     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 13/41] btrfs: verify device extent is aligned to zone Naohiro Aota
2020-11-02 20:14     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 14/41] btrfs: load zone's alloction offset Naohiro Aota
2020-11-02 20:25     ` Josef Bacik
2020-11-02 20:29       ` Josef Bacik
2020-11-02 22:43         ` Naohiro Aota
2020-11-02 22:40       ` Naohiro Aota
2020-11-03 13:28     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 15/41] btrfs: emulate write pointer for conventional zones Naohiro Aota
2020-11-02 20:37     ` Josef Bacik
2020-11-03  1:25       ` Naohiro Aota
2020-11-03 13:32     ` David Sterba
2020-10-30 13:51   ` [PATCH v9 16/41] btrfs: track unusable bytes for zones Naohiro Aota
2020-11-03 14:25     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 17/41] btrfs: do sequential extent allocation in ZONED mode Naohiro Aota
2020-11-03 14:28     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 18/41] btrfs: reset zones of unused block groups Naohiro Aota
2020-11-03 14:34     ` Josef Bacik
2020-11-10 10:40       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 19/41] btrfs: redirty released extent buffers in ZONED mode Naohiro Aota
2020-11-03 14:41     ` Josef Bacik
2020-11-06  9:11       ` Johannes Thumshirn
2020-11-06 15:01         ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 20/41] btrfs: extract page adding function Naohiro Aota
2020-11-03 14:45     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 21/41] btrfs: use bio_add_zone_append_page for zoned btrfs Naohiro Aota
2020-11-03 14:55     ` Josef Bacik
2020-11-10 10:42       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 22/41] btrfs: handle REQ_OP_ZONE_APPEND as writing Naohiro Aota
2020-11-03 14:57     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 23/41] btrfs: split ordered extent when bio is sent Naohiro Aota
2020-11-03 15:29     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 24/41] btrfs: extend btrfs_rmap_block for specifying a device Naohiro Aota
2020-11-03 15:32     ` Josef Bacik
2020-11-06 10:52       ` Johannes Thumshirn
2020-10-30 13:51   ` [PATCH v9 25/41] btrfs: use ZONE_APPEND write for ZONED btrfs Naohiro Aota
2020-11-03 15:55     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 26/41] btrfs: enable zone append writing for direct IO Naohiro Aota
2020-11-03 15:56     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 27/41] btrfs: introduce dedicated data write path for ZONED mode Naohiro Aota
2020-11-03 15:57     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 28/41] btrfs: serialize meta IOs on " Naohiro Aota
2020-11-03 16:04     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 29/41] btrfs: wait existing extents before truncating Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 30/41] btrfs: avoid async metadata checksum on ZONED mode Naohiro Aota
2020-11-03 16:05     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 31/41] btrfs: mark block groups to copy for device-replace Naohiro Aota
2020-11-03 17:09     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 32/41] btrfs: implement cloning for ZONED device-replace Naohiro Aota
2020-11-03 17:15     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 33/41] btrfs: implement copying " Naohiro Aota
2020-11-03 17:19     ` Josef Bacik
2020-11-10 11:09       ` Naohiro Aota [this message]
2020-10-30 13:51   ` [PATCH v9 34/41] btrfs: support dev-replace in ZONED mode Naohiro Aota
2020-11-03 20:34     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 35/41] btrfs: enable relocation " Naohiro Aota
2020-11-03 20:39     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 36/41] btrfs: relocate block group to repair IO failure in ZONED Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 37/41] btrfs: split alloc_log_tree() Naohiro Aota
2020-11-03 20:42     ` Josef Bacik
2020-11-03 22:10       ` Amy Parker
2020-11-10 11:12         ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 38/41] btrfs: extend zoned allocator to use dedicated tree-log block group Naohiro Aota
2020-11-03 20:47     ` Josef Bacik
2020-11-10  6:37       ` Naohiro Aota
2020-10-30 13:51   ` [PATCH v9 39/41] btrfs: serialize log transaction on ZONED mode Naohiro Aota
2020-11-03 20:49     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 40/41] btrfs: reorder log node allocation Naohiro Aota
2020-11-03 20:49     ` Josef Bacik
2020-10-30 13:51   ` [PATCH v9 41/41] btrfs: enable to mount ZONED incompat flag Naohiro Aota
2020-10-31  3:40   ` [PATCH v9 01/41] block: add bio_add_zone_append_page Jens Axboe
2020-11-02  5:15     ` Naohiro Aota
2020-11-02  8:24     ` Johannes Thumshirn
2020-11-03 11:54 ` [PATCH v9 00/41] btrfs: zoned block device support David Sterba

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=20201110110936.dtf6bx3uqdupuhk5@naota.dhcp.fujisawa.hgst.com \
    --to=naohiro.aota@wdc.com \
    --cc=dsterba@suse.com \
    --cc=hare@suse.com \
    --cc=josef@toxicpanda.com \
    --cc=linux-btrfs@vger.kernel.org \
    --cc=linux-fsdevel@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).