[Cluster-devel] cluster/cman-kernel/src membership.c

pcaulfield at sourceware.org pcaulfield at sourceware.org
Mon Jun 26 14:13:35 UTC 2006


CVSROOT:	/cvs/cluster
Module name:	cluster
Branch: 	RHEL4U4
Changes by:	pcaulfield at sourceware.org	2006-06-26 14:13:35

Modified files:
	cman-kernel/src: membership.c 

Log message:
	If we get a Master-HELLO and we are not the master for this transition then
	kick off a new one to resolve the ambiguity.
	
	I reckon this was probably the cause of the first trouble in bz#194491

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/cluster/cman-kernel/src/membership.c.diff?cvsroot=cluster&only_with_tag=RHEL4U4&r1=1.44.2.23&r2=1.44.2.23.2.1

--- cluster/cman-kernel/src/Attic/membership.c	2006/05/09 09:26:31	1.44.2.23
+++ cluster/cman-kernel/src/Attic/membership.c	2006/06/26 14:13:34	1.44.2.23.2.1
@@ -2882,6 +2882,13 @@
 		}
 	}
 
+	/* If we get a master hello and we are not the master then start a CHECK transition, cos the
+	   real master must have gone away in a period of confusion */
+	if (node_state != MASTER && hellomsg->flags & HELLO_FLAG_MASTER) {
+		node = find_node_by_nodeid(saddr->scl_nodeid);
+		start_transition(TRANS_CHECK, node);
+	}
+
 	return 0;
 
 }




More information about the Cluster-devel mailing list