提交 c06aaf01 编写于 作者: M Markus Armbruster 提交者: Kevin Wolf

hd-geometry: Unnest conditional in hd_geometry_guess()

Signed-off-by: NMarkus Armbruster <armbru@redhat.com>
Signed-off-by: NKevin Wolf <kwolf@redhat.com>
上级 31f7eedf
...@@ -104,58 +104,58 @@ void hd_geometry_guess(BlockDriverState *bs, ...@@ -104,58 +104,58 @@ void hd_geometry_guess(BlockDriverState *bs,
int cylinders, heads, secs; int cylinders, heads, secs;
uint64_t nb_sectors; uint64_t nb_sectors;
/* if a geometry hint is available, use it */
bdrv_get_geometry(bs, &nb_sectors); bdrv_get_geometry(bs, &nb_sectors);
bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs); bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
translation = bdrv_get_translation_hint(bs); translation = bdrv_get_translation_hint(bs);
if (cylinders != 0) { if (cylinders != 0) {
/* already got a geometry hint: use it */
*pcyls = cylinders; *pcyls = cylinders;
*pheads = heads; *pheads = heads;
*psecs = secs; *psecs = secs;
} else { return;
if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) { }
if (heads > 16) {
/* if heads > 16, it means that a BIOS LBA
translation was active, so the default
hardware geometry is OK */
lba_detected = 1;
goto default_geometry;
} else {
*pcyls = cylinders;
*pheads = heads;
*psecs = secs;
/* disable any translation to be in sync with
the logical geometry */
if (translation == BIOS_ATA_TRANSLATION_AUTO) {
bdrv_set_translation_hint(bs,
BIOS_ATA_TRANSLATION_NONE);
}
}
} else {
default_geometry:
/* if no geometry, use a standard physical disk geometry */
cylinders = nb_sectors / (16 * 63);
if (cylinders > 16383) { if (guess_disk_lchs(bs, &cylinders, &heads, &secs) < 0) {
cylinders = 16383; /* no LCHS guess: use a standard physical disk geometry */
} else if (cylinders < 2) { default_geometry:
cylinders = 2; cylinders = nb_sectors / (16 * 63);
}
*pcyls = cylinders; if (cylinders > 16383) {
*pheads = 16; cylinders = 16383;
*psecs = 63; } else if (cylinders < 2) {
if ((lba_detected == 1) cylinders = 2;
&& (translation == BIOS_ATA_TRANSLATION_AUTO)) { }
if ((*pcyls * *pheads) <= 131072) { *pcyls = cylinders;
bdrv_set_translation_hint(bs, *pheads = 16;
BIOS_ATA_TRANSLATION_LARGE); *psecs = 63;
} else { if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
bdrv_set_translation_hint(bs, if ((*pcyls * *pheads) <= 131072) {
BIOS_ATA_TRANSLATION_LBA); bdrv_set_translation_hint(bs,
} BIOS_ATA_TRANSLATION_LARGE);
} else {
bdrv_set_translation_hint(bs,
BIOS_ATA_TRANSLATION_LBA);
} }
} }
bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs); } else if (heads > 16) {
/* LCHS guess with heads > 16 means that a BIOS LBA
translation was active, so a standard physical disk
geometry is OK */
lba_detected = 1;
goto default_geometry;
} else {
/* LCHS guess with heads <= 16: use as physical geometry */
*pcyls = cylinders;
*pheads = heads;
*psecs = secs;
/* disable any translation to be in sync with
the logical geometry */
if (translation == BIOS_ATA_TRANSLATION_AUTO) {
bdrv_set_translation_hint(bs,
BIOS_ATA_TRANSLATION_NONE);
}
} }
bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
trace_hd_geometry_guess(bs, *pcyls, *pheads, *psecs, translation); trace_hd_geometry_guess(bs, *pcyls, *pheads, *psecs, translation);
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册