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: include by sunjd from 
      ([email protected])
   2. Linux-HA CVS: fencing by sunjd from 
      ([email protected])
   3. Linux-HA CVS: include by sunjd from 
      ([email protected])
   4. Linux-HA CVS: lib by sunjd from  ([email protected])
   5. Linux-HA CVS: lrm by sunjd from  ([email protected])


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

Message: 1
Date: Mon, 10 Apr 2006 02:13:12 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : include

Dir     : linux-ha/include/stonith


Modified Files:
        stonith.h 


Log Message:
bug1179: Make gcc4.2 happy. I think it's oen of gcc4.2's bugs
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/include/stonith/stonith.h,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -3 -r1.15 -r1.16
--- stonith.h   2 Nov 2005 18:41:14 -0000       1.15
+++ stonith.h   10 Apr 2006 08:13:11 -0000      1.16
@@ -1,4 +1,4 @@
-/* $Id: stonith.h,v 1.15 2005/11/02 18:41:14 blaschke Exp $ */
+/* $Id: stonith.h,v 1.16 2006/04/10 08:13:11 sunjd Exp $ */
 /*
  *     S hoot
  *     T he
@@ -102,7 +102,7 @@
 
 void   stonith_set_debug       (Stonith* s, int debuglevel);
 void   stonith_set_log         (Stonith* s
-                               , void (*logfun)(int priority, const char * 
fmt, ...));
+                               , PILLogFun);
                        
 int    stonith_set_config      (Stonith* s, StonithNVpair* list);
 int    stonith_set_config_file(Stonith* s, const char * configname);




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

Message: 2
Date: Mon, 10 Apr 2006 02:14:37 -0600 (MDT)
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:
stonithd.c
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/fencing/stonithd/stonithd.c,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -3 -r1.87 -r1.88
--- stonithd.c  27 Mar 2006 07:33:40 -0000      1.87
+++ stonithd.c  10 Apr 2006 08:14:37 -0000      1.88
@@ -1,4 +1,4 @@
-/* $Id: stonithd.c,v 1.87 2006/03/27 07:33:40 sunjd Exp $ */
+/* $Id: stonithd.c,v 1.88 2006/04/10 08:14:37 sunjd Exp $ */
 
 /* File: stonithd.c
  * Description: STONITH daemon for node fencing
@@ -2714,7 +2714,7 @@
 
        /* Set the stonith plugin's debug level */
        stonith_set_debug(stonith_obj, debug_level);
-       stonith_set_log(stonith_obj, trans_log);
+       stonith_set_log(stonith_obj, (PILLogFun)trans_log);
 
        snv = stonith_ghash_to_NVpair(op->params);
        if ( snv == NULL
@@ -2916,7 +2916,7 @@
                                "exitcode: EXECRA_OK");
                exit(EXECRA_OK);
        } else {
-               stonithd_log2(LOG_DEBUG, "stonithRA_monitor: child exit, "
+               stonithd_log(LOG_DEBUG, "stonithRA_monitor: child exit, "
                                "exitcode: EXECRA_STATUS_UNKNOWN");
                exit(EXECRA_STATUS_UNKNOWN);
        }
@@ -3420,6 +3420,9 @@
 
 /* 
  * $Log: stonithd.c,v $
+ * Revision 1.88  2006/04/10 08:14:37  sunjd
+ * stonithd.c
+ *
  * Revision 1.87  2006/03/27 07:33:40  sunjd
  * GSource will free it when return FALSE
  *




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

Message: 3
Date: Mon, 10 Apr 2006 03:03:53 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: include by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : include

Dir     : linux-ha/include/stonith


Modified Files:
        stonith.h 


Log Message:
bug 1179: make gcc4.2 happy
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/include/stonith/stonith.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- stonith.h   10 Apr 2006 08:13:11 -0000      1.16
+++ stonith.h   10 Apr 2006 09:03:52 -0000      1.17
@@ -1,4 +1,4 @@
-/* $Id: stonith.h,v 1.16 2006/04/10 08:13:11 sunjd Exp $ */
+/* $Id: stonith.h,v 1.17 2006/04/10 09:03:52 sunjd Exp $ */
 /*
  *     S hoot
  *     T he
@@ -45,6 +45,7 @@
 #      define __STONITH_H
 #include <glib.h>
 
+#include <pils/plugin.h>
 #define        STONITH_VERS    2
 
 /*




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

Message: 4
Date: Mon, 10 Apr 2006 03:07:21 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lib by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

Author  : sunjd
Host    : 
Project : linux-ha
Module  : lib

Dir     : linux-ha/lib/stonith


Modified Files:
        stonith.c 


Log Message:
bug 1179: make gcc4.2 happy
===================================================================
RCS file: /home/cvs/linux-ha/linux-ha/lib/stonith/stonith.c,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -3 -r1.25 -r1.26
--- stonith.c   7 Apr 2006 13:26:59 -0000       1.25
+++ stonith.c   10 Apr 2006 09:07:21 -0000      1.26
@@ -1,4 +1,4 @@
-/* $Id: stonith.c,v 1.25 2006/04/07 13:26:59 lars Exp $ */
+/* $Id: stonith.c,v 1.26 2006/04/10 09:07:21 sunjd Exp $ */
 /*
  * Stonith API infrastructure.
  *
@@ -343,12 +343,12 @@
 }
 
 void
-stonith_set_log(Stonith* s, void (*logfun)(int priority, const char * fmt, 
...))
+stonith_set_log(Stonith* s, PILLogFun logfun)
 {
        if (StonithPIsys == NULL) {
                return;
        }
-       PilPluginUnivSetLog(StonithPIsys, (PILLogFun)logfun);
+       PilPluginUnivSetLog(StonithPIsys, logfun);
 }
 
 int




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

Message: 5
Date: Mon, 10 Apr 2006 03:10:06 -0600 (MDT)
From: [email protected]
Subject: [Linux-ha-cvs] Linux-HA CVS: lrm by sunjd from 
To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>

linux-ha CVS committal

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

Dir     : linux-ha/lrm/test


Added Files:
        simple_ops.in 
Removed Files:
        simple_ops 


Log Message:
bug 1152: replace the hardcode pathname




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

_______________________________________________
Linux-ha-cvs mailing list
[email protected]
http://lists.community.tummy.com/mailman/listinfo/linux-ha-cvs


End of Linux-ha-cvs Digest, Vol 29, Issue 55
********************************************

Reply via email to