mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
linear: correct disk numbering error check
From: "Nikanth Karthikesan" <knikanth@novell.com> Correct disk numbering problem check. Signed-off-by: Nikanth Karthikesan <knikanth@suse.de> Signed-off-by: Neil Brown <neilb@suse.de>
This commit is contained in:
parent
9bbbca3a0e
commit
13864515f7
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
|
|||
int j = rdev->raid_disk;
|
||||
dev_info_t *disk = conf->disks + j;
|
||||
|
||||
if (j < 0 || j > raid_disks || disk->rdev) {
|
||||
if (j < 0 || j >= raid_disks || disk->rdev) {
|
||||
printk("linear: disk numbering problem. Aborting!\n");
|
||||
goto out;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue