ide: Change ide_init_drive() to require valid dinfo argument
IDEState members drive_serial_str and version are now left empty until an actual drive is connected. Before, they got a default value that was overwritten when a drive got connected. Doesn't matter, because they're used only while a drive is connected. Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
d459da0ed4
commit
870111c8ed
@ -2601,7 +2601,6 @@ void ide_init_drive(IDEState *s, DriveInfo *dinfo, const char *version)
|
||||
int cylinders, heads, secs;
|
||||
uint64_t nb_sectors;
|
||||
|
||||
if (dinfo && dinfo->bdrv) {
|
||||
s->bs = dinfo->bdrv;
|
||||
bdrv_get_geometry(s->bs, &nb_sectors);
|
||||
bdrv_guess_geometry(s->bs, &cylinders, &heads, &secs);
|
||||
@ -2621,10 +2620,10 @@ void ide_init_drive(IDEState *s, DriveInfo *dinfo, const char *version)
|
||||
}
|
||||
strncpy(s->drive_serial_str, drive_get_serial(s->bs),
|
||||
sizeof(s->drive_serial_str));
|
||||
}
|
||||
if (strlen(s->drive_serial_str) == 0)
|
||||
if (!*s->drive_serial_str) {
|
||||
snprintf(s->drive_serial_str, sizeof(s->drive_serial_str),
|
||||
"QM%05d", s->drive_serial);
|
||||
}
|
||||
if (version) {
|
||||
pstrcpy(s->version, sizeof(s->version), version);
|
||||
} else {
|
||||
@ -2646,7 +2645,11 @@ static void ide_init1(IDEBus *bus, int unit, DriveInfo *dinfo)
|
||||
s->smart_selftest_data = qemu_blockalign(s->bs, 512);
|
||||
s->sector_write_timer = qemu_new_timer(vm_clock,
|
||||
ide_sector_write_timer_cb, s);
|
||||
if (dinfo) {
|
||||
ide_init_drive(s, dinfo, NULL);
|
||||
} else {
|
||||
ide_reset(s);
|
||||
}
|
||||
}
|
||||
|
||||
void ide_init2(IDEBus *bus, DriveInfo *hd0, DriveInfo *hd1,
|
||||
|
Loading…
Reference in New Issue
Block a user