1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-30 17:18:21 +03:00
This commit is contained in:
Alasdair Kergon 2008-11-04 16:41:47 +00:00
parent a479de2e75
commit 7f78616f3d
9 changed files with 38 additions and 6 deletions

View File

@ -27,4 +27,6 @@ endif
include $(top_srcdir)/make.tmpl
ifeq ("@DMEVENTD@", "yes")
device-mapper: dmeventd.device-mapper
endif

View File

@ -17,6 +17,10 @@
* 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"

View File

@ -50,6 +50,10 @@
*/
#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"

View 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"

View File

@ -11,6 +11,10 @@
*
*/
#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"

View File

@ -17,6 +17,12 @@
* 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

View File

@ -13,6 +13,10 @@
* 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"

View File

@ -18,6 +18,10 @@
*
*/
#define _GNU_SOURCE
#define _FILE_OFFSET_BITS 64
#include <configure.h>
#include <stddef.h>
#include <sys/socket.h>
#include <sys/un.h>

View File

@ -13,7 +13,10 @@
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>