diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-07-21 01:49:16 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-07-21 01:49:16 +0000 |
commit | b7aa0576d344ad7ca1e298fdf244fdd058a1514a (patch) | |
tree | b949684aee3458ecb185f5187ea907a21114d9b9 /sys/dev/pci | |
parent | 13f731561211218aae9e5dbfdf77947bff16e721 (diff) |
Revert the last commit. The TX descriptor count does not really need
to be set that high and it can cause problems with multiple adapters
in the same system.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_ixgb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_ixgb.h b/sys/dev/pci/if_ixgb.h index d264ebdbd50..496c1e4e044 100644 --- a/sys/dev/pci/if_ixgb.h +++ b/sys/dev/pci/if_ixgb.h @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ -/* $OpenBSD: if_ixgb.h,v 1.6 2006/05/14 22:24:23 brad Exp $ */ +/* $OpenBSD: if_ixgb.h,v 1.7 2006/07/21 01:49:15 brad Exp $ */ #ifndef _IXGB_H_DEFINED_ #define _IXGB_H_DEFINED_ @@ -84,12 +84,12 @@ POSSIBILITY OF SUCH DAMAGE. /* Tunables */ /* - * TxDescriptors Valid Range: 64-4096 Default Value: 4096 This value is the + * TxDescriptors Valid Range: 64-4096 Default Value: 2048 This value is the * number of transmit descriptors allocated by the driver. Increasing this * value allows the driver to queue more transmits. Each descriptor is 16 * bytes. */ -#define IXGB_MAX_TXD 4096 +#define IXGB_MAX_TXD 2048 /* * RxDescriptors Valid Range: 64-4096 Default Value: 1024 This value is the |