freebsd-dev/sys
Bill Paul d1b5b058f7 This commit adds a software workaround for a hardware bug in certain PNIC
chip revisions. (A buggy taiwanese chip? I'm just shocked; shocked I tell
you.) So far I have only observed the anomalous behavior on board with
PCI revision 33 chips. At the moment, this seems to include only the
Netgear FA310-TX rev D1 boards with chips labeled NGMC169B. (Possibly this
means it's an 82c169B part from Lite-On.)

The bug only manifests itself in promiscuous mode, and usually only at
10Mbps half-duplex. (I have not observed the problem in full-duplex mode,
and I don't think it ever happens at 100Mbps.) The bug appears to be in
the receiver DMA engine. Normally, the chip is programmed with a linked
list of receiver descriptors, each with a receive buffer capable of holding
a complete full-sized ethernet frame. During periods of heavy traffic
(i.e. ping -c 100 -f 8100 <otherhost>), the receiver will sometimes appear
to upload its entire FIFO memory contents instead of just uploading the
desired received frame. The uploaded data will span several receive
buffers, in spite of the fact that the chip has been told to only use
one descriptor per frame, and appears to consist of previously transmitted
frames with the correct received frame appended to the end.

Unfortunately, there is no way to determine exactly how much data is
uploaded when this happens; the chip doesn't tell you anything except the
size of the desired received frame, and the amount of bogus data varies.
Sometimes, the desired frame is also split across multiple buffers.

The workaround is ugly and nasty. The driver assembles all of the data
from the bogus frames into a single buffer. The receive buffers are always
zeroed out, and we program the chip to always include the receive CRC
at the end of each frame. We therefore know that we can start from the
end of the buffer and scan back until we encounter a non-zero data byte,
and say conclusively that this is the end of the desired frame. We can
then subtract the frame length from this address to determine the real
start of the frame, and copy it into an mbuf and pass it on.

This is kludgy and time consuming, but it's better than dropping frames.
It's not too bad since the problem only happens at 10Mbps.

The workaround is only enabled for chips with PCI revision == 33. The
LinkSys LNE100TX and Matrox FastNIC 10/100 cards use a revision 32 chip
and work fine in promiscuous mode. Netgear support has confirmed that
they "have some previous knowledge of problems in promiscuous mode" but
didn't have a workaround. The people at Lite-On who would be able to
suggest a possible fix are on vacation. So, I decided to implement a
workaround of my own until I hear from them. I suppose this problem made
it through Netgear's QA department since Windows doesn't normally use
promiscuous mode, and if Windows doesn't need the feature than it can't
possibly be important, right? Grrr.
1998-12-31 17:19:21 +00:00
..
alpha Commit patch in 1998-12-30 21:20:00 +00:00
amd64 Improved DDB_UNATTENDED behaviour. From the submitter: 1998-12-28 23:03:00 +00:00
boot Add support for some FACILITY words: 1998-12-31 14:03:28 +00:00
cam Force ARCHIVE Vipers to be FIXED 1998-12-28 19:21:12 +00:00
coda
compat Commit patch in 1998-12-30 21:20:00 +00:00
compile
conf Enables snd driver. 1998-12-31 11:38:52 +00:00
contrib/softupdates
ddb
dev Here's one for the terminally melancholic amongst us. 1998-12-31 13:41:40 +00:00
fs Fix possible NULL-pointer deref in error case (same as DEVFS). 1998-12-16 00:10:51 +00:00
geom
gnu
i4b Initial entry of ISDN4BSD into the FreeBSD tree. 1998-12-27 21:47:14 +00:00
i386 Enable the ES1370 driver. You don't need any options for this, 1998-12-31 08:17:08 +00:00
isa Silence -Wtrigraph. 1998-12-30 00:37:44 +00:00
isofs/cd9660
kern When loading something that has undefined symbols, it would be helpful to 1998-12-31 09:17:20 +00:00
libkern
miscfs Fix possible NULL-pointer deref in error case (same as DEVFS). 1998-12-16 00:10:51 +00:00
modules Activate the rain screensaver. 1998-12-31 13:42:00 +00:00
msdosfs
net Remove one unused variable. 1998-12-31 07:52:49 +00:00
netatalk
netatm
netinet Partial fix for when ipfw is used with bridging. Bridged packets 1998-12-31 07:43:29 +00:00
netipx
netkey
netnatm
netns
nfs Silence -Wtrigraph. 1998-12-30 00:37:44 +00:00
nfsclient Silence -Wtrigraph. 1998-12-30 00:37:44 +00:00
nfsserver Silence -Wtrigraph. 1998-12-30 00:37:44 +00:00
pc98 Enables snd driver. 1998-12-31 11:38:52 +00:00
pccard probe function changed from returning char * to const char *. 1998-12-14 06:37:37 +00:00
pci This commit adds a software workaround for a hardware bug in certain PNIC 1998-12-31 17:19:21 +00:00
posix4
powerpc Various changes to support OSF1 emulation: 1998-12-30 10:38:59 +00:00
rpc
sys Happy 1999! 1998-12-31 14:26:42 +00:00
tools
ufs Fixed null pointer panics which I introduced in rev.1.86. Vnodes 1998-12-24 09:45:10 +00:00
vm Don't free swap in swap_pager_getpages(): this code probably cause the 1998-12-29 22:53:51 +00:00
Makefile Backed out previous commit. It depends on a.out utilities and libraries 1998-12-30 12:06:08 +00:00