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: lib by andrew from
([email protected])
2. Linux-HA CVS: heartbeat by andrew from
([email protected])
3. Linux-HA CVS: heartbeat by gshi from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Mon, 19 Dec 2005 09:56:05 -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/cib
Modified Files:
cib_attrs.c
Log Message:
Allow attributes to be created in sections we dont monitor
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/crm/cib/cib_attrs.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- cib_attrs.c 19 Dec 2005 16:54:43 -0000 1.9
+++ cib_attrs.c 19 Dec 2005 16:56:05 -0000 1.10
@@ -1,4 +1,4 @@
-/* $Id: cib_attrs.c,v 1.9 2005/12/19 16:54:43 andrew Exp $ */
+/* $Id: cib_attrs.c,v 1.10 2005/12/19 16:56:05 andrew Exp $ */
/*
* Copyright (C) 2004 Andrew Beekhof <[EMAIL PROTECTED]>
@@ -76,6 +76,9 @@
}
tag = XML_TAG_TRANSIENT_NODEATTRS;
+ } else if(section != NULL) {
+ tag = XML_TAG_TRANSIENT_NODEATTRS;
+
} else {
return cib_NOSECTION;
}
@@ -169,10 +172,13 @@
} else if(safe_str_eq(section, XML_CIB_TAG_NODES)) {
tag = XML_CIB_TAG_NODE;
- } else if(safe_str_eq(section, XML_CIB_TAG_STATUS)) {
+ } else if(section != NULL && node_uuid != NULL) {
xml_next = find_entity(xml_obj, XML_CIB_TAG_STATE, node_uuid);
tag = XML_TAG_TRANSIENT_NODEATTRS;
+ } else if(section != NULL) {
+ tag = XML_TAG_TRANSIENT_NODEATTRS;
+
} else {
return cib_NOSECTION;
}
------------------------------
Message: 2
Date: Mon, 19 Dec 2005 09:57:35 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: heartbeat by andrew from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : andrew
Host :
Project : linux-ha
Module : heartbeat
Dir : linux-ha/heartbeat/libnet_util
Modified Files:
send_arp.c
Log Message:
Make use of the errbuf when there was an error.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat/libnet_util/send_arp.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -3 -r1.23 -r1.24
--- send_arp.c 3 Oct 2005 03:29:40 -0000 1.23
+++ send_arp.c 19 Dec 2005 16:57:34 -0000 1.24
@@ -1,4 +1,4 @@
-/* $Id: send_arp.c,v 1.23 2005/10/03 03:29:40 horms Exp $ */
+/* $Id: send_arp.c,v 1.24 2005/12/19 16:57:34 andrew Exp $ */
/*
* send_arp
*
@@ -211,7 +211,7 @@
}
#elif defined(HAVE_LIBNET_1_1_API)
if ((l=libnet_init(LIBNET_LINK, device, errbuf)) == NULL) {
- cl_log(LOG_ERR, "libnet_init failure on %s", device);
+ cl_log(LOG_ERR, "libnet_init failure on %s: %s", device,
errbuf);
unlink(pidfilename);
return EXIT_FAILURE;
}
@@ -701,6 +701,9 @@
/*
* $Log: send_arp.c,v $
+ * Revision 1.24 2005/12/19 16:57:34 andrew
+ * Make use of the errbuf when there was an error.
+ *
* Revision 1.23 2005/10/03 03:29:40 horms
* Improve send_arp help message
*
------------------------------
Message: 3
Date: Mon, 19 Dec 2005 11:41:44 -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:
add debug msg for rexmit
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat/heartbeat.c,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -3 -r1.476 -r1.477
--- heartbeat.c 9 Dec 2005 19:51:33 -0000 1.476
+++ heartbeat.c 19 Dec 2005 18:41:43 -0000 1.477
@@ -2,7 +2,7 @@
* TODO:
* 1) Man page update
*/
-/* $Id: heartbeat.c,v 1.476 2005/12/09 19:51:33 blaschke Exp $ */
+/* $Id: heartbeat.c,v 1.477 2005/12/19 18:41:43 gshi Exp $ */
/*
* heartbeat: Linux-HA heartbeat code
*
@@ -5688,6 +5688,11 @@
cl_log_message(LOG_ERR, msg);
}
+
+ if (ANYDEBUG){
+ cl_log(LOG_DEBUG, "rexmit request from node %s for
msg(%ld-%ld)",
+ fromnodename, fseq, lseq);
+ }
/*
* Retransmit missing packets in proper sequence.
*/
@@ -6032,6 +6037,9 @@
/*
* $Log: heartbeat.c,v $
+ * Revision 1.477 2005/12/19 18:41:43 gshi
+ * add debug msg for rexmit
+ *
* Revision 1.476 2005/12/09 19:51:33 blaschke
*
* Port fixes for bugs 559, 835 and 927 from 1.2.x
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 25, Issue 45
********************************************