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

Reply via email to