Send Linux-ha-cvs mailing list submissions to
        linux-ha-cvs@lists.linux-ha.org

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: lrm by alan from  (linux-ha-cvs@lists.linux-ha.org)
   2. Linux-HA CVS: linux-ha by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   3. Linux-HA CVS: linux-ha by msoffen from 
      (linux-ha-cvs@lists.linux-ha.org)
   4. Linux-HA CVS: linux-ha by lars from 
      (linux-ha-cvs@lists.linux-ha.org)


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

Message: 1
Date: Mon,  7 Aug 2006 09:07:30 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: lrm by alan from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

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

Dir     : linux-ha/lrm/lrmd


Modified Files:
        lrmd.c 


Log Message:
Lowered limit on maximum number of simultaneous child processes in the lrmd.

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lrm/lrmd/lrmd.c,v
retrieving revision 1.233
retrieving revision 1.234
diff -u -3 -r1.233 -r1.234
--- lrmd.c      19 Jul 2006 21:44:17 -0000      1.233
+++ lrmd.c      7 Aug 2006 15:07:29 -0000       1.234
@@ -1,4 +1,4 @@
-/* $Id: lrmd.c,v 1.233 2006/07/19 21:44:17 lars Exp $ */
+/* $Id: lrmd.c,v 1.234 2006/08/07 15:07:29 alan Exp $ */
 /*
  * Local Resource Manager Daemon
  *
@@ -362,7 +362,7 @@
 static gboolean shutdown_in_progress   = FALSE;
 static unsigned long apphb_interval    = 2000; /* Millisecond */
 static gboolean reg_to_apphbd          = FALSE;
-static int MAX_CHILD_NUMBER            = 16;
+static int MAX_CHILD_NUMBER            = 4;
 static int INTERVAL_RETRY              = 1000; /* Millisecond */
 static int child_number                        = 0;
 
