linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
@ 2010-09-23  3:11 bo yang
  2010-10-12 13:21 ` Yang, Bo
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: bo yang @ 2010-09-23  3:11 UTC (permalink / raw)
  To: linux-scsi, akpm, linux-kernel, James.Bottomley, bo.yang

[-- Attachment #1: Type: text/plain, Size: 321 bytes --]

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   47 ++++++++++++++++++++++++++++++
 drivers/scsi/megaraid/megaraid_sas.c      |    2 -
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +--
 3 files changed, 51 insertions(+), 4 deletions(-)

[-- Attachment #2: megasas-version.patch --]
[-- Type: application/octet-stream, Size: 3518 bytes --]

diff -rupN old/Documentation/scsi/ChangeLog.megaraid_sas new/Documentation/scsi/ChangeLog.megaraid_sas
--- old/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
+++ new/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
@@ -1,3 +1,50 @@
+1 Release Date    : Thur.  May 03, 2010 09:12:45 PST 2009 -
+			(emaild-id:megaraidlinux@lsi.com)
+			Bo Yang
+
+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.
+	OCR is the new feature for megaraid_sas driver which
+	will allow the fw to do the chip reset which will not
+	affact the OS behavious.
+
+	To add the OCR support, driver need to do: 
+		a). reset the controller chips -- Xscale and Gen2 which
+		will change the function calls and add the reset function
+		related to this two chips.
+		
+		b). during the reset, driver will store the pending cmds
+		which not returned by FW to driver's pending queue.  Driver
+		will re-issue those pending cmds again to FW after the OCR
+		finished.
+		
+		c). In driver's timeout routine, driver will report to
+		OS as reset. Also driver's queue routine will block the
+		cmds until the OCR finished.
+		
+		d). in Driver's ISR routine, if driver get the FW state as
+		state change, FW in Failure status and FW support online controller
+		reset (OCR), driver will start to do the controller reset.
+		
+		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@lsi.com)
 			Bo Yang
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.c new/drivers/scsi/megaraid/megaraid_sas.c
--- old/drivers/scsi/megaraid/megaraid_sas.c	2010-09-17 03:29:29.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.c	2010-09-18 08:27:02.000000000 -0400
@@ -10,7 +10,7 @@
  *	   2 of the License, or (at your option) any later version.
  *
  * FILE		: megaraid_sas.c
- * Version     : v00.00.04.17.1-rc1
+ * Version     : v00.00.04.31-rc1
  *
  * Authors:
  *	(email-id : megaraidlinux@lsi.com)
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.h new/drivers/scsi/megaraid/megaraid_sas.h
--- old/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-09-23  3:11 [PATCH 5/5] scsi: megaraid_sas - Version and documentation update bo yang
@ 2010-10-12 13:21 ` Yang, Bo
  2010-10-26 16:12   ` James Bottomley
  2010-10-20 15:31 ` Yang, Bo
  2010-10-26 13:49 ` Yang, Bo
  2 siblings, 1 reply; 8+ messages in thread
From: Yang, Bo @ 2010-10-12 13:21 UTC (permalink / raw)
  To: bo yang, linux-scsi, akpm, linux-kernel, James.Bottomley

[-- Attachment #1: Type: text/plain, Size: 344 bytes --]

Re-Submit:

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   47 ++++++++++++++++++++++++++++++
 drivers/scsi/megaraid/megaraid_sas.c      |    2 -
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +--
 3 files changed, 51 insertions(+), 4 deletions(-)

[-- Attachment #2: megasas-version.patch --]
[-- Type: application/octet-stream, Size: 3518 bytes --]

diff -rupN old/Documentation/scsi/ChangeLog.megaraid_sas new/Documentation/scsi/ChangeLog.megaraid_sas
--- old/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
+++ new/Documentation/scsi/ChangeLog.megaraid_sas	2010-09-17 02:19:46.000000000 -0400
@@ -1,3 +1,50 @@
+1 Release Date    : Thur.  May 03, 2010 09:12:45 PST 2009 -
+			(emaild-id:megaraidlinux@lsi.com)
+			Bo Yang
+
+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.
+	OCR is the new feature for megaraid_sas driver which
+	will allow the fw to do the chip reset which will not
+	affact the OS behavious.
+
+	To add the OCR support, driver need to do: 
+		a). reset the controller chips -- Xscale and Gen2 which
+		will change the function calls and add the reset function
+		related to this two chips.
+		
+		b). during the reset, driver will store the pending cmds
+		which not returned by FW to driver's pending queue.  Driver
+		will re-issue those pending cmds again to FW after the OCR
+		finished.
+		
+		c). In driver's timeout routine, driver will report to
+		OS as reset. Also driver's queue routine will block the
+		cmds until the OCR finished.
+		
+		d). in Driver's ISR routine, if driver get the FW state as
+		state change, FW in Failure status and FW support online controller
+		reset (OCR), driver will start to do the controller reset.
+		
+		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@lsi.com)
 			Bo Yang
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.c new/drivers/scsi/megaraid/megaraid_sas.c
--- old/drivers/scsi/megaraid/megaraid_sas.c	2010-09-17 03:29:29.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.c	2010-09-18 08:27:02.000000000 -0400
@@ -10,7 +10,7 @@
  *	   2 of the License, or (at your option) any later version.
  *
  * FILE		: megaraid_sas.c
- * Version     : v00.00.04.17.1-rc1
+ * Version     : v00.00.04.31-rc1
  *
  * Authors:
  *	(email-id : megaraidlinux@lsi.com)
diff -rupN old/drivers/scsi/megaraid/megaraid_sas.h new/drivers/scsi/megaraid/megaraid_sas.h
--- old/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.000000000 -0400
+++ new/drivers/scsi/megaraid/megaraid_sas.h	2010-09-17 02:19:46.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

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-09-23  3:11 [PATCH 5/5] scsi: megaraid_sas - Version and documentation update bo yang
  2010-10-12 13:21 ` Yang, Bo
