All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] multipath: retry the DID_SOFT_ERROR for rdac checker commands
@ 2012-07-10 19:12 Moger, Babu
  2012-07-11  8:05 ` Christophe Varoqui
  0 siblings, 1 reply; 2+ messages in thread
From: Moger, Babu @ 2012-07-10 19:12 UTC (permalink / raw)
  To: device-mapper development (dm-devel@redhat.com); +Cc: christophe.varoqui

Sometimes we have seen immediate path failures for DID_SOFT_ERROR status. Just add a retry as other statuses.
It will basically add 5 retries.

Here are the messages.
Jun  4 17:46:42 ictc-billy kernel: mpt2sas0: log_info(0x31120100): originator(PL), code(0x12), sub_code(0x0100)
Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] Unhandled error code
Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] Result: hostbyte=DID_SOFT_ERROR driverbyte=DRIVER_OK
Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] CDB: Write(10): 2a 00 00 06 e4 a0 00 00 20 00
Jun  4 17:46:42 ictc-billy kernel: device-mapper: multipath: Failing path 8:208.
Jun  4 17:46:42 ictc-billy multipathd: 8:208: mark as failed
Jun  4 17:46:42 ictc-billy multipathd: mpathat: remaining active paths: 1


Signed-off-by: Babu Moger <babu.moger@netapp.com>
---
--- multipath-tools/libmultipath/checkers/rdac.c.orig	2012-07-10 13:35:34.000000000 -0500
+++ multipath-tools/libmultipath/checkers/rdac.c	2012-07-10 13:36:07.000000000 -0500
@@ -166,6 +166,7 @@ retry:
 		switch (io_hdr.host_status) {
 		case DID_BUS_BUSY:
 		case DID_ERROR:
+		case DID_SOFT_ERROR:
 		case DID_TRANSPORT_DISRUPTED:
 			/* Transport error, retry */
 			if (--retry_rdac)

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

* Re: [PATCH] multipath: retry the DID_SOFT_ERROR for rdac checker commands
  2012-07-10 19:12 [PATCH] multipath: retry the DID_SOFT_ERROR for rdac checker commands Moger, Babu
@ 2012-07-11  8:05 ` Christophe Varoqui
  0 siblings, 0 replies; 2+ messages in thread
From: Christophe Varoqui @ 2012-07-11  8:05 UTC (permalink / raw)
  To: Moger, Babu; +Cc: dm-devel

On mar., 2012-07-10 at 19:12 +0000, Moger, Babu wrote:
> Sometimes we have seen immediate path failures for DID_SOFT_ERROR status. Just add a retry as other statuses.
> It will basically add 5 retries.
> 
Applied.
Thanks.

> Here are the messages.
> Jun  4 17:46:42 ictc-billy kernel: mpt2sas0: log_info(0x31120100): originator(PL), code(0x12), sub_code(0x0100)
> Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] Unhandled error code
> Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] Result: hostbyte=DID_SOFT_ERROR driverbyte=DRIVER_OK
> Jun  4 17:46:42 ictc-billy kernel: sd 1:0:0:47: [sdn] CDB: Write(10): 2a 00 00 06 e4 a0 00 00 20 00
> Jun  4 17:46:42 ictc-billy kernel: device-mapper: multipath: Failing path 8:208.
> Jun  4 17:46:42 ictc-billy multipathd: 8:208: mark as failed
> Jun  4 17:46:42 ictc-billy multipathd: mpathat: remaining active paths: 1
> 
> 
> Signed-off-by: Babu Moger <babu.moger@netapp.com>
> ---
> --- multipath-tools/libmultipath/checkers/rdac.c.orig	2012-07-10 13:35:34.000000000 -0500
> +++ multipath-tools/libmultipath/checkers/rdac.c	2012-07-10 13:36:07.000000000 -0500
> @@ -166,6 +166,7 @@ retry:
>  		switch (io_hdr.host_status) {
>  		case DID_BUS_BUSY:
>  		case DID_ERROR:
> +		case DID_SOFT_ERROR:
>  		case DID_TRANSPORT_DISRUPTED:
>  			/* Transport error, retry */
>  			if (--retry_rdac)
> 
> 

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

end of thread, other threads:[~2012-07-11  8:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-10 19:12 [PATCH] multipath: retry the DID_SOFT_ERROR for rdac checker commands Moger, Babu
2012-07-11  8:05 ` Christophe Varoqui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.