@@ -3886,6 +3886,9 @@
 }
 /*
  * $Log: lrmd.c,v $
+ * Revision 1.234  2006/08/07 15:07:29  alan
+ * Lowered limit on maximum number of simultaneous child processes in the lrmd.
+ *
  * Revision 1.233  2006/07/19 21:44:17  lars
  * Coverity #48: rsc was dereferenced before NULL check.
  *




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

Message: 2
Date: Mon,  7 Aug 2006 09:41:12 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : msoffen
Host    : 
Module  : linux-ha

Dir     : linux-ha


Modified Files:
        bootstrap 


Log Message:
Added ln's to the specific programs since for some reason, some incremental 
parts expect autoheader to be autoheader, and not potentially autoheader213.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/bootstrap,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -3 -r1.29 -r1.30
--- bootstrap   26 May 2006 11:08:43 -0000      1.29
+++ bootstrap   7 Aug 2006 15:41:12 -0000       1.30
@@ -77,6 +77,9 @@
   *)           IsHelp=no;;
 esac
 
+arch=`uname -s`
+# Disable the errors on FreeBSD until a fix can be found.
+if [ ! "$arch" = "FreeBSD" ]; then
 set -e
 #
 #      All errors are fatal from here on out...
@@ -86,6 +89,7 @@
 #      And the trap will ensure sure some kind of error message comes out.
 #
 trap 'echo ""; echo "$0 exiting due to error (sorry!)." >&2' 0
+fi
 
 HERE=`pwd`
 cd $srcdir
@@ -100,7 +104,7 @@
 for command in autoconf autoconf213 autoconf253 autoconf259 
 do
   if
-      testProgram $command
+      testProgram $command == 1
   then
     : OK $pkg is installed
     autoconf=$command
@@ -113,6 +117,7 @@
   fi
 done
 
+
 # Check to see if we got a valid command.
 if 
     $autoconf --version </dev/null >/dev/null 2>&1
@@ -128,6 +133,9 @@
        !EOF
 fi
 
+# Create local copy so that the incremental updates will work.
+ln -s $autoconf ./autoconf
+
 # Check for automake
 pkg="automake"
 URL=$gnu/$pkg/
@@ -158,6 +166,9 @@
        !EOF
 fi
 
+# Create local copy so that the incremental updates will work.
+ln -s $automake ./automake
+
 # Check for Libtool
 pkg="libtool"
 for command in libtool libtool14 libtool15 glibtool
@@ -187,6 +198,9 @@
        !EOF
 fi
 
+# Create local copy so that the incremental updates will work.
+ln -s $libtool ./libtool
+
 case $RC in
   0)   ;;
   *)   exit $RC;;
@@ -259,6 +273,9 @@
 echo $aclocal $ACLOCAL_FLAGS
 $aclocal $ACLOCAL_FLAGS
 
+# Create local copy so that the incremental updates will work.
+ln -s $autoheader ./autoheader
+
 if
   echo $autoheader --version  < /dev/null > /dev/null 2>&1
   $autoheader --version  < /dev/null > /dev/null 2>&1




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

Message: 3
Date: Mon,  7 Aug 2006 09:43:11 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by msoffen from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : msoffen
Host    : 
Module  : linux-ha

Dir     : linux-ha


Modified Files:
        bootstrap 


Log Message:
Added del to clean up bootstrap process.
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/bootstrap,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -3 -r1.30 -r1.31
--- bootstrap   7 Aug 2006 15:41:12 -0000       1.30
+++ bootstrap   7 Aug 2006 15:43:10 -0000       1.31
@@ -134,6 +134,7 @@
 fi
 
 # Create local copy so that the incremental updates will work.
+rm -f $autoconf ./autoconf
 ln -s $autoconf ./autoconf
 
 # Check for automake
@@ -167,6 +168,7 @@
 fi
 
 # Create local copy so that the incremental updates will work.
+rm -f $automake ./automake
 ln -s $automake ./automake
 
 # Check for Libtool
@@ -199,6 +201,7 @@
 fi
 
 # Create local copy so that the incremental updates will work.
+rm -f $libtool ./libtool
 ln -s $libtool ./libtool
 
 case $RC in
@@ -274,6 +277,7 @@
 $aclocal $ACLOCAL_FLAGS
 
 # Create local copy so that the incremental updates will work.
+rm -f $autoheader ./autoheader
 ln -s $autoheader ./autoheader
 
 if




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

Message: 4
Date: Mon,  7 Aug 2006 10:59:57 -0600 (MDT)
From: linux-ha-cvs@lists.linux-ha.org
Subject: [Linux-ha-cvs] Linux-HA CVS: linux-ha by lars from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : lars
Host    : 
Module  : linux-ha

Dir     : linux-ha


Modified Files:
        heartbeat.spec.in 


Log Message:
Sync with latest change.

===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/heartbeat.spec.in,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -3 -r1.193 -r1.194
--- heartbeat.spec.in   4 Aug 2006 09:52:08 -0000       1.193
+++ heartbeat.spec.in   7 Aug 2006 16:59:57 -0000       1.194
@@ -1,4 +1,4 @@
-#      $Id: heartbeat.spec.in,v 1.193 2006/08/04 09:52:08 lars Exp $
+#      $Id: heartbeat.spec.in,v 1.194 2006/08/07 16:59:57 lars Exp $
 
 %define _unpackaged_files_terminate_build 1
 %define _missing_doc_files_terminate_build 1
@@ -99,6 +99,8 @@
       annoying problem when PostgreSQL isn't installed on a box and one
       tries to run the script.
     - stonithd log message did not always indicate an error (OSDL 1379)
+    - lrmd now limits itself to a maximum of 4 child processes, to avoid
+      overloading the node and causing too long delays.
     - Improvements and fixes for Solaris 10.
     - pengine: Processing of pending probes; should not be treated as if
       the resource is running or in a known state.




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

_______________________________________________
Linux-ha-cvs mailing list
Linux-ha-cvs@lists.linux-ha.org
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs


End of Linux-ha-cvs Digest, Vol 33, Issue 5
*******************************************

Reply via email to