@ 2010-10-20 15:31 ` Yang, Bo
  2010-10-26 13:49 ` Yang, Bo
  2 siblings, 0 replies; 8+ messages in thread
From: Yang, Bo @ 2010-10-20 15:31 UTC (permalink / raw)
  To: Yang, Bo, bo yang, linux-scsi, akpm, linux-kernel, James.Bottomley
  Cc: Daftardar, Jayant

James,

Did you get the chance to apply megaraid sas driver 2/5 to 5/5 patches?

Thanks,

Bo Yang

-----Original Message-----
From: Yang, Bo 
Sent: Tuesday, October 12, 2010 9:22 AM
To: 'bo yang'; linux-scsi@vger.kernel.org; akpm@osdl.org; linux-kernel@vger.kernel.org; James.Bottomley@suse.de
Subject: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update

Re-Submit:

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   47 ++++++++++++++++++++++++++++++
 drivers/scsi/megaraid/megaraid_sas.c      |    2 -
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +--
 3 files changed, 51 insertions(+), 4 deletions(-)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-09-23  3:11 [PATCH 5/5] scsi: megaraid_sas - Version and documentation update bo yang
  2010-10-12 13:21 ` Yang, Bo
  2010-10-20 15:31 ` Yang, Bo
@ 2010-10-26 13:49 ` Yang, Bo
  2 siblings, 0 replies; 8+ messages in thread
From: Yang, Bo @ 2010-10-26 13:49 UTC (permalink / raw)
  To: Yang, Bo, bo yang, linux-scsi, akpm, linux-kernel, James.Bottomley
  Cc: Daftardar, Jayant

James,

We are waiting for your feedback for patches 2/5 - 5/5.  Did you get the chances to apply them?

Thanks,

Bo Yang

-----Original Message-----
From: Yang, Bo 
Sent: Wednesday, October 20, 2010 11:31 AM
To: Yang, Bo; 'bo yang'; 'linux-scsi@vger.kernel.org'; 'akpm@osdl.org'; 'linux-kernel@vger.kernel.org'; 'James.Bottomley@suse.de'
Cc: Daftardar, Jayant
Subject: RE: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update

James,

Did you get the chance to apply megaraid sas driver 2/5 to 5/5 patches?

Thanks,

Bo Yang

-----Original Message-----
From: Yang, Bo 
Sent: Tuesday, October 12, 2010 9:22 AM
To: 'bo yang'; linux-scsi@vger.kernel.org; akpm@osdl.org; linux-kernel@vger.kernel.org; James.Bottomley@suse.de
Subject: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update

Re-Submit:

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@lsi.com>

---
 Documentation/scsi/ChangeLog.megaraid_sas |   47 ++++++++++++++++++++++++++++++
 drivers/scsi/megaraid/megaraid_sas.c      |    2 -
 drivers/scsi/megaraid/megaraid_sas.h      |    6 +--
 3 files changed, 51 insertions(+), 4 deletions(-)

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-10-12 13:21 ` Yang, Bo
@ 2010-10-26 16:12   ` James Bottomley
  2010-10-26 17:15     ` Yang, Bo
  0 siblings, 1 reply; 8+ messages in thread
From: James Bottomley @ 2010-10-26 16:12 UTC (permalink / raw)
  To: Yang, Bo; +Cc: bo yang, linux-scsi, akpm, linux-kernel

