* [Qemu-devel] [PATCH 1.0] scsi-disk: guess geometry
@ 2011-11-15 15:57 Paolo Bonzini
2011-11-18 12:38 ` Kevin Wolf
0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2011-11-15 15:57 UTC (permalink / raw)
To: qemu-devel
Old operating systems rely on correct geometry to convert from CHS
addresses to LBA. Providing correct data is necessary for them to boot.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
This fixes booting the FreeDOS image on bochs.sf.net with
virtio-scsi. I haven't tested with LSI option ROMs, but
it should qualify for 1.0.
hw/scsi-disk.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hw/scsi-disk.c b/hw/scsi-disk.c
index 16a4714..cd77780 100644
--- a/hw/scsi-disk.c
+++ b/hw/scsi-disk.c
@@ -828,7 +828,7 @@ static int mode_sense_page(SCSIDiskState *s, int page, uint8_t **p_outbuf,
break;
}
/* if a geometry hint is available, use it */
- bdrv_get_geometry_hint(bdrv, &cylinders, &heads, &secs);
+ bdrv_guess_geometry(bdrv, &cylinders, &heads, &secs);
p[2] = (cylinders >> 16) & 0xff;
p[3] = (cylinders >> 8) & 0xff;
p[4] = cylinders & 0xff;
@@ -862,7 +862,7 @@ static int mode_sense_page(SCSIDiskState *s, int page, uint8_t **p_outbuf,
p[2] = 5000 >> 8;
p[3] = 5000 & 0xff;
/* if a geometry hint is available, use it */
- bdrv_get_geometry_hint(bdrv, &cylinders, &heads, &secs);
+ bdrv_guess_geometry(bdrv, &cylinders, &heads, &secs);
p[4] = heads & 0xff;
p[5] = secs & 0xff;
p[6] = s->qdev.blocksize >> 8;
--
1.7.7.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH 1.0] scsi-disk: guess geometry
2011-11-15 15:57 [Qemu-devel] [PATCH 1.0] scsi-disk: guess geometry Paolo Bonzini
@ 2011-11-18 12:38 ` Kevin Wolf
0 siblings, 0 replies; 2+ messages in thread
From: Kevin Wolf @ 2011-11-18 12:38 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel
Am 15.11.2011 16:57, schrieb Paolo Bonzini:
> Old operating systems rely on correct geometry to convert from CHS
> addresses to LBA. Providing correct data is necessary for them to boot.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> This fixes booting the FreeDOS image on bochs.sf.net with
> virtio-scsi. I haven't tested with LSI option ROMs, but
> it should qualify for 1.0.
Thanks, applied to the block-stable branch (for 1.0)
Kevin
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-18 12:35 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-15 15:57 [Qemu-devel] [PATCH 1.0] scsi-disk: guess geometry Paolo Bonzini
2011-11-18 12:38 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).