All of lore.kernel.org
 help / color / mirror / Atom feed
* RDAC path checker status change messages
@ 2009-06-23 19:50 Charlie Brady
  2009-06-24 18:15 ` Chandra Seetharaman
  2010-11-03 21:09 ` Mike Snitzer
  0 siblings, 2 replies; 12+ messages in thread
From: Charlie Brady @ 2009-06-23 19:50 UTC (permalink / raw)
  To: dm-devel


It seems to me that this patch is required, to fix a problem with "path 
down" messages being logged when the path transitions to up (and 
presumably ghost).

--- libcheckers/rdac.c.orig     2009-06-23 15:38:05.371422000 -0400
+++ libcheckers/rdac.c  2009-06-23 15:39:28.020843000 -0400
@@ -105,5 +105,12 @@
                 return PATH_DOWN;
         }

-       return ((inq.avtcvp & 0x1) ? PATH_UP : PATH_GHOST);
+       if (inq.avtcvp & 0x1) {
+               MSG(c, MSG_RDAC_UP);
+               return PATH_UP;
+       }
+       else {
+               MSG(c, MSG_RDAC_GHOST);
+               return PATH_GHOST;
+       }
  }

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

end of thread, other threads:[~2010-11-03 22:16 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-23 19:50 RDAC path checker status change messages Charlie Brady
2009-06-24 18:15 ` Chandra Seetharaman
2009-06-24 20:19   ` Charlie Brady
2009-06-24 21:01     ` Benjamin Marzinski
2009-06-25 16:57     ` Charlie Brady
2009-06-25 17:02       ` Charlie Brady
2009-06-25 17:28         ` Charlie Brady
2009-06-26 16:07           ` Benjamin Marzinski
2009-06-25 18:29     ` Chandra Seetharaman
2009-06-25 18:40       ` Charlie Brady
2010-11-03 21:09 ` Mike Snitzer
2010-11-03 22:16   ` 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.