diff options
author | adam radford <aradford@gmail.com> | 2011-02-24 23:57:21 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@suse.de> | 2011-02-28 13:05:07 -0500 |
commit | 00fa2b191b4bd74e9d22ac177e3d9e8ecd3582d3 (patch) | |
tree | 833dbf676ed6382df4efd5ee7a48522d1a0c7926 | |
parent | ebf054b00b0a6dfa81dc4472d8b19301318b7f47 (diff) |
[SCSI] megaraid_sas: Version and Changelog update
Signed-off-by: Adam Radford <aradford@gmail.com>
Signed-off-by: James Bottomley <James.Bottomley@suse.de>
-rw-r--r-- | Documentation/scsi/ChangeLog.megaraid_sas | 23 | ||||
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas.h | 6 | ||||
-rw-r--r-- | drivers/scsi/megaraid/megaraid_sas_base.c | 3 |
3 files changed, 28 insertions, 4 deletions
diff --git a/Documentation/scsi/ChangeLog.megaraid_sas b/Documentation/scsi/ChangeLog.megaraid_sas index b64d10d221ec..4d9ce73ff730 100644 --- a/Documentation/scsi/ChangeLog.megaraid_sas +++ b/Documentation/scsi/ChangeLog.megaraid_sas | |||
@@ -1,3 +1,26 @@ | |||
1 | Release Date : Thu. Feb 24, 2011 17:00:00 PST 2010 - | ||
2 | (emaild-id:megaraidlinux@lsi.com) | ||
3 | Adam Radford | ||
4 | Current Version : 00.00.05.34-rc1 | ||
5 | Old Version : 00.00.05.29-rc1 | ||
6 | 1. Fix some failure gotos from megasas_probe_one(), etc. | ||
7 | 2. Add missing check_and_restore_queue_depth() call in | ||
8 | complete_cmd_fusion(). | ||
9 | 3. Enable MSI-X before calling megasas_init_fw(). | ||
10 | 4. Call tasklet_schedule() even if outbound_intr_status == 0 for MFI based | ||
11 | boards in MSI-X mode. | ||
12 | 5. Fix megasas_probe_one() to clear PCI_MSIX_FLAGS_ENABLE in msi control | ||
13 | register in kdump kernel. | ||
14 | 6. Fix megasas_get_cmd() to only print "Command pool empty" if | ||
15 | megasas_dbg_lvl is set. | ||
16 | 7. Fix megasas_build_dcdb_fusion() to not filter by TYPE_DISK. | ||
17 | 8. Fix megasas_build_dcdb_fusion() to use io_request->LUN[1] field. | ||
18 | 9. Add MR_EVT_CFG_CLEARED to megasas_aen_polling(). | ||
19 | 10. Fix tasklet_init() in megasas_init_fw() to use instancet->tasklet. | ||
20 | 11. Fix fault state handling in megasas_transition_to_ready(). | ||
21 | 12. Fix max_sectors setting for IEEE SGL's. | ||
22 | 13. Fix iMR OCR support to work correctly. | ||
23 | ------------------------------------------------------------------------------- | ||
1 | Release Date : Tues. Dec 14, 2010 17:00:00 PST 2010 - | 24 | Release Date : Tues. Dec 14, 2010 17:00:00 PST 2010 - |
2 | (emaild-id:megaraidlinux@lsi.com) | 25 | (emaild-id:megaraidlinux@lsi.com) |
3 | Adam Radford | 26 | Adam Radford |
diff --git a/drivers/scsi/megaraid/megaraid_sas.h b/drivers/scsi/megaraid/megaraid_sas.h index c782bbc57cc8..635b228c3ead 100644 --- a/drivers/scsi/megaraid/megaraid_sas.h +++ b/drivers/scsi/megaraid/megaraid_sas.h | |||
@@ -33,9 +33,9 @@ | |||
33 | /* | 33 | /* |
34 | * MegaRAID SAS Driver meta data | 34 | * MegaRAID SAS Driver meta data |
35 | */ | 35 | */ |
36 | #define MEGASAS_VERSION "00.00.05.29-rc1" | 36 | #define MEGASAS_VERSION "00.00.05.34-rc1" |
37 | #define MEGASAS_RELDATE "Dec. 7, 2010" | 37 | #define MEGASAS_RELDATE "Feb. 24, 2011" |
38 | #define MEGASAS_EXT_VERSION "Tue. Dec. 7 17:00:00 PDT 2010" | 38 | #define MEGASAS_EXT_VERSION "Thu. Feb. 24 17:00:00 PDT 2011" |
39 | 39 | ||
40 | /* | 40 | /* |
41 | * Device IDs | 41 | * Device IDs |
diff --git a/drivers/scsi/megaraid/megaraid_sas_base.c b/drivers/scsi/megaraid/megaraid_sas_base.c index 970d635574b3..f875e818905f 100644 --- a/drivers/scsi/megaraid/megaraid_sas_base.c +++ b/drivers/scsi/megaraid/megaraid_sas_base.c | |||
@@ -18,12 +18,13 @@ | |||
18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 | * | 19 | * |
20 | * FILE: megaraid_sas_base.c | 20 | * FILE: megaraid_sas_base.c |
21 | * Version : v00.00.05.29-rc1 | 21 | * Version : v00.00.05.34-rc1 |
22 | * | 22 | * |
23 | * Authors: LSI Corporation | 23 | * Authors: LSI Corporation |
24 | * Sreenivas Bagalkote | 24 | * Sreenivas Bagalkote |
25 | * Sumant Patro | 25 | * Sumant Patro |
26 | * Bo Yang | 26 | * Bo Yang |
27 | * Adam Radford <linuxraid@lsi.com> | ||
27 | * | 28 | * |
28 | * Send feedback to: <megaraidlinux@lsi.com> | 29 | * Send feedback to: <megaraidlinux@lsi.com> |
29 | * | 30 | * |