diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-05-14 22:24:24 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-05-14 22:24:24 +0000 |
commit | 0a41f00c5bff3b74c52e4af1b44d3aaf9b8048be (patch) | |
tree | 16a8bbc0eeca6d75d2bad9ad1b4c3e3a2afda088 | |
parent | d1070c79ed3a3ed7d9913afa0645fd8ca13cc322 (diff) |
up the TX descriptors to the max.
-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 35aa7cc13c9..d264ebdbd50 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.5 2006/05/01 21:01:11 brad Exp $ */ +/* $OpenBSD: if_ixgb.h,v 1.6 2006/05/14 22:24:23 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: 2048 This value is the + * TxDescriptors Valid Range: 64-4096 Default Value: 4096 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 2048 +#define IXGB_MAX_TXD 4096 /* * RxDescriptors Valid Range: 64-4096 Default Value: 1024 This value is the |