summaryrefslogtreecommitdiffstats
path: root/drivers/net/eepro100.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1999-09-28 22:25:29 +0000
committerRalf Baechle <ralf@linux-mips.org>1999-09-28 22:25:29 +0000
commit0ae8dceaebe3659ee0c3352c08125f403e77ebca (patch)
tree5085c389f09da78182b899d19fe1068b619a69dd /drivers/net/eepro100.c
parent273767781288c35c9d679e908672b9996cda4c34 (diff)
Merge with 2.3.10.
Diffstat (limited to 'drivers/net/eepro100.c')
-rw-r--r--drivers/net/eepro100.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/eepro100.c b/drivers/net/eepro100.c
index 56858bc45..69d383a45 100644
--- a/drivers/net/eepro100.c
+++ b/drivers/net/eepro100.c
@@ -41,7 +41,7 @@ static int rx_copybreak = 200;
static int max_interrupt_work = 200;
/* Maximum number of multicast addresses to filter (vs. rx-all-multicast) */
-static int multicast_filter_limit = 64;
+static int multicast_filter_limit = 3;
#include <linux/module.h>
@@ -343,7 +343,8 @@ struct speedo_private {
const char *product_name;
struct device *next_module;
spinlock_t lock;
- struct TxFD tx_ring[TX_RING_SIZE]; /* Commands (usually CmdTxPacket). */
+ struct TxFD tx_ring[TX_RING_SIZE] /* Commands (usually CmdTxPacket). */
+ __attribute__ ((aligned (L1_CACHE_BYTES)));;
/* The saved address of a sent-in-place packet/buffer, for skfree(). */
struct sk_buff* tx_skbuff[TX_RING_SIZE];
struct descriptor *last_cmd; /* Last command sent. */