diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-11-08 03:49:28 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-11-08 03:49:28 +0000 |
commit | e8a225856f04efda39cdba095005e4de83516a7b (patch) | |
tree | c417ad5d8b94788ff44721446e01b75ab87aef6b /sys | |
parent | e2bbd445bdc2b141c52e1c8e51c0e41f4031178c (diff) |
Reduce the number of TX descriptors to 512, such a large number is not
necessary without TSO.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/rtl81x9reg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/rtl81x9reg.h b/sys/dev/ic/rtl81x9reg.h index 11aeffbc04b..8a11dbffb4a 100644 --- a/sys/dev/ic/rtl81x9reg.h +++ b/sys/dev/ic/rtl81x9reg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rtl81x9reg.h,v 1.56 2008/10/11 23:49:05 brad Exp $ */ +/* $OpenBSD: rtl81x9reg.h,v 1.57 2008/11/08 03:49:27 brad Exp $ */ /* * Copyright (c) 1997, 1998 @@ -665,7 +665,7 @@ struct rl_stats { #define RL_RX_DESC_CNT 64 #define RL_TX_DESC_CNT_8139 64 -#define RL_TX_DESC_CNT_8169 1024 +#define RL_TX_DESC_CNT_8169 512 #define RL_TX_QLEN 64 |