diff options
author | ticso <ticso@FreeBSD.org> | 2007-01-05 01:01:14 +0000 |
---|---|---|
committer | ticso <ticso@FreeBSD.org> | 2007-01-05 01:01:14 +0000 |
commit | 84de78b5ca85bb03527275ac270996e597d9456d (patch) | |
tree | 28f800b1d26ec9dd5958548f0130bfa872ae4f56 /sys/arm/at91/if_ate.c | |
parent | d1730bc2bb8ce61ef61ae7b28869bdd89c33af9d (diff) | |
download | FreeBSD-src-84de78b5ca85bb03527275ac270996e597d9456d.zip FreeBSD-src-84de78b5ca85bb03527275ac270996e597d9456d.tar.gz |
MFp4: fix a race in transmit buffer handling
Diffstat (limited to 'sys/arm/at91/if_ate.c')
-rw-r--r-- | sys/arm/at91/if_ate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/at91/if_ate.c b/sys/arm/at91/if_ate.c index 22dd555..fe874c2 100644 --- a/sys/arm/at91/if_ate.c +++ b/sys/arm/at91/if_ate.c @@ -72,7 +72,7 @@ __FBSDID("$FreeBSD$"); #include "miibus_if.h" -#define ATE_MAX_TX_BUFFERS 64 /* We have ping-pong tx buffers */ +#define ATE_MAX_TX_BUFFERS 2 /* We have ping-pong tx buffers */ #define ATE_MAX_RX_BUFFERS 64 struct ate_softc |