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: crm by andrew from
([email protected])
4. Linux-HA CVS: lib by andrew from
([email protected])
5. Linux-HA CVS: include by andrew from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Thu, 16 Mar 2006 16:29:32 -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/cib
Modified Files:
primatives.c
Log Message:
Deleting an object that doesnt exist shouldn't be an error.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/cib/primatives.c,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -3 -r1.32 -r1.33
--- primatives.c 11 Mar 2006 21:18:38 -0000 1.32
+++ primatives.c 16 Mar 2006 23:29:31 -0000 1.33
@@ -1,4 +1,4 @@
-/* $Id: primatives.c,v 1.32 2006/03/11 21:18:38 andrew Exp $ */
+/* $Id: primatives.c,v 1.33 2006/03/16 23:29:31 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
*
@@ -339,7 +339,7 @@
; /* nothing */
} else if(equiv_node == NULL) {
- result = cib_NOTEXISTS;
+ result = cib_ok;
} else if(xml_has_children(delete_spec) == FALSE) {
/* only leaves are deleted */
------------------------------
Message: 2
Date: Thu, 16 Mar 2006 16:32:14 -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:
stages.c
Log Message:
Logging
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/pengine/stages.c,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -3 -r1.87 -r1.88
--- stages.c 8 Mar 2006 15:49:39 -0000 1.87
+++ stages.c 16 Mar 2006 23:32:14 -0000 1.88
@@ -1,4 +1,4 @@
-/* $Id: stages.c,v 1.87 2006/03/08 15:49:39 andrew Exp $ */
+/* $Id: stages.c,v 1.88 2006/03/16 23:32:14 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
*
@@ -490,7 +490,7 @@
);
crm_log_xml_debug_3(data_set->graph, "created generic action list");
- crm_info("Created transition graph %d.", transition_id);
+ crm_notice("Created transition graph %d.", transition_id);
return TRUE;
}
------------------------------
Message: 3
Date: Thu, 16 Mar 2006 16:33:21 -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/tengine
Modified Files:
callbacks.c
Log Message:
Logging - make it clear that the value is in ms
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/crm/tengine/callbacks.c,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -3 -r1.70 -r1.71
--- callbacks.c 27 Feb 2006 09:55:57 -0000 1.70
+++ callbacks.c 16 Mar 2006 23:33:21 -0000 1.71
@@ -1,4 +1,4 @@
-/* $Id: callbacks.c,v 1.70 2006/02/27 09:55:57 andrew Exp $ */
+/* $Id: callbacks.c,v 1.71 2006/03/16 23:33:21 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
*
@@ -57,7 +57,7 @@
crm_err("Tried to start timer with period: %d", timeout);
} else if(timer->source_id == 0) {
- crm_debug("Starting abort timer: %d", timeout);
+ crm_debug("Starting abort timer: %dms", timeout);
timer->timeout = timeout;
timer->source_id = Gmain_timeout_add(
timeout, global_timer_callback, (void*)timer);
------------------------------
Message: 4
Date: Thu, 16 Mar 2006 16:34:30 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : lib
Dir : linux-ha/lib/crm/transition
Modified Files:
graph.c
Log Message:
Logging
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/crm/transition/graph.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- graph.c 20 Feb 2006 16:25:50 -0000 1.5
+++ graph.c 16 Mar 2006 23:34:30 -0000 1.6
@@ -1,4 +1,4 @@
-/* $Id: graph.c,v 1.5 2006/02/20 16:25:50 andrew Exp $ */
+/* $Id: graph.c,v 1.6 2006/03/16 23:34:30 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
*
@@ -314,8 +314,8 @@
crm_log_maybe(stat_log_level+1,
"====================================================");
crm_log_maybe(stat_log_level,
- "Transition %d Complete: %d, Pending: %d,"
- " Fired: %d, Skipped: %d, Incomplete: %d",
+ "Transition %d: (Complete=%d, Pending=%d,"
+ " Fired=%d, Skipped=%d, Incomplete=%d",
graph->id, num_complete, num_pending, num_fired,
num_skipped, num_incomplete);
------------------------------
Message: 5
Date: Thu, 16 Mar 2006 16:35:26 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : include
Dir : linux-ha/include/crm/common
Modified Files:
util.h
Log Message:
There are situations when we need to remove the cached value.
Add a function to allow this.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/include/crm/common/util.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -3 -r1.27 -r1.28
--- util.h 16 Jan 2006 09:19:54 -0000 1.27
+++ util.h 16 Mar 2006 23:35:25 -0000 1.28
@@ -1,4 +1,4 @@
-/* $Id: util.h,v 1.27 2006/01/16 09:19:54 andrew Exp $ */
+/* $Id: util.h,v 1.28 2006/03/16 23:35:25 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
*
@@ -64,6 +64,7 @@
extern const char *get_uuid(ll_cluster_t *hb, const char *uname);
extern const char *get_uname(ll_cluster_t *hb, const char *uuid);
+extern void unget_uuid(const char *uname);
extern void set_uuid(
ll_cluster_t* hb, crm_data_t *node, const char *attr, const char
*uname);
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 28, Issue 32
********************************************