summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorgrog <grog@FreeBSD.org>2001-01-14 06:33:10 +0000
committergrog <grog@FreeBSD.org>2001-01-14 06:33:10 +0000
commit75e58e6a2acba2f328efcb016e150b0969529742 (patch)
treeb8026e6454898483e8f9e615bf74596411f94b5b /sys
parent7dca63380028f83b7e2a3e6ce76411bb47a4dfd4 (diff)
downloadFreeBSD-src-75e58e6a2acba2f328efcb016e150b0969529742.zip
FreeBSD-src-75e58e6a2acba2f328efcb016e150b0969529742.tar.gz
format_config: If a subdisk loses its drive (due to a bug which has
not yet been caught), don't save the config with a null drive name (which causes the drive to be renamed "plex" on the next start), put in the text "*invalid*" instead. This is damage control, not a fix. Experienced by: peter Break some long format strings so that they fit in style(9)-sized lines. Remove some "outdentation".
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/vinum/vinumio.c37
1 files changed, 25 insertions, 12 deletions
diff --git a/sys/dev/vinum/vinumio.c b/sys/dev/vinum/vinumio.c
index 511b8fa..cb66d29 100644
--- a/sys/dev/vinum/vinumio.c
+++ b/sys/dev/vinum/vinumio.c
@@ -114,15 +114,15 @@ open_drive(struct drive *drive, struct proc *p, int verbose)
||((dname[2] < 'a') || (dname[2] > 'h'))) /* or invalid partition */
return ENODEV;
devminor = ((unit & 31) << 3) /* unit */
- +(dname[2] - 'a') /* partition */
- +((dname[1] - '0' + 1) << 16) /* slice */
- +((unit & ~31) << 16); /* high-order unit bits */
+ +(dname[2] - 'a') /* partition */
+ +((dname[1] - '0' + 1) << 16) /* slice */
+ +((unit & ~31) << 16); /* high-order unit bits */
} else { /* compatibility partition */
if ((*dname < 'a') || (*dname > 'h')) /* or invalid partition */
return ENODEV;
devminor = (*dname - 'a') /* partition */
- +((unit & 31) << 3) /* unit */
- +((unit & ~31) << 16); /* high-order unit bits */
+ +((unit & 31) << 3) /* unit */
+ +((unit & ~31) << 16); /* high-order unit bits */
}
if ((unit & 7) == 2) /* partition c */
@@ -414,7 +414,7 @@ check_drive(char *devicename)
if (read_drive_label(drive, 0) == DL_OURS) { /* one of ours */
for (i = 0; i < vinum_conf.drives_allocated; i++) { /* see if the name already exists */
if ((i != driveno) /* not this drive */
-&&(DRIVE[i].state != drive_unallocated) /* and it's allocated */
+ &&(DRIVE[i].state != drive_unallocated) /* and it's allocated */
&&(strcmp(DRIVE[i].label.name,
DRIVE[driveno].label.name) == 0)) { /* and it has the same name */
struct drive *mydrive = &DRIVE[i];
@@ -535,17 +535,30 @@ format_config(char *config, int len)
/* And finally the subdisk configuration */
for (i = 0; i < vinum_conf.subdisks_allocated; i++) {
struct sd *sd;
+ char *drivename;
sd = &SD[i];
if ((sd->state != sd_referenced)
&& (sd->state != sd_unallocated)
&& (sd->name[0] != '\0')) { /* paranoia */
+ drivename = vinum_conf.drive[sd->driveno].label.name;
+ /*
+ * XXX We've seen cases of dead subdisks
+ * which don't have a drive. If we let them
+ * through here, the drive name is null, so
+ * they get the drive named 'plex'.
+ *
+ * This is a breakage limiter, not a fix.
+ */
+ if (drivename[0] == '\0')
+ drivename = "*invalid*";
if (sd->plexno >= 0)
snprintf(s,
configend - s,
- "sd name %s drive %s plex %s state %s len %llus driveoffset %llus plexoffset %llds\n",
+ "sd name %s drive %s plex %s state %s "
+ "len %llus driveoffset %llus plexoffset %llds\n",
sd->name,
- vinum_conf.drive[sd->driveno].label.name,
+ drivename,
vinum_conf.plex[sd->plexno].name,
sd_state(sd->state),
(unsigned long long) sd->sectors,
@@ -554,15 +567,15 @@ format_config(char *config, int len)
else
snprintf(s,
configend - s,
- "sd name %s drive %s state %s len %llus driveoffset %llus detached\n",
+ "sd name %s drive %s state %s "
+ "len %llus driveoffset %llus detached\n",
sd->name,
- vinum_conf.drive[sd->driveno].label.name,
+ drivename,
sd_state(sd->state),
(unsigned long long) sd->sectors,
(unsigned long long) sd->driveoffset);
while (*s)
s++; /* find the end */
-
}
}
if (s > &config[len - 2])
@@ -847,7 +860,7 @@ vinum_scandisk(char *devicename[], int drives)
part);
drive = check_drive(partname); /* try to open it */
if ((drive->lasterror != 0) /* didn't work, */
- ||(drive->state != drive_up))
+ ||(drive->state != drive_up))
free_drive(drive); /* get rid of it */
else if (drive->flags & VF_CONFIGURED) /* already read this config, */
log(LOG_WARNING,
OpenPOWER on IntegriCloud