Date: Thu, 13 Jun 1996 23:24:46 +0200 (MET DST) From: J Wunsch <j@uriah.heep.sax.de> To: freebsd-current@FreeBSD.org (FreeBSD-current users) Cc: pluvius@cyberflunk.com (pluvius) Subject: Re: 3Com 590 not seen Message-ID: <199606132124.XAA15255@uriah.heep.sax.de> In-Reply-To: <Pine.SOL.3.93.960613083718.7178A-100000@rapture.cyberflunk.com> from pluvius at "Jun 13, 96 08:48:16 am"
next in thread | previous in thread | raw e-mail | index | archive | help
As pluvius wrote: > o any outbound connections will hang after transfering approx 1K > (ie: telnet from the box, ftp from the box) > o all inbound (incoming telnet, incoming ftp) worked perfectly fine. This hackaround might help you. It has been posted here a couple of weeks ago (sorry, i forgot the name of the author). Index: sys/pci/if_vx.c =================================================================== RCS file: /usr/home/cvs/src/sys/pci/if_vx.c,v retrieving revision 1.9 diff -u -u -r1.9 if_vx.c --- if_vx.c 1996/02/06 18:51:26 1.9 +++ if_vx.c 1996/06/02 17:27:28 @@ -520,7 +520,7 @@ } IF_DEQUEUE(&sc->arpcom.ac_if.if_snd, m); - outw(BASE + VX_W1_TX_PIO_WR_1, len); + outw(BASE + VX_W1_TX_PIO_WR_1, len | 0x8000 /* XXX */); outw(BASE + VX_W1_TX_PIO_WR_1, 0x0); /* Second dword meaningless */ /* compute the Tx start threshold for this packet */ -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199606132124.XAA15255>