Prev: [PATCH 3/5] scsi: megaraid_sas - Add input parameter for max_sectors
Next: [PATCHv3 1/2] lib: vsprintf: optimised put_dec() function
From: bo yang on 11 Aug 2010 17:30 Update the version and documentation. Signed-off-by Bo Yang<bo.yang(a)lsi.com> --- Documentation/scsi/ChangeLog.megaraid_sas | 16 +++++++++++++++- drivers/scsi/megaraid/megaraid_sas.h | 6 +++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff -rupN old/Documentation/scsi/ChangeLog.megaraid_sas new/Documentation/scsi/ChangeLog.megaraid_sas --- old/Documentation/scsi/ChangeLog.megaraid_sas 2010-08-10 05:00:31.000000000 -0400 +++ new/Documentation/scsi/ChangeLog.megaraid_sas 2010-08-10 05:09:38.000000000 -0400 @@ -2,7 +2,7 @@ (emaild-id:megaraidlinux(a)lsi.com) Bo Yang -2 Current Version : 00.00.04.17.1-rc1 +2 Current Version : 00.00.04.31-rc1 3 Older Version : 00.00.04.17.1-rc1 1. Add the Online Controller Reset (OCR) to the Driver. @@ -31,6 +31,20 @@ e). In driver's IOCTL routine, the application cmds will wait for the OCR to finish, then issue the cmds to FW. + f). Before driver kill adapter, driver will do last chance of + OCR to see if driver can bring back the FW. + +2. Add the support update flag to the driver to tell LSI megaraid_sas + application which driver will support the device update. So application + will not need to do the device update after application add/del the device + from the system. +3. In driver's timeout routine, driver will do three time reset if fw is in + failed state. Driver will kill adapter if can't bring back FW after the + this three times reset. +4. Add the input parameter max_sectors to 1MB support to our GEN2 controller. + customer can use the input paramenter max_sectors to add 1MB support to GEN2 + controller. + 1 Release Date : Thur. Oct 29, 2009 09:12:45 PST 2009 - (emaild-id:megaraidlinux(a)lsi.com) Bo Yang diff -rupN old/drivers/scsi/megaraid/megaraid_sas.h new/drivers/scsi/megaraid/megaraid_sas.h --- old/drivers/scsi/megaraid/megaraid_sas.h 2010-08-10 04:51:39.000000000 -0400 +++ new/drivers/scsi/megaraid/megaraid_sas.h 2010-08-10 04:36:15.000000000 -0400 @@ -18,9 +18,9 @@ /* * MegaRAID SAS Driver meta data */ -#define MEGASAS_VERSION "00.00.04.17.1-rc1" -#define MEGASAS_RELDATE "Oct. 29, 2009" -#define MEGASAS_EXT_VERSION "Thu. Oct. 29, 11:41:51 PST 2009" +#define MEGASAS_VERSION "00.00.04.31-rc1" +#define MEGASAS_RELDATE "May 3, 2010" +#define MEGASAS_EXT_VERSION "Mon. May 3, 11:41:51 PST 2010" /* * Device IDs -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |