From: Jens Axboe <qemu@kernel.dk>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Fix Harddisk initialization
Date: Wed, 22 Feb 2006 09:49:17 +0100 [thread overview]
Message-ID: <20060222084917.GO8852@suse.de> (raw)
In-Reply-To: <20060221192928.GD4110@networkno.de>
On Tue, Feb 21 2006, Thiemo Seufer wrote:
> Hello All,
>
> this fixes Harddisk initialization (s->nsector is initially 0x100, which
> is supposed to get handled as zero).
>
>
> Thiemo
>
>
> Index: qemu-work/hw/ide.c
> ===================================================================
> --- qemu-work.orig/hw/ide.c 2006-02-18 22:12:56.000000000 +0000
> +++ qemu-work/hw/ide.c 2006-02-19 02:34:13.000000000 +0000
> @@ -1550,12 +1550,12 @@
> ide_set_irq(s);
> break;
> case WIN_SETMULT:
> - if (s->nsector > MAX_MULT_SECTORS ||
> + if ((s->nsector & 0xFF) > MAX_MULT_SECTORS ||
> s->nsector == 0 ||
> (s->nsector & (s->nsector - 1)) != 0) {
> ide_abort_command(s);
> } else {
> - s->mult_sectors = s->nsector;
> + s->mult_sectors = s->nsector & 0xFF;
> s->status = READY_STAT;
> }
> ide_set_irq(s);
I think the much better patch would be to fix qemu not to put 256
unconditionally in ->nsector if it is written as zero. It's really a
special case for only the read/write commands, not a generel fixup.
I'd suggest adding a nsector_internal to fixup this internally in the
read/write path so all register correctly reflect what was actually
written by the OS.
--
Jens Axboe
prev parent reply other threads:[~2006-02-22 8:53 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-21 19:29 [Qemu-devel] [PATCH] Fix Harddisk initialization Thiemo Seufer
2006-02-22 8:49 ` Jens Axboe [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060222084917.GO8852@suse.de \
--to=qemu@kernel.dk \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.