From owner-cvs-all Tue Mar 9 9:30:29 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E82E14FEB; Tue, 9 Mar 1999 09:30:27 -0800 (PST) (envelope-from andreas@FreeBSD.org) Received: (from andreas@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id JAA12999; Tue, 9 Mar 1999 09:30:13 -0800 (PST) (envelope-from andreas@FreeBSD.org) Message-Id: <199903091730.JAA12999@freefall.freebsd.org> From: Andreas Klemm Date: Tue, 9 Mar 1999 09:30:13 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_tx.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk andreas 1999/03/09 09:30:12 PST Modified files: sys/pci if_tx.c Log: Fix from author of the driver: The i++ loop from 1..1000 is too small on very fast machines like PII 450 MHz. Increasing the loop from 1..100000 lets the machine access PHY. After this patch it's possible to use a SMC PCI card on a HP Kayak XA series PC Workstation. Workaround until this fix was to enable debugging in the driver (#define EPIC_DEBUG 1). Without that patch you get an undefined state: while true do ifconfig -a | grep status: done The status messages flaps between twwo values, but not "connected". Obtained from: Ustimenko Semen Revision Changes Path 1.21 +3 -3 src/sys/pci/if_tx.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message