aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/cnic.h
diff options
context:
space:
mode:
authorMichael Chan <mchan@broadcom.com>2010-06-24 14:58:37 +0000
committerDavid S. Miller <davem@davemloft.net>2010-06-25 20:37:18 -0700
commit520efdf44f0140eef9018518fdae5edfc86f3b6c (patch)
tree88e5e9bce57401ebfcc3d1ac9dec9c1af10d1d82 /drivers/net/cnic.h
parentsfc: Record hardware RX hash on each skb where possible (diff)
downloadlinux-dev-520efdf44f0140eef9018518fdae5edfc86f3b6c.tar.xz
linux-dev-520efdf44f0140eef9018518fdae5edfc86f3b6c.zip
cnic: Fine-tune CID memory space calculation.
The current code makes assumptions about the CID (context ID) memory space and starting CID that may not be always correct when firmware changes. In particular, BNX2_ISCSI_START_CID may not always be fixed. We now calculate cp->max_cid_space and cp->iscsi_start_cid dynamically instead of using fixed constants. The unused cp->max_iscsi_conn is also eliminated. Signed-off-by: Michael Chan <mchan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/cnic.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/cnic.h b/drivers/net/cnic.h
index 08b1235d987d..b7e2f7fcfb1c 100644
--- a/drivers/net/cnic.h
+++ b/drivers/net/cnic.h
@@ -248,8 +248,10 @@ struct cnic_local {
struct cnic_iscsi *iscsi_tbl;
struct cnic_context *ctx_tbl;
struct cnic_id_tbl cid_tbl;
- int max_iscsi_conn;
atomic_t iscsi_conn;
+ u32 iscsi_start_cid;
+
+ u32 max_cid_space;
/* per connection parameters */
int num_iscsi_tasks;