mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
md/linear: standardise all printk messages
md/linear:mdname: Signed-off-by: NeilBrown <neilb@suse.de>
This commit is contained in:
parent
b5a20961f3
commit
2dc40f8094
1 changed files with 12 additions and 8 deletions
|
@ -158,7 +158,8 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
|
||||||
sector_t sectors;
|
sector_t sectors;
|
||||||
|
|
||||||
if (j < 0 || j >= raid_disks || disk->rdev) {
|
if (j < 0 || j >= raid_disks || disk->rdev) {
|
||||||
printk("linear: disk numbering problem. Aborting!\n");
|
printk(KERN_ERR "md/linear:%s: disk numbering problem. Aborting!\n",
|
||||||
|
mdname(mddev));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -186,7 +187,8 @@ static linear_conf_t *linear_conf(mddev_t *mddev, int raid_disks)
|
||||||
|
|
||||||
}
|
}
|
||||||
if (cnt != raid_disks) {
|
if (cnt != raid_disks) {
|
||||||
printk("linear: not enough drives present. Aborting!\n");
|
printk(KERN_ERR "md/linear:%s: not enough drives present. Aborting!\n",
|
||||||
|
mdname(mddev));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -305,8 +307,10 @@ static int linear_make_request (mddev_t *mddev, struct bio *bio)
|
||||||
|| (bio->bi_sector < start_sector))) {
|
|| (bio->bi_sector < start_sector))) {
|
||||||
char b[BDEVNAME_SIZE];
|
char b[BDEVNAME_SIZE];
|
||||||
|
|
||||||
printk("linear_make_request: Sector %llu out of bounds on "
|
printk(KERN_ERR
|
||||||
|
"md/linear:%s: make_request: Sector %llu out of bounds on "
|
||||||
"dev %s: %llu sectors, offset %llu\n",
|
"dev %s: %llu sectors, offset %llu\n",
|
||||||
|
mdname(mddev),
|
||||||
(unsigned long long)bio->bi_sector,
|
(unsigned long long)bio->bi_sector,
|
||||||
bdevname(tmp_dev->rdev->bdev, b),
|
bdevname(tmp_dev->rdev->bdev, b),
|
||||||
(unsigned long long)tmp_dev->rdev->sectors,
|
(unsigned long long)tmp_dev->rdev->sectors,
|
||||||
|
|
Loading…
Add table
Reference in a new issue