From: "Michael S. Tsirkin" <mst@redhat.com>
To: Naphtali Sprei <nsprei@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] fix for bad macaddr of e1000 in Windows 2003 server with original Microsoft driver
Date: Wed, 15 Jul 2009 15:09:06 +0300 [thread overview]
Message-ID: <20090715120906.GB3434@redhat.com> (raw)
In-Reply-To: <4A5DAA81.2000105@redhat.com>
On Wed, Jul 15, 2009 at 01:08:01PM +0300, Naphtali Sprei wrote:
> The sequence of reading from eeprom is "offset by one" moved because of
> a false detection
> of a clock cycle after an eeprom reset. Keeping the last clock value
> after a reset keeps it in sync.
> ---
> hw/e1000.c | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/hw/e1000.c b/hw/e1000.c
> index 4ac8918..7d7cc2e 100644
> --- a/hw/e1000.c
> +++ b/hw/e1000.c
> @@ -261,7 +261,10 @@ set_eecd(E1000State *s, int index, uint32_t val)
> return;
> }
> if (!(val & E1000_EECD_CS)) { // rising, no CS (EEPROM
> reset)
> + // save/restore old_eecd to avoid false detection of a clock edge
> + uint32_t keep = s->eecd_state.old_eecd;
> memset(&s->eecd_state, 0, sizeof s->eecd_state);
> + s->eecd_state.old_eecd = keep;
Would it be safer to only restore the SK bit?
> return;
> }
> s->eecd_state.val_in <<= 1;
> --
> 1.5.5.6
>
>
prev parent reply other threads:[~2009-07-15 12:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-15 10:08 [Qemu-devel] [PATCH] fix for bad macaddr of e1000 in Windows 2003 server with original Microsoft driver Naphtali Sprei
2009-07-15 12:09 ` Michael S. Tsirkin [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=20090715120906.GB3434@redhat.com \
--to=mst@redhat.com \
--cc=nsprei@redhat.com \
--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 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).