From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <47f44a52080aa0389afe9a45c25c2cd3@plan9.bell-labs.com> From: jmk@plan9.bell-labs.com To: 9fans@cse.psu.edu Subject: Re: [9fans] ether8139.c fix MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Tue, 5 Mar 2002 10:26:46 -0500 Topicbox-Message-UUID: 5fb7de46-eaca-11e9-9e20-41e7f4b1d025 On Tue Mar 5 05:08:09 EST 2002, north_@www.7f.no-ip.com wrote: > > Line 494, in rtl8139receive(), reads > > > > memmove(bp->rp, p, l); > > but should be > > memmove(bp->wp, p, l); > > > > jmk has vetted this change. > Good deal, but, which bug does this fix fix? > Don (north_) > http://www.7f.no-ip.com/ it fixes corrupting every packet which causes wrap-around of the 64Kb receive buffer. it was fixed a long time ago but i didn't realise the driver had been released without the fix.