On Tue, 2010-10-12 at 07:21 -0600, Yang, Bo wrote:
> Re-Submit:
> 
> Update the version and documentation.

This has an impressive set of checkpatch failures:

ERROR: trailing whitespace
#26: FILE: Documentation/scsi/ChangeLog.megaraid_sas:13:
+^ITo add the OCR support, driver need to do: $

ERROR: trailing whitespace
#30: FILE: Documentation/scsi/ChangeLog.megaraid_sas:17:
+^I^I$

ERROR: trailing whitespace
#35: FILE: Documentation/scsi/ChangeLog.megaraid_sas:22:
+^I^I$

ERROR: trailing whitespace
#39: FILE: Documentation/scsi/ChangeLog.megaraid_sas:26:
+^I^I$

ERROR: trailing whitespace
#43: FILE: Documentation/scsi/ChangeLog.megaraid_sas:30:
+^I^I$

ERROR: trailing whitespace
#46: FILE: Documentation/scsi/ChangeLog.megaraid_sas:33:
+^I^I $

ERROR: trailing whitespace
#48: FILE: Documentation/scsi/ChangeLog.megaraid_sas:35:
+^I^IOCR to see if driver can bring back the FW.      $

ERROR: trailing whitespace
#54: FILE: Documentation/scsi/ChangeLog.megaraid_sas:41:
+3.^IIn driver's timeout routine, driver will do three time reset if fw
is in $

total: 8 errors, 0 warnings, 70 lines checked

I've fixed it up this time, but could you run it through checkpatch.pl
next time?

Thanks,

James



^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-10-26 16:12   ` James Bottomley
@ 2010-10-26 17:15     ` Yang, Bo
  2010-10-27 11:54       ` Tomas Henzl
  0 siblings, 1 reply; 8+ messages in thread
From: Yang, Bo @ 2010-10-26 17:15 UTC (permalink / raw)
  To: James Bottomley; +Cc: bo yang, linux-scsi, akpm, linux-kernel

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 2388 bytes --]

James,

Thanks for correcting that. Did you also applied 2/5, 3/5 and 4/5 patches?

By the way, I always use checkpatch.pl to check the patch before I attach the patch to the e-mail.  Also I just went to the 5/5 patch to verify the patch: the steps:

1. go to  http://marc.info/?l=linux-scsi&m=128688974201201&w=2 
2. click: ["megasas-version.patch" (application/octet-stream)] to download this patch.  
3. Used the checkpatch.pl to check (I used the cmd: "checkpatch.pl --no-tree megasas-version.patch") 

It looks OK for me (no errors).  It is maybe the checkpatch.pl I used does not get updated or some steps are not correct.  I will find out the updated one to try and find out the reasons.   


Thanks,

Bo Yang


-----Original Message-----
From: James Bottomley [mailto:James.Bottomley@suse.de] 
Sent: Tuesday, October 26, 2010 12:12 PM
To: Yang, Bo
Cc: bo yang; linux-scsi@vger.kernel.org; akpm@osdl.org; linux-kernel@vger.kernel.org
Subject: Re: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update

On Tue, 2010-10-12 at 07:21 -0600, Yang, Bo wrote:
> Re-Submit:
> 
> Update the version and documentation.

This has an impressive set of checkpatch failures:

ERROR: trailing whitespace
#26: FILE: Documentation/scsi/ChangeLog.megaraid_sas:13:
+^ITo add the OCR support, driver need to do: $

ERROR: trailing whitespace
#30: FILE: Documentation/scsi/ChangeLog.megaraid_sas:17:
+^I^I$

ERROR: trailing whitespace
#35: FILE: Documentation/scsi/ChangeLog.megaraid_sas:22:
+^I^I$

ERROR: trailing whitespace
#39: FILE: Documentation/scsi/ChangeLog.megaraid_sas:26:
+^I^I$

ERROR: trailing whitespace
#43: FILE: Documentation/scsi/ChangeLog.megaraid_sas:30:
+^I^I$

ERROR: trailing whitespace
#46: FILE: Documentation/scsi/ChangeLog.megaraid_sas:33:
+^I^I $

ERROR: trailing whitespace
#48: FILE: Documentation/scsi/ChangeLog.megaraid_sas:35:
+^I^IOCR to see if driver can bring back the FW.      $

ERROR: trailing whitespace
#54: FILE: Documentation/scsi/ChangeLog.megaraid_sas:41:
+3.^IIn driver's timeout routine, driver will do three time reset if fw
is in $

total: 8 errors, 0 warnings, 70 lines checked

I've fixed it up this time, but could you run it through checkpatch.pl
next time?

Thanks,

James


ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
  2010-10-26 17:15     ` Yang, Bo
