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: fencing by sunjd from
([email protected])
----------------------------------------------------------------------
Message: 1
Date: Fri, 18 Nov 2005 15:57:34 -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:
beam.tcl
Log Message:
Turned off a BEAM complaint which is due only to a bug.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/beam.tcl,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -3 -r1.21 -r1.22
--- beam.tcl 9 Nov 2005 06:29:36 -0000 1.21
+++ beam.tcl 18 Nov 2005 22:57:33 -0000 1.22
@@ -19,7 +19,10 @@
# We've disabled WARNING14 due to a 3.0 BEAM bug.
#- WARNING14 /*incompatible types*/
>>>WARNING14_cib_client_connect_d323470040e402e4
#"callbacks.c", line 216: Comparing `client_callback' of type `gboolean
(*)(IPC_Channel *, gpointer)' with `cib_null_callback' of type `gboolean
(*)(IPC_Channel *, gpointer)'
+# The following two are BEAM bugs... Hope they get fixed soon...
set beam::WARNING14::enabling_policy ""
+set beam::MISTAKE4::enabling_policy ""
+
set beam::WARNING15::enabling_policy "same_line"
set beam::PORTABILITY1::enabling_policy "always"
set beam::PORTABILITY3::enabling_policy "always"
------------------------------
Message: 2
Date: Fri, 18 Nov 2005 16:02:15 -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:
serial.c
Log Message:
Fixed two BEAM bugs:
Check for baud rates < 300 instead of <=0
Fixed an if-statement which had an extra ; changing it's meaning.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/plugins/HBcomm/serial.c,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -3 -r1.44 -r1.45
--- serial.c 20 Oct 2005 17:37:06 -0000 1.44
+++ serial.c 18 Nov 2005 23:02:15 -0000 1.45
@@ -1,4 +1,4 @@
-/* $Id: serial.c,v 1.44 2005/10/20 17:37:06 gshi Exp $ */
+/* $Id: serial.c,v 1.45 2005/11/18 23:02:15 alan Exp $ */
/*
* Linux-HA serial heartbeat code
*
@@ -176,7 +176,7 @@
compute_fragment_write_delay(void)
{
int rate_bps = atoi(baudstring);
- if (rate_bps <= 0 ){
+ if (rate_bps < 300 ){
cl_log(LOG_ERR, "%s: invalid baud rate(%s)",
__FUNCTION__, baudstring);
return HA_FAIL;
@@ -610,7 +610,7 @@
setmsalarm(500);
wrc = write(ourtty, datastr, datalen);
cancelmstimer();
- if (i != loop -1);{
+ if (i != (loop -1)) {
usleep(fragment_write_delay);
}
if (DEBUGPKTCONT) {
@@ -704,6 +704,11 @@
}
/*
* $Log: serial.c,v $
+ * Revision 1.45 2005/11/18 23:02:15 alan
+ * Fixed two BEAM bugs:
+ * Check for baud rates < 300 instead of <=0
+ * Fixed an if-statement which had an extra ; changing it's meaning.
+ *
* Revision 1.44 2005/10/20 17:37:06 gshi
* make the code easy to read
*
------------------------------
Message: 3
Date: Sat, 19 Nov 2005 10:58:37 -0700 (MST)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: fencing by sunjd from
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
linux-ha CVS committal
Author : sunjd
Host :
Project : linux-ha
Module : fencing
Dir : linux-ha/fencing/stonithd
Modified Files:
stonithd.c
Log Message:
correct a typo found by Joachim Banzhaf
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/fencing/stonithd/stonithd.c,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -3 -r1.77 -r1.78
--- stonithd.c 11 Nov 2005 10:06:01 -0000 1.77
+++ stonithd.c 19 Nov 2005 17:58:36 -0000 1.78
@@ -1,4 +1,4 @@
-/* $Id: stonithd.c,v 1.77 2005/11/11 10:06:01 sunjd Exp $ */
+/* $Id: stonithd.c,v 1.78 2005/11/19 17:58:36 sunjd Exp $ */
/* File: stonithd.c
* Description: STONITH daemon for node fencing
@@ -123,7 +123,7 @@
/* Must correspond to stonith_type_t */
static const char * stonith_op_strname[] =
{
- "QUERY", "RESET", "POWERON", "POWERON"
+ "QUERY", "RESET", "POWERON", "POWEROFF"
};
static GList * client_list = NULL;
@@ -3251,6 +3251,9 @@
/*
* $Log: stonithd.c,v $
+ * Revision 1.78 2005/11/19 17:58:36 sunjd
+ * correct a typo found by Joachim Banzhaf
+ *
* Revision 1.77 2005/11/11 10:06:01 sunjd
* Fix the bug 730: stonithd is killed by signal 11
*
------------------------------
_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs
End of Linux-ha-cvs Digest, Vol 24, Issue 59
********************************************