Send Linux-ha-cvs mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Linux-ha-cvs digest..."


Today's Topics:

   1. Linux-HA CVS: crm by andrew from 
      ([email protected])
   2. Linux-HA CVS: crm by andrew from 
      ([email protected])
   3. Linux-HA CVS: lib by alan from  ([email protected])
   4. Linux-HA CVS: heartbeat by gshi from 
      ([email protected])


----------------------------------------------------------------------

Message: 1
Date: Fri, 24 Feb 2006 04:30:01 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: crm by andrew from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : andrew
Host    : 
Project : linux-ha
Module  : crm

Dir     : linux-ha/crm


Modified Files:
        crm-1.0.dtd 


Log Message:
New fields

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/crm-1.0.dtd,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -3 -r1.46 -r1.47
--- crm-1.0.dtd 24 Feb 2006 10:53:43 -0000      1.46
+++ crm-1.0.dtd 24 Feb 2006 11:30:00 -0000      1.47
@@ -85,7 +85,10 @@
           restart_type          (ignore|restart)                 'ignore'
           multiple_active       (stop_start|stop_only|block)     'stop_start'
           resource_stickiness   (0|INFINITY|-INFINITY)           '0'
-          start_prereq          (nothing|quorum|fencing)         #IMPLIED>
+          start_prereq          (nothing|quorum|fencing)         #IMPLIED
+
+          ordered               (true|false)                     'true'
+          collocated            (true|false)                     'true'>
 <!ELEMENT clone (primitive|group),instance_attributes*>
 <!ATTLIST clone
           id            CDATA               #REQUIRED
@@ -99,6 +102,8 @@
           start_prereq          (nothing|quorum|fencing)         #IMPLIED
           notify                (true|false)                     'false'
 
+          globally_unique       (true|false)                     'true'
+
           ordered       (true|false)     'true'
           interleave    (true|false)     'false'>
 <!ELEMENT master_slave (clone, instance_attributes*)>
@@ -114,6 +119,8 @@
           start_prereq          (nothing|quorum|fencing)         #IMPLIED
           notify                (true|false)                     'false'
 
+          globally_unique       (true|false)                     'true'
+
           ordered          (true|false)  'true'
           interleave       (true|false)  'false'
           max_masters      CDATA         #REQUIRED




------------------------------

Message: 2
Date: Fri, 24 Feb 2006 04:31:13 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: crm by andrew from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : andrew
Host    : 
Project : linux-ha
Module  : crm

Dir     : linux-ha/crm/pengine


Modified Files:
        group.c 


Log Message:
Spelling

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/pengine/group.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -3 -r1.52 -r1.53
--- group.c     14 Feb 2006 11:59:57 -0000      1.52
+++ group.c     24 Feb 2006 11:31:13 -0000      1.53
@@ -1,4 +1,4 @@
-/* $Id: group.c,v 1.52 2006/02/14 11:59:57 andrew Exp $ */
+/* $Id: group.c,v 1.53 2006/02/24 11:31:13 andrew Exp $ */
 /* 
  * Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
  * 
@@ -61,7 +61,7 @@
        const char *group_ordered = g_hash_table_lookup(
                rsc->parameters, XML_RSC_ATTR_ORDERED);
        const char *group_colocated = g_hash_table_lookup(
-               rsc->parameters, "colocated");
+               rsc->parameters, "collocated");
        
 
        crm_debug_3("Processing resource %s...", rsc->id);




------------------------------

Message: 3
Date: Fri, 24 Feb 2006 09:46:40 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by alan from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : alan
Host    : 
Project : linux-ha
Module  : lib

Dir     : linux-ha/lib/plugins/HBcomm


Modified Files:
        mcast.c 


Log Message:
Initialized a variable to make a semi-broken version of gcc happy.

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/plugins/HBcomm/mcast.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- mcast.c     24 Feb 2006 02:20:24 -0000      1.28
+++ mcast.c     24 Feb 2006 16:46:39 -0000      1.29
@@ -1,4 +1,4 @@
-/* $Id: mcast.c,v 1.28 2006/02/24 02:20:24 alan Exp $ */
+/* $Id: mcast.c,v 1.29 2006/02/24 16:46:39 alan Exp $ */
 /*
  * mcast.c: implements hearbeat API for UDP multicast communication
  *
@@ -700,7 +700,7 @@
        int             j;
        int             maxtry = 120;
        gboolean        gotaddr = FALSE;
-       int             err;
+       int             err = 0;
        
        if (!addr) {
                return -1;
@@ -820,6 +820,9 @@
 
 /*
  * $Log: mcast.c,v $
+ * Revision 1.29  2006/02/24 16:46:39  alan
+ * Initialized a variable to make a semi-broken version of gcc happy.
+ *
  * Revision 1.28  2006/02/24 02:20:24  alan
  * Increased how long we'll wait for the network interface to get an address...
  *




------------------------------

Message: 4
Date: Fri, 24 Feb 2006 09:52:26 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: heartbeat by gshi from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : gshi
Host    : 
Project : linux-ha
Module  : heartbeat

Dir     : linux-ha/heartbeat


Modified Files:
        heartbeat.c 


Log Message:
This message indicates ACK is broken or there is uni-directional communication
Mark it as error so that a user can report it.



===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat/heartbeat.c,v
retrieving revision 1.497
retrieving revision 1.498
diff -u -3 -r1.497 -r1.498
--- heartbeat.c 9 Feb 2006 19:04:04 -0000       1.497
+++ heartbeat.c 24 Feb 2006 16:52:26 -0000      1.498
@@ -2,7 +2,7 @@
  * TODO:
  * 1) Man page update
  */
-/* $Id: heartbeat.c,v 1.497 2006/02/09 19:04:04 alan Exp $ */
+/* $Id: heartbeat.c,v 1.498 2006/02/24 16:52:26 gshi Exp $ */
 /*
  * heartbeat: Linux-HA heartbeat code
  *
@@ -5834,7 +5834,7 @@
        hist->lastmsg = slot;
        
        if (enable_flow_control && hist->hiseq - hist->lowseq > MAXMSGHIST*3 / 
4){
-               cl_log(LOG_WARNING, "Message hist queue is filling up (%d 
messages in queue)",
+               cl_log(LOG_ERR, "Message hist queue is filling up (%d messages 
in queue)",
                       (int)(hist->hiseq - hist->lowseq));
        }
        
@@ -6233,6 +6233,10 @@
 
 /*
  * $Log: heartbeat.c,v $
+ * Revision 1.498  2006/02/24 16:52:26  gshi
+ * This message indicates ACK is broken or there is uni-directional 
communication
+ * Mark it as error so that a user can report it.
+ *
  * Revision 1.497  2006/02/09 19:04:04  alan
  * Changed default timeouts for heartbeat events to be based largely on 
heartbeat
  * configuration parameters.




------------------------------

_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs


End of Linux-ha-cvs Digest, Vol 27, Issue 97
********************************************

Reply via email to