| Summary: | lnc ethernet xmit underflow problem | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | Rajit Manohar <rajit> | ||||
| Component: | kern | Assignee: | freebsd-bugs (Nobody) <bugs> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | 3.2-RELEASE | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Rajit Manohar
1999-08-11 02:20:00 UTC
I have experienced the same thing on my Kayak XU. While it doesn't have
an Am79C972, it has instead a Symbios/NCR ultra-wide SCSI/PCnet-FAST
ethernet combination card. The 971's data sheet says it has the same
NOUFLO control bit. Making your patch work with 971 and above chipssets
requires changing:
if (sc->nic.ic > PCnet_FAST)
to
if (sc->nic.ic==PCnet_FAST || sc->nic.ic==PCnet_FASTplus)
Ken
p.s. This bit is only applicable to the 971, 972, 973/975
(PCnetFastIII)--not the 970A (and assuming 970, since there's no
datasheet for it currently at AMD's website).
Relevant kernel messages:
Probing for devices on PCI bus 2:
ncr0: <ncr 53c875 fast20 wide scsi> rev 0x26 int a irq 11 on
pci2.4.0
lnc1: <PCNet/PCI Ethernet adapter> rev 0x25 int a irq 11 on
pci2.5.0
lnc1: PCnet-FAST address [. . .]
State Changed From-To: open->feedback Does this problem still occur in more recent releases? State Changed From-To: feedback->closed Feedback timeout. |