@ 2010-10-27 11:54       ` Tomas Henzl
  0 siblings, 0 replies; 8+ messages in thread
From: Tomas Henzl @ 2010-10-27 11:54 UTC (permalink / raw)
  To: Yang, Bo; +Cc: James Bottomley, bo yang, linux-scsi, akpm, linux-kernel

On 10/26/2010 07:15 PM, Yang, Bo wrote:
> James,
>
> Thanks for correcting that. Did you also applied 2/5, 3/5 and 4/5 patches?
>
> By the way, I always use checkpatch.pl to check the patch before I attach the patch to the e-mail.  Also I just went to the 5/5 patch to verify the patch: the steps:
>
> 1. go to  http://marc.info/?l=linux-scsi&m=128688974201201&w=2
>   
Looking carefully at the above page (select the text) you can see the trailing whitespaces
directly on that page. 

> 2. click: ["megasas-version.patch" (application/octet-stream)] to download this patch.  
> 3. Used the checkpatch.pl to check (I used the cmd: "checkpatch.pl --no-tree megasas-version.patch") 
>   

> It looks OK for me (no errors).  It is maybe the checkpatch.pl I used does not get updated or some steps are not correct.  I will find out the updated one to try and find out the reasons.   
>   
Use the checkpatch.pl from the scripts directory


>
> Thanks,
>
> Bo Yang
>
>
> -----Original Message-----
> From: James Bottomley [mailto:James.Bottomley@suse.de] 
> Sent: Tuesday, October 26, 2010 12:12 PM
> To: Yang, Bo
> Cc: bo yang; linux-scsi@vger.kernel.org; akpm@osdl.org; linux-kernel@vger.kernel.org
> Subject: Re: [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
>
> On Tue, 2010-10-12 at 07:21 -0600, Yang, Bo wrote:
>   
>> Re-Submit:
>>
>> Update the version and documentation.
>>     
> This has an impressive set of checkpatch failures:
>
> ERROR: trailing whitespace
> #26: FILE: Documentation/scsi/ChangeLog.megaraid_sas:13:
> +^ITo add the OCR support, driver need to do: $
>
> ERROR: trailing whitespace
> #30: FILE: Documentation/scsi/ChangeLog.megaraid_sas:17:
> +^I^I$
>
> ERROR: trailing whitespace
> #35: FILE: Documentation/scsi/ChangeLog.megaraid_sas:22:
> +^I^I$
>
> ERROR: trailing whitespace
> #39: FILE: Documentation/scsi/ChangeLog.megaraid_sas:26:
> +^I^I$
>
> ERROR: trailing whitespace
> #43: FILE: Documentation/scsi/ChangeLog.megaraid_sas:30:
> +^I^I$
>
> ERROR: trailing whitespace
> #46: FILE: Documentation/scsi/ChangeLog.megaraid_sas:33:
> +^I^I $
>
> ERROR: trailing whitespace
> #48: FILE: Documentation/scsi/ChangeLog.megaraid_sas:35:
> +^I^IOCR to see if driver can bring back the FW.      $
>
> ERROR: trailing whitespace
> #54: FILE: Documentation/scsi/ChangeLog.megaraid_sas:41:
> +3.^IIn driver's timeout routine, driver will do three time reset if fw
> is in $
>
> total: 8 errors, 0 warnings, 70 lines checked
>
> I've fixed it up this time, but could you run it through checkpatch.pl
> next time?
>
> Thanks,
>
> James
>
>
> N�����r��y���b�X��ǧv�^�)޺{.n�+����{���"�{ay�\x1dʇڙ�,j\a��f���h���z�\x1e�w���\f���j:+v���w�j�m����\a����zZ+��ݢj"��!tml=


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH 5/5] scsi: megaraid_sas - Version and documentation update
@ 2010-08-11 21:12 bo yang
  0 siblings, 0 replies; 8+ messages in thread
From: bo yang @ 2010-08-11 21:12 UTC (permalink / raw)
  To: bo.yang, James.Bottomley, James.Bottomley; +Cc: linux-scsi, akpm, linux-kernel

Update the version and documentation.

Signed-off-by Bo Yang<bo.yang@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@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@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

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-10-27 11:54 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-23  3:11 [PATCH 5/5] scsi: megaraid_sas - Version and documentation update bo yang
2010-10-12 13:21 ` Yang, Bo
2010-10-26 16:12   ` James Bottomley
2010-10-26 17:15     ` Yang, Bo
2010-10-27 11:54       ` Tomas Henzl
2010-10-20 15:31 ` Yang, Bo
2010-10-26 13:49 ` Yang, Bo
  -- strict thread matches above, loose matches on Subject: below --
2010-08-11 21:12 bo yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).