[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-discuss] [Qemu-devel] e1000 patch for osx
From: |
Stefan Hajnoczi |
Subject: |
Re: [Qemu-discuss] [Qemu-devel] e1000 patch for osx |
Date: |
Wed, 30 Oct 2013 10:41:52 +0100 |
User-agent: |
Mutt/1.5.21 (2010-09-15) |
On Fri, Oct 25, 2013 at 08:27:27AM -0600, jacek burghardt wrote:
> https://github.com/saucelabs/mac-osx-on-kvm/blob/master/e1000-mac-hacks.patch
>
> - } else
> - s->phy_reg[addr] = data;
> + } else {
> + /* some (reset) bits are self clearing, so better clear them */
> + switch (addr) {
> + case PHY_CTRL:
> + s->phy_reg[addr] = data & 0x7eff;
> + if (s->phy_reg[addr] != data)
> + set_ics(s, 0, E1000_ICR_LSC);
> + break;
> + default:
> + s->phy_reg[addr] = data;
> + }
> + }
Patches welcome! Please see:
http://qemu-project.org/Contribute/SubmitAPatch
I suggest you contact the author of this patch and ask them to submit
it.
Stefan
- [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/25
- Re: [Qemu-discuss] e1000 patch for osx, Paolo Bonzini, 2013/10/25
- Re: [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, Paolo Bonzini, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, Paolo Bonzini, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/30
- Re: [Qemu-discuss] e1000 patch for osx, jacek burghardt, 2013/10/30
Re: [Qemu-discuss] e1000 patch for osx, Paolo Bonzini, 2013/10/30