]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
md: don't record new badblocks for faulty rdev
authorYu Kuai <yukuai3@huawei.com>
Thu, 31 Oct 2024 03:31:10 +0000 (11:31 +0800)
committerSong Liu <song@kernel.org>
Wed, 6 Nov 2024 00:08:38 +0000 (16:08 -0800)
Faulty will be checked before issuing IO to the rdev, however, rdev can
be faulty at any time, hence it's possible that rdev_set_badblocks()
will be called for faulty rdev. In this case, mddev->sb_flags will be
set and some other path can be blocked by updating super block.

Since faulty rdev will not be accesed anymore, there is no need to
record new babblocks for faulty rdev and forcing updating super block.

Noted this is not a bugfix, just prevent updating superblock in some
corner cases, and will help to slice a bug related to external
metadata[1], testing also shows that devices are removed faster in the
case IO error.

[1] https://lore.kernel.org/all/f34452df-810b-48b2-a9b4-7f925699a9e7@linux.intel.com/

Signed-off-by: Yu Kuai <yukuai3@huawei.com>
Tested-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com>
Link: https://lore.kernel.org/r/20241031033114.3845582-4-yukuai1@huaweicloud.com
Signed-off-by: Song Liu <song@kernel.org>
drivers/md/md.c

index b2a0e0a843090df1022e3b02bc51605ddfad545e..bbe002ebd584f7f774eb09f75b3b6afa44141e98 100644 (file)
@@ -9791,6 +9791,17 @@ int rdev_set_badblocks(struct md_rdev *rdev, sector_t s, int sectors,
 {
        struct mddev *mddev = rdev->mddev;
        int rv;
+
+       /*
+        * Recording new badblocks for faulty rdev will force unnecessary
+        * super block updating. This is fragile for external management because
+        * userspace daemon may trying to remove this device and deadlock may
+        * occur. This will be probably solved in the mdadm, but it is safer to
+        * avoid it.
+        */
+       if (test_bit(Faulty, &rdev->flags))
+               return 1;
+
        if (is_new)
                s += rdev->new_data_offset;
        else