diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-05-01 15:59:32 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-05-01 15:59:32 +0000 |
commit | e561711426c8fe3ef0c37f6a1664afc286cb75ef (patch) | |
tree | e94ba62e8086ad69c739a7ffd53be46c7c8fe0cd /sys/dev/pci | |
parent | eca1cf3f9591e1a1b462faea83e21c9ec99af4f8 (diff) |
increase the Tx ring count from 64 to 256.
ok jsg@ damien@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_nfereg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_nfereg.h b/sys/dev/pci/if_nfereg.h index 79eab5149c7..e1f4887a4b4 100644 --- a/sys/dev/pci/if_nfereg.h +++ b/sys/dev/pci/if_nfereg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_nfereg.h,v 1.17 2006/04/26 02:07:30 jsg Exp $ */ +/* $OpenBSD: if_nfereg.h,v 1.18 2006/05/01 15:59:31 brad Exp $ */ /*- * Copyright (c) 2005 Jonathan Gray <jsg@openbsd.org> @@ -19,7 +19,7 @@ #define NFE_PCI_BA 0x10 #define NFE_RX_RING_COUNT 128 -#define NFE_TX_RING_COUNT 64 +#define NFE_TX_RING_COUNT 256 #define NFE_JBYTES (ETHER_MAX_LEN_JUMBO + ETHER_ALIGN) #define NFE_JPOOL_COUNT (NFE_RX_RING_COUNT + 64) |