diff options
author | Joshua Giles <joshua_giles@dell.com> | 2006-02-03 18:34:17 -0500 |
---|---|---|
committer | <jejb@mulgrave.il.steeleye.com> | 2006-02-04 17:37:29 -0500 |
commit | 122da30223c06cee181044af6d32e88b256d10df (patch) | |
tree | 4f56cd9af050aa1beaf8d053eae4f4ed38c115fc | |
parent | ea5a7a82f9d2d8a81f8fa541c34a12b43d390f61 (diff) |
[SCSI] megaraid_sas: register 16 byte CDB capability
This patch properly registers the 16 byte command length capability of
the megaraid_sas controlled hardware with the scsi midlayer. All
megaraid_sas hardware supports 16 byte CDB's.
Signed-off-by: Joshua Giles <joshua_giles@dell.com>
Signed-off-by: Sumant Patro <Sumant.Patro@lsil.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r-- | Documentation/scsi/ChangeLog.megaraid_sas | 12 | ||||
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas.c | 3 | ||||
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas.h | 6 |
3 files changed, 17 insertions, 4 deletions
diff --git a/Documentation/scsi/ChangeLog.megaraid_sas b/Documentation/scsi/ChangeLog.megaraid_sas index f8c16cbf56ba..9e8085bd2e42 100644 --- a/Documentation/scsi/ChangeLog.megaraid_sas +++ b/Documentation/scsi/ChangeLog.megaraid_sas | |||
@@ -1,3 +1,15 @@ | |||
1 | 1 Release Date : Fri Feb 03 14:16:25 PST 2006 - Sumant Patro | ||
2 | <Sumant.Patro@lsil.com> | ||
3 | 2 Current Version : 00.00.02.04 | ||
4 | 3 Older Version : 00.00.02.02 | ||
5 | i. Register 16 byte CDB capability with scsi midlayer | ||
6 | |||
7 | "Ths patch properly registers the 16 byte command length capability of the | ||
8 | megaraid_sas controlled hardware with the scsi midlayer. All megaraid_sas | ||
9 | hardware supports 16 byte CDB's." | ||
10 | |||
11 | -Joshua Giles <joshua_giles@dell.com> | ||
12 | |||
1 | 1 Release Date : Mon Jan 23 14:09:01 PST 2006 - Sumant Patro <Sumant.Patro@lsil.com> | 13 | 1 Release Date : Mon Jan 23 14:09:01 PST 2006 - Sumant Patro <Sumant.Patro@lsil.com> |
2 | 2 Current Version : 00.00.02.02 | 14 | 2 Current Version : 00.00.02.02 |
3 | 3 Older Version : 00.00.02.01 | 15 | 3 Older Version : 00.00.02.01 |
diff --git a/drivers/scsi/megaraid/megaraid_sas.c b/drivers/scsi/megaraid/megaraid_sas.c index a487f414960e..0b738243782e 100644 --- a/drivers/scsi/megaraid/megaraid_sas.c +++ b/drivers/scsi/megaraid/megaraid_sas.c | |||
@@ -10,7 +10,7 @@ | |||
10 | * 2 of the License, or (at your option) any later version. | 10 | * 2 of the License, or (at your option) any later version. |
11 | * | 11 | * |
12 | * FILE : megaraid_sas.c | 12 | * FILE : megaraid_sas.c |
13 | * Version : v00.00.02.02 | 13 | * Version : v00.00.02.04 |
14 | * | 14 | * |
15 | * Authors: | 15 | * Authors: |
16 | * Sreenivas Bagalkote <Sreenivas.Bagalkote@lsil.com> | 16 | * Sreenivas Bagalkote <Sreenivas.Bagalkote@lsil.com> |
@@ -1983,6 +1983,7 @@ static int megasas_io_attach(struct megasas_instance *instance) | |||
1983 | host->max_channel = MEGASAS_MAX_CHANNELS - 1; | 1983 | host->max_channel = MEGASAS_MAX_CHANNELS - 1; |
1984 | host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL; | 1984 | host->max_id = MEGASAS_MAX_DEV_PER_CHANNEL; |
1985 | host->max_lun = MEGASAS_MAX_LUN; | 1985 | host->max_lun = MEGASAS_MAX_LUN; |
1986 | host->max_cmd_len = 16; | ||
1986 | 1987 | ||
1987 | /* | 1988 | /* |
1988 | * Notify the mid-layer about the new controller | 1989 | * Notify the mid-layer about the new controller |
diff --git a/drivers/scsi/megaraid/megaraid_sas.h b/drivers/scsi/megaraid/megaraid_sas.h index d6d166c0663f..917326f3770e 100644 --- a/drivers/scsi/megaraid/megaraid_sas.h +++ b/drivers/scsi/megaraid/megaraid_sas.h | |||
@@ -18,9 +18,9 @@ | |||
18 | /** | 18 | /** |
19 | * MegaRAID SAS Driver meta data | 19 | * MegaRAID SAS Driver meta data |
20 | */ | 20 | */ |
21 | #define MEGASAS_VERSION "00.00.02.02" | 21 | #define MEGASAS_VERSION "00.00.02.04" |
22 | #define MEGASAS_RELDATE "Jan 23, 2006" | 22 | #define MEGASAS_RELDATE "Feb 03, 2006" |
23 | #define MEGASAS_EXT_VERSION "Mon Jan 23 14:09:01 PST 2006" | 23 | #define MEGASAS_EXT_VERSION "Fri Feb 03 14:16:25 PST 2006" |
24 | /* | 24 | /* |
25 | * ===================================== | 25 | * ===================================== |
26 | * MegaRAID SAS MFI firmware definitions | 26 | * MegaRAID SAS MFI firmware definitions |