ide: skip not present devices in init_gendisk()
No need to initialize drive->gendev and waste memory on IDE settings for not present devices. Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
This commit is contained in:
Родитель
521fd1e8d1
Коммит
5c2854e62c
|
@ -1188,6 +1188,10 @@ static void init_gendisk (ide_hwif_t *hwif)
|
||||||
|
|
||||||
for (unit = 0; unit < MAX_DRIVES; ++unit) {
|
for (unit = 0; unit < MAX_DRIVES; ++unit) {
|
||||||
ide_drive_t * drive = &hwif->drives[unit];
|
ide_drive_t * drive = &hwif->drives[unit];
|
||||||
|
|
||||||
|
if (!drive->present)
|
||||||
|
continue;
|
||||||
|
|
||||||
ide_add_generic_settings(drive);
|
ide_add_generic_settings(drive);
|
||||||
snprintf(drive->gendev.bus_id,BUS_ID_SIZE,"%u.%u",
|
snprintf(drive->gendev.bus_id,BUS_ID_SIZE,"%u.%u",
|
||||||
hwif->index,unit);
|
hwif->index,unit);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче