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: linux-ha by alan from
([email protected])
2. Linux-HA CVS: lib by alan from ([email protected])
3. Linux-HA CVS: lib by alan from ([email protected])
----------------------------------------------------------------------
Message: 1
Date: Fri, 10 Feb 2006 09:17:18 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by alan from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : alan
Host :
Module : linux-ha
Dir : linux-ha
Modified Files:
heartbeat.spec.in
Log Message:
Updated change log
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat.spec.in,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -3 -r1.159 -r1.160
--- heartbeat.spec.in 9 Feb 2006 21:36:14 -0000 1.159
+++ heartbeat.spec.in 10 Feb 2006 16:17:18 -0000 1.160
@@ -1,4 +1,4 @@
-# $Id: heartbeat.spec.in,v 1.159 2006/02/09 21:36:14 andrew Exp $
+# $Id: heartbeat.spec.in,v 1.160 2006/02/10 16:17:18 alan Exp $
# Workaround for a change in RPM 4.1.x; needs proper fixing soon!
##%define _unpackaged_files_terminate_build 0
@@ -77,9 +77,16 @@
implementing any number of interfaces.
%changelog
-* Thu Feb 10 2006 Alan Robertson <[EMAIL PROTECTED]> (see doc/AUTHORS file)
-+ Version 2.0.3 -
- + CRM General
+* Fri Feb 10 2006 Alan Robertson <[EMAIL PROTECTED]> (see doc/AUTHORS file)
++ Version 2.0.3 - Bug fixes and significant new features.
+ + Management Daemon/Library and GUI client
+ + provide a management library for manamgement daemon and CIM provider
+ + provide a management daemon and a basic GUI management tool
+ + CIM enablement
+ + CIM (Common Information Model) enablement - works with
+ sblim-sfcb, OpenWBEM, and Pegasus CIMOMs
+ - not yet compiled into our binary RPMs because of dependencies
+ + CRM (Cluster Resource Manager) General
+ All shutdowns go via the PE/TE - preserves inter-resource ordering
+ Support for future changes to the CIB (depreciation of cib_fragment)
+ Overhaul of IPC and HA channel callback logic
@@ -106,7 +113,7 @@
+ this prevents an admin from introducing old nodes back into an upgraded
cluster. It probably doesn't fully understand the config and may not
support the actions the PE/TE requires.
- + CIB
+ + CIB (Common Information Base daemon)
+ Make sure "query only" connections cant modify the CIB
+ Periodically dump some stats about what the CIB has been doing.
+ Verify there are no memory leaks
@@ -121,7 +128,7 @@
+ Check permissions for the on-disk CIB at startup
+ Dont trash unreadable on-disk CIBs
+ Fix for updates made against the whole CIB (not just one section)
- + PEngine
+ + PEngine (Policy Engine)
+ Many improvements to the handling of resource groups
+ Support "anonymous" clones
+ Fix stonith ordering
@@ -150,17 +157,19 @@
+ Improved failure handling: avoiding false positives
+ Always create orphaned resources - so they show up in crm_mon
+ Do not require sequential clone numbers starting at 0
- + TEngine
+ + TEngine (transition engine)
+ Detect old stonith ops
- + CLIs
+ + CLIs (Command Line interfaces)
+ Create a --one-shot option for crm_mon
+ Switch a number of CLI tools to use the new syncronous connections
+ Log errors to stderr where they will be seen and therefore useful
+ Support migration and un-migration of resources and resource groups
+ Create crm_verify for checking configuration validity
+ Simplify the passing of XML to cibadmin
- + Open bugs
- + 1075, 1080, 1081, 1084
+ + Known open bugs worth mentioning:
+ + 1075, 1080, 1081, 1084, 1085, 1064, 1069, 756, 984
+ + 1050, 1082, 1037, 1079
+
* Thu Sep 22 2005 Alan Robertson <[EMAIL PROTECTED]> (see doc/AUTHORS file)
+ Version 2.0.2 - small bug fix only release
------------------------------
Message: 2
Date: Fri, 10 Feb 2006 10:14:21 -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/clplumbing
Modified Files:
GSource.c
Log Message:
Fixed a problem with types being different between systems
This only occurs on machines with 64-bit longs.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/clplumbing/GSource.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -3 -r1.76 -r1.77
--- GSource.c 9 Feb 2006 23:21:45 -0000 1.76
+++ GSource.c 10 Feb 2006 17:14:20 -0000 1.77
@@ -1,4 +1,4 @@
-/* $Id: GSource.c,v 1.76 2006/02/09 23:21:45 alan Exp $ */
+/* $Id: GSource.c,v 1.77 2006/02/10 17:14:20 alan Exp $ */
/*
* Copyright (c) 2002 Alan Robertson <[EMAIL PROTECTED]>
*
@@ -126,9 +126,10 @@
, __FUNCTION__, (input)->description, ms \
, POINTER_TO_ULONG(input))
-#define EXPLAINDELAY(started, detected) cl_log(LOG_INFO \
+#define EXPLAINDELAY(started, detected) cl_log(LOG_INFO
\
, "%s: started at %llu should have started at %llu" \
- , __FUNCTION__, started, detected)
+ , __FUNCTION__, (unsigned long long)started, \
+ , (unsigned long long)detected)
#define WARN_TOOLONG(ms, input) cl_log(LOG_WARNING
\
------------------------------
Message: 3
Date: Fri, 10 Feb 2006 10:19:49 -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/clplumbing
Modified Files:
GSource.c
Log Message:
Fixed a stupid syntax error...
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/clplumbing/GSource.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -3 -r1.77 -r1.78
--- GSource.c 10 Feb 2006 17:14:20 -0000 1.77
+++ GSource.c 10 Feb 2006 17:19:49 -0000 1.78
@@ -1,4 +1,4 @@
-/* $Id: GSource.c,v 1.77 2006/02/10 17:14:20 alan Exp $ */
+/* $Id: GSource.c,v 1.78 2006/02/10 17:19:49 alan Exp $ */
/*
* Copyright (c) 2002 Alan Robertson <[EMAIL PROTECTED]>
*
@@ -128,7 +128,7 @@
#define EXPLAINDELAY(started, detected) cl_log(LOG_INFO
\
, "%s: started at %llu should have started at %llu" \
- , __FUNCTION__, (unsigned long long)started, \
+ , __FUNCTION__, (unsigned long long)started \
, (unsigned long long)detected)
------------------------------
_______________________________________________
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 48
********************************************