diff options
author | John Soni Jose <sony.john-n@emulex.com> | 2012-10-19 19:13:32 -0400 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-11-26 23:59:37 -0500 |
commit | 22abeef0fa251ec0c93e377da66800ebd881fdc7 (patch) | |
tree | 7252522aabd80e6787b0278a0dc8122e6117b79a /drivers/scsi/be2iscsi/be_main.h | |
parent | 139a1b1e777144aa745f10741e2fe09b93e63c38 (diff) |
[SCSI] be2iscsi: Fix max EQ supported by the driver.
Fix the max EQ created when driver is loaded. Max EQ for
for new adapters will be 64.
Signed-off-by: John Soni Jose <sony.john-n@emulex.com>
Signed-off-by: Jayamohan Kallickal <jayamohan.kallickal@emulex.com>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/be2iscsi/be_main.h')
-rw-r--r-- | drivers/scsi/be2iscsi/be_main.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/drivers/scsi/be2iscsi/be_main.h b/drivers/scsi/be2iscsi/be_main.h index 5302d3762f77..2e534f3b7bfe 100644 --- a/drivers/scsi/be2iscsi/be_main.h +++ b/drivers/scsi/be2iscsi/be_main.h | |||
@@ -64,8 +64,11 @@ | |||
64 | #define BE2_DEFPDU_HDR_SZ 64 | 64 | #define BE2_DEFPDU_HDR_SZ 64 |
65 | #define BE2_DEFPDU_DATA_SZ 8192 | 65 | #define BE2_DEFPDU_DATA_SZ 8192 |
66 | 66 | ||
67 | #define MAX_CPUS 31 | 67 | #define MAX_CPUS 64 |
68 | #define BEISCSI_MAX_NUM_CPU 8 | 68 | #define BEISCSI_MAX_NUM_CPUS 7 |
69 | #define OC_SKH_MAX_NUM_CPUS 63 | ||
70 | |||
71 | |||
69 | #define BEISCSI_SGLIST_ELEMENTS 30 | 72 | #define BEISCSI_SGLIST_ELEMENTS 30 |
70 | 73 | ||
71 | #define BEISCSI_CMD_PER_LUN 128 /* scsi_host->cmd_per_lun */ | 74 | #define BEISCSI_CMD_PER_LUN 128 /* scsi_host->cmd_per_lun */ |
@@ -279,8 +282,8 @@ struct beiscsi_hba { | |||
279 | unsigned short asic_revision; | 282 | unsigned short asic_revision; |
280 | unsigned int num_cpus; | 283 | unsigned int num_cpus; |
281 | unsigned int nxt_cqid; | 284 | unsigned int nxt_cqid; |
282 | struct msix_entry msix_entries[MAX_CPUS + 1]; | 285 | struct msix_entry msix_entries[MAX_CPUS]; |
283 | char *msi_name[MAX_CPUS + 1]; | 286 | char *msi_name[MAX_CPUS]; |
284 | bool msix_enabled; | 287 | bool msix_enabled; |
285 | struct be_mem_descriptor *init_mem; | 288 | struct be_mem_descriptor *init_mem; |
286 | 289 | ||
@@ -841,7 +844,7 @@ struct hwi_context_memory { | |||
841 | u16 max_eqd; /* in usecs */ | 844 | u16 max_eqd; /* in usecs */ |
842 | u16 cur_eqd; /* in usecs */ | 845 | u16 cur_eqd; /* in usecs */ |
843 | struct be_eq_obj be_eq[MAX_CPUS]; | 846 | struct be_eq_obj be_eq[MAX_CPUS]; |
844 | struct be_queue_info be_cq[MAX_CPUS]; | 847 | struct be_queue_info be_cq[MAX_CPUS - 1]; |
845 | 848 | ||
846 | struct be_queue_info be_def_hdrq; | 849 | struct be_queue_info be_def_hdrq; |
847 | struct be_queue_info be_def_dataq; | 850 | struct be_queue_info be_def_dataq; |