aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/qlge/qlge.h
diff options
context:
space:
mode:
authorRon Mercer <ron.mercer@qlogic.com>2009-01-09 06:31:53 -0500
committerDavid S. Miller <davem@davemloft.net>2009-01-11 03:07:36 -0500
commit683d46a9798c382220ef282b37f8210b5276cb3a (patch)
tree3e17c27262cddd122c901df815ecb5b30cc85490 /drivers/net/qlge/qlge.h
parent0857e9d73feea0125280dcd431cee84f6cb3b4e2 (diff)
qlge: Remove dynamic alloc of rx ring control blocks.
Signed-off-by: Ron Mercer <ron.mercer@qlogic.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/qlge/qlge.h')
-rw-r--r--drivers/net/qlge/qlge.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/net/qlge/qlge.h b/drivers/net/qlge/qlge.h
index a5095343eb11..c1dadadfab18 100644
--- a/drivers/net/qlge/qlge.h
+++ b/drivers/net/qlge/qlge.h
@@ -30,8 +30,9 @@
30#define QLGE_VENDOR_ID 0x1077 30#define QLGE_VENDOR_ID 0x1077
31#define QLGE_DEVICE_ID 0x8012 31#define QLGE_DEVICE_ID 0x8012
32 32
33#define MAX_RX_RINGS 128 33#define MAX_CPUS 8
34#define MAX_TX_RINGS 128 34#define MAX_TX_RINGS MAX_CPUS
35#define MAX_RX_RINGS ((MAX_CPUS * 2) + 1)
35 36
36#define NUM_TX_RING_ENTRIES 256 37#define NUM_TX_RING_ENTRIES 256
37#define NUM_RX_RING_ENTRIES 256 38#define NUM_RX_RING_ENTRIES 256
@@ -44,6 +45,7 @@
44#define MAX_SPLIT_SIZE 1023 45#define MAX_SPLIT_SIZE 1023
45#define QLGE_SB_PAD 32 46#define QLGE_SB_PAD 32
46 47
48#define MAX_CQ 128
47#define DFLT_COALESCE_WAIT 100 /* 100 usec wait for coalescing */ 49#define DFLT_COALESCE_WAIT 100 /* 100 usec wait for coalescing */
48#define MAX_INTER_FRAME_WAIT 10 /* 10 usec max interframe-wait for coalescing */ 50#define MAX_INTER_FRAME_WAIT 10 /* 10 usec max interframe-wait for coalescing */
49#define DFLT_INTER_FRAME_WAIT (MAX_INTER_FRAME_WAIT/2) 51#define DFLT_INTER_FRAME_WAIT (MAX_INTER_FRAME_WAIT/2)
@@ -1393,9 +1395,11 @@ struct ql_adapter {
1393 int rx_ring_count; 1395 int rx_ring_count;
1394 int ring_mem_size; 1396 int ring_mem_size;
1395 void *ring_mem; 1397 void *ring_mem;
1396 struct rx_ring *rx_ring; 1398
1399 struct rx_ring rx_ring[MAX_RX_RINGS];
1400 struct tx_ring tx_ring[MAX_TX_RINGS];
1401
1397 int rx_csum; 1402 int rx_csum;
1398 struct tx_ring *tx_ring;
1399 u32 default_rx_queue; 1403 u32 default_rx_queue;
1400 1404
1401 u16 rx_coalesce_usecs; /* cqicb->int_delay */ 1405 u16 rx_coalesce_usecs; /* cqicb->int_delay */