md: add mddev->pers to avoid potential NULL pointer dereference
commit ee37e62191a59d253fc916b9fc763deb777211e2 upstream.
When doing re-add, we need to ensure rdev->mddev->pers is not NULL,
which can avoid potential NULL pointer derefence in fallowing
add_bound_rdev().
Fixes: a6da4ef85c
("md: re-add a failed disk")
Cc: Xiao Ni <xni@redhat.com>
Cc: NeilBrown <neilb@suse.com>
Cc: <stable@vger.kernel.org> # 4.4+
Reviewed-by: NeilBrown <neilb@suse.com>
Signed-off-by: Yufen Yu <yuyufen@huawei.com>
Signed-off-by: Song Liu <songliubraving@fb.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ade291d223
commit
bc065776c3
1 changed files with 4 additions and 2 deletions
|
@ -2690,8 +2690,10 @@ state_store(struct md_rdev *rdev, const char *buf, size_t len)
|
||||||
err = 0;
|
err = 0;
|
||||||
}
|
}
|
||||||
} else if (cmd_match(buf, "re-add")) {
|
} else if (cmd_match(buf, "re-add")) {
|
||||||
if (test_bit(Faulty, &rdev->flags) && (rdev->raid_disk == -1) &&
|
if (!rdev->mddev->pers)
|
||||||
rdev->saved_raid_disk >= 0) {
|
err = -EINVAL;
|
||||||
|
else if (test_bit(Faulty, &rdev->flags) && (rdev->raid_disk == -1) &&
|
||||||
|
rdev->saved_raid_disk >= 0) {
|
||||||
/* clear_bit is performed _after_ all the devices
|
/* clear_bit is performed _after_ all the devices
|
||||||
* have their local Faulty bit cleared. If any writes
|
* have their local Faulty bit cleared. If any writes
|
||||||
* happen in the meantime in the local node, they
|
* happen in the meantime in the local node, they
|
||||||
|
|
Loading…
Add table
Reference in a new issue