diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-12-15 02:33:05 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-12-15 02:33:05 +0000 |
commit | c1d64c8983821a2ecaec39e8b7fff710bc816550 (patch) | |
tree | ac0083ee20101b7bf4d8bd58f6062584d9996166 /sys/dev/pci/if_em.h | |
parent | 9f5821c8cbd7dee5fbbb49f780b01054394ef117 (diff) |
revert 1.20 now that the new allocator is used to control the number of
RX buffers allocated.
ok dlg@
Diffstat (limited to 'sys/dev/pci/if_em.h')
-rw-r--r-- | sys/dev/pci/if_em.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/if_em.h b/sys/dev/pci/if_em.h index f29ca89c848..528264d53df 100644 --- a/sys/dev/pci/if_em.h +++ b/sys/dev/pci/if_em.h @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ /* $FreeBSD: if_em.h,v 1.26 2004/09/01 23:22:41 pdeuskar Exp $ */ -/* $OpenBSD: if_em.h,v 1.42 2008/12/05 00:08:17 brad Exp $ */ +/* $OpenBSD: if_em.h,v 1.43 2008/12/15 02:33:04 brad Exp $ */ #ifndef _EM_H_DEFINED_ #define _EM_H_DEFINED_ @@ -94,7 +94,6 @@ POSSIBILITY OF SUCH DAMAGE. * desscriptors should meet the following condition. * (num_tx_desc * sizeof(struct em_tx_desc)) % 128 == 0 */ -#define EM_MIN_TXD 12 #define EM_MAX_TXD_82543 256 #define EM_MAX_TXD 512 @@ -111,7 +110,6 @@ POSSIBILITY OF SUCH DAMAGE. * desscriptors should meet the following condition. * (num_tx_desc * sizeof(struct em_tx_desc)) % 128 == 0 */ -#define EM_MIN_RXD 12 #define EM_MAX_RXD_82543 256 #define EM_MAX_RXD 256 |