]> sourceware.org Git - lvm2.git/commitdiff
clvmd
authorAlasdair Kergon <agk@redhat.com>
Tue, 4 Nov 2008 16:41:47 +0000 (16:41 +0000)
committerAlasdair Kergon <agk@redhat.com>
Tue, 4 Nov 2008 16:41:47 +0000 (16:41 +0000)
daemons/Makefile.in
daemons/clvmd/clvmd-cman.c
daemons/clvmd/clvmd-command.c
daemons/clvmd/clvmd-gulm.c
daemons/clvmd/clvmd-openais.c
daemons/clvmd/clvmd.c
daemons/clvmd/lvm-functions.c
daemons/clvmd/refresh_clvmd.c
daemons/clvmd/tcp-comms.c

index 766469e154f3c34ac974d673d88177fc46f0be8d..db67d3da9063725e6d81933c642515218f925dd6 100644 (file)
@@ -27,4 +27,6 @@ endif
 
 include $(top_srcdir)/make.tmpl
 
+ifeq ("@DMEVENTD@", "yes")
 device-mapper: dmeventd.device-mapper
+endif
index 4c71383366203bb9f6569f07e478a242fd069d3b..b03f880d321a355f316b7140f13eed9f317faf35 100644 (file)
  * CMAN communication layer for clvmd.
  */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -41,7 +45,7 @@
 
 #include "clvmd-comms.h"
 #include "clvm.h"
-#include "log.h"
+#include "lvm-logging.h"
 #include "clvmd.h"
 #include "lvm-functions.h"
 
index b3deb48c85eaca8db7586f79b6d21e9fb466ebf8..12bf935e55f95192bfc70b7654310ab6eb95c774 100644 (file)
 
 */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/utsname.h>
@@ -68,7 +72,7 @@
 #include <libdlm.h>
 
 #include "locking.h"
-#include "log.h"
+#include "lvm-logging.h"
 #include "lvm-functions.h"
 #include "clvmd-comms.h"
 #include "clvm.h"
index 5fdf9b28668f269c0d6709fe9a7ae3dd77319941..5d4d3a736ae025cefe01c41428799c52a14f10d9 100644 (file)
@@ -45,7 +45,7 @@
 #include <libgulm.h>
 
 #include "locking.h"
-#include "log.h"
+#include "lvm-logging.h"
 #include "clvm.h"
 #include "clvmd-comms.h"
 #include "lvm-functions.h"
index a830304a697121774b6464076e01482ebf903d80..42f8187d2ac91d784fb50efce056d0bf109310cd 100644 (file)
  *
  */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/utsname.h>
@@ -40,7 +44,7 @@
 #include <openais/cpg.h>
 
 #include "locking.h"
-#include "log.h"
+#include "lvm-logging.h"
 #include "clvm.h"
 #include "clvmd-comms.h"
 #include "lvm-functions.h"
index 3a22727646797a1944cf26f69b4765c9d4d66fe5..eb34eaf97ba8e90743e667c607449b7a2238e907 100644 (file)
  * CLVMD: Cluster LVM daemon
  */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
+#include <libdevmapper.h>
+
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -46,7 +52,7 @@
 #include "version.h"
 #include "clvmd.h"
 #include "refresh_clvmd.h"
-#include "log.h"
+#include "lvm-logging.h"
 
 #ifndef TRUE
 #define TRUE 1
index 2e727518ea1bf9989be0a72c5d5bc9c451880b74..621493cc36a6e7675d173cc049b7df3397b281aa 100644 (file)
  * Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/utsname.h>
@@ -42,7 +46,8 @@
 /* LVM2 headers */
 #include "toolcontext.h"
 #include "lvmcache.h"
-#include "log.h"
+#include "lvm-logging.h"
+#include "lvm-globals.h"
 #include "activate.h"
 #include "locking.h"
 #include "archiver.h"
index 0cbd4b9124c7c44f2684b4d14cd3bad2d14e3831..850990c11632372b8397de9f8b265047b5cd309a 100644 (file)
  *
  */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
+
+#include <configure.h>
 #include <stddef.h>
 #include <sys/socket.h>
 #include <sys/un.h>
index 37e954ac2a6e12eb6a1ab7ec47da3351ddfe6db4..306a7eb8a0ecd031ff2b2fbb44dde9d2be0b8dd2 100644 (file)
    It can also make outgoing connnections to the other clvmd nodes.
 */
 
+#define _GNU_SOURCE
+#define _FILE_OFFSET_BITS 64
 
+#include <configure.h>
 #include <pthread.h>
 #include <sys/types.h>
 #include <sys/utsname.h>
This page took 0.043435 seconds and 5 git commands to generate.