Remove 'ad:' prefix from disk serial number. We don't want serial number

to change when we reconnect the disk in a way that it is accessible through
CAM for example.

Discussed with:	trasz
This commit is contained in:
pjd 2009-09-04 09:33:50 +00:00
parent b1eaddb48f
commit e49c4b7112

View File

@ -136,8 +136,8 @@ ad_attach(device_t dev)
if ((atadev->param.support.command2 & ATA_SUPPORT_CFA) ||
atadev->param.config == ATA_PROTO_CFA)
adp->disk->d_flags = DISKFLAG_CANDELETE;
snprintf(adp->disk->d_ident, sizeof(adp->disk->d_ident), "ad:%s",
atadev->param.serial);
strlcpy(adp->disk->d_ident, atadev->param.serial,
sizeof(adp->disk->d_ident));
disk_create(adp->disk, DISK_VERSION);
device_add_child(dev, "subdisk", device_get_unit(dev));
ad_firmware_geom_adjust(dev, adp->disk);