summaryrefslogtreecommitdiffstats
path: root/sys/dev/fxp
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1996-09-18 16:18:05 +0000
committerdg <dg@FreeBSD.org>1996-09-18 16:18:05 +0000
commit15c9eee07b9efed3e252a3c3d10cb898ad2cdd47 (patch)
tree8748549e6088458042da0ab07085e23d110d2eba /sys/dev/fxp
parent778e4b0932dc45b8dd3748fd0872aa72809b26b3 (diff)
downloadFreeBSD-src-15c9eee07b9efed3e252a3c3d10cb898ad2cdd47.zip
FreeBSD-src-15c9eee07b9efed3e252a3c3d10cb898ad2cdd47.tar.gz
Increased transmit threshold to 1024 bytes to fix a problem with underruns
on machines with poor PCI performance.
Diffstat (limited to 'sys/dev/fxp')
-rw-r--r--sys/dev/fxp/if_fxp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/fxp/if_fxp.c b/sys/dev/fxp/if_fxp.c
index 6da34be..52d4253 100644
--- a/sys/dev/fxp/if_fxp.c
+++ b/sys/dev/fxp/if_fxp.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: if_fxp.c,v 1.13 1996/06/01 23:25:10 gpalmer Exp $
+ * $Id: if_fxp.c,v 1.14 1996/09/06 23:08:52 phk Exp $
*/
/*
@@ -491,7 +491,7 @@ tbdinit:
txp->cb_status = 0;
txp->cb_command =
FXP_CB_COMMAND_XMIT | FXP_CB_COMMAND_SF | FXP_CB_COMMAND_S;
- txp->tx_threshold = 16; /* bytes*8 */
+ txp->tx_threshold = 128; /* bytes*8 = 1024 */
txp->mb_head = mb_head;
/*
OpenPOWER on IntegriCloud