summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authortsutsui <tsutsui@NetBSD.org>2003-10-05 14:57:14 +0000
committertsutsui <tsutsui@NetBSD.org>2003-10-05 14:57:14 +0000
commit9869f97b240ab38bb6ef0464c706fa1ddf209d89 (patch)
tree5c954f1a5d296d919daee77d6d665a9b593acc0d /sys/dev
parentd008eb86c985824e131aa33adef8c9296cb97621 (diff)
Increase number of transmit/receive buffers from 10 to 32 to avoid
RX buffer overrun.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_tl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_tl.c b/sys/dev/pci/if_tl.c
index f04a264fd64..4960096219d 100644
--- a/sys/dev/pci/if_tl.c
+++ b/sys/dev/pci/if_tl.c
@@ -1,4 +1,4 @@
-/* $NetBSD: if_tl.c,v 1.61 2003/10/05 14:50:09 tsutsui Exp $ */
+/* $NetBSD: if_tl.c,v 1.62 2003/10/05 14:57:14 tsutsui Exp $ */
/*
* Copyright (c) 1997 Manuel Bouyer. All rights reserved.
@@ -36,7 +36,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.61 2003/10/05 14:50:09 tsutsui Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.62 2003/10/05 14:57:14 tsutsui Exp $");
#undef TLDEBUG
#define TL_PRIV_STATS
@@ -115,7 +115,7 @@ __KERNEL_RCSID(0, "$NetBSD: if_tl.c,v 1.61 2003/10/05 14:50:09 tsutsui Exp $");
/* number of transmit/receive buffers */
#ifndef TL_NBUF
-#define TL_NBUF 10
+#define TL_NBUF 32
#endif
static int tl_pci_match __P((struct device *, struct cfdata *, void *));