]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
btrfs: zoned: wait until zone is finished when allocation didn't progress
authorNaohiro Aota <naohiro.aota@wdc.com>
Fri, 8 Jul 2022 23:18:50 +0000 (08:18 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 13:16:12 +0000 (15:16 +0200)
[ Upstream commit 2ce543f478433a0eec0f72090d7e814f1d53d456 ]

When the allocated position doesn't progress, we cannot submit IOs to
finish a block group, but there should be ongoing IOs that will finish a
block group. So, in that case, we wait for a zone to be finished and retry
the allocation after that.

Introduce a new flag BTRFS_FS_NEED_ZONE_FINISH for fs_info->flags to
indicate we need a zone finish to have proceeded. The flag is set when the
allocator detected it cannot activate a new block group. And, it is cleared
once a zone is finished.

CC: stable@vger.kernel.org # 5.16+
Fixes: afba2bc036b0 ("btrfs: zoned: implement active zone tracking")
Signed-off-by: Naohiro Aota <naohiro.aota@wdc.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/btrfs/ctree.h
fs/btrfs/disk-io.c
fs/btrfs/inode.c
fs/btrfs/zoned.c

index d306db5dbdc2ddac8f18b84dff3730105e311cce..3a51d0c13a957cf29864fbf91df8bdb303a27f0d 100644 (file)
@@ -627,6 +627,9 @@ enum {
        /* Indicate we have half completed snapshot deletions pending. */
        BTRFS_FS_UNFINISHED_DROPS,
 
+       /* Indicate we have to finish a zone to do next allocation. */
+       BTRFS_FS_NEED_ZONE_FINISH,
+
 #if BITS_PER_LONG == 32
        /* Indicate if we have error/warn message printed on 32bit systems */
        BTRFS_FS_32BIT_ERROR,
@@ -1063,6 +1066,8 @@ struct btrfs_fs_info {
 
        spinlock_t zone_active_bgs_lock;
        struct list_head zone_active_bgs;
+       /* Waiters when BTRFS_FS_NEED_ZONE_FINISH is set */
+       wait_queue_head_t zone_finish_wait;
 
 #ifdef CONFIG_BTRFS_FS_REF_VERIFY
        spinlock_t ref_verify_lock;
index 804dcc69787d2b86b3032d5e1ae72a93a055c822..bc303066158373da012917b4f8b3c191a8b6489e 100644 (file)
@@ -3255,6 +3255,7 @@ void btrfs_init_fs_info(struct btrfs_fs_info *fs_info)
        init_waitqueue_head(&fs_info->transaction_blocked_wait);
        init_waitqueue_head(&fs_info->async_submit_wait);
        init_waitqueue_head(&fs_info->delayed_iputs_wait);
+       init_waitqueue_head(&fs_info->zone_finish_wait);
 
        /* Usable values until the real ones are cached from the superblock */
        fs_info->nodesize = 4096;
index 4f5249f5cb34b4fdbcf51b4f3968513ef77b2aad..61496ecb1e201213397256be0402fbd5dbd8c852 100644 (file)
@@ -1642,8 +1642,13 @@ static noinline int run_delalloc_zoned(struct btrfs_inode *inode,
                if (ret == 0)
                        done_offset = end;
 
-               if (done_offset == start)
-                       return -ENOSPC;
+               if (done_offset == start) {
+                       struct btrfs_fs_info *info = inode->root->fs_info;
+
+                       wait_var_event(&info->zone_finish_wait,
+                                      !test_bit(BTRFS_FS_NEED_ZONE_FINISH, &info->flags));
+                       continue;
+               }
 
                if (!locked_page_done) {
                        __set_page_dirty_nobuffers(locked_page);
index 4df5b36dc574496733090e68cf1532886fb78be7..31cb11daa8e82eca5a5390f5af6d00e7d71afc55 100644 (file)
@@ -2007,6 +2007,9 @@ static int do_zone_finish(struct btrfs_block_group *block_group, bool fully_writ
        /* For active_bg_list */
        btrfs_put_block_group(block_group);
 
+       clear_bit(BTRFS_FS_NEED_ZONE_FINISH, &fs_info->flags);
+       wake_up_all(&fs_info->zone_finish_wait);
+
        return 0;
 }
 
@@ -2043,6 +2046,9 @@ bool btrfs_can_activate_zone(struct btrfs_fs_devices *fs_devices, u64 flags)
        }
        mutex_unlock(&fs_info->chunk_mutex);
 
+       if (!ret)
+               set_bit(BTRFS_FS_NEED_ZONE_FINISH, &fs_info->flags);
+
        return ret;
 }