mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-02 01:18:26 +03:00
clvmd
This commit is contained in:
parent
a479de2e75
commit
7f78616f3d
@ -27,4 +27,6 @@ endif
|
|||||||
|
|
||||||
include $(top_srcdir)/make.tmpl
|
include $(top_srcdir)/make.tmpl
|
||||||
|
|
||||||
|
ifeq ("@DMEVENTD@", "yes")
|
||||||
device-mapper: dmeventd.device-mapper
|
device-mapper: dmeventd.device-mapper
|
||||||
|
endif
|
||||||
|
@ -17,6 +17,10 @@
|
|||||||
* CMAN communication layer for clvmd.
|
* CMAN communication layer for clvmd.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <configure.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
@ -41,7 +45,7 @@
|
|||||||
|
|
||||||
#include "clvmd-comms.h"
|
#include "clvmd-comms.h"
|
||||||
#include "clvm.h"
|
#include "clvm.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
#include "clvmd.h"
|
#include "clvmd.h"
|
||||||
#include "lvm-functions.h"
|
#include "lvm-functions.h"
|
||||||
|
|
||||||
|
@ -50,6 +50,10 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <configure.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
@ -68,7 +72,7 @@
|
|||||||
#include <libdlm.h>
|
#include <libdlm.h>
|
||||||
|
|
||||||
#include "locking.h"
|
#include "locking.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
#include "lvm-functions.h"
|
#include "lvm-functions.h"
|
||||||
#include "clvmd-comms.h"
|
#include "clvmd-comms.h"
|
||||||
#include "clvm.h"
|
#include "clvm.h"
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
#include <libgulm.h>
|
#include <libgulm.h>
|
||||||
|
|
||||||
#include "locking.h"
|
#include "locking.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
#include "clvm.h"
|
#include "clvm.h"
|
||||||
#include "clvmd-comms.h"
|
#include "clvmd-comms.h"
|
||||||
#include "lvm-functions.h"
|
#include "lvm-functions.h"
|
||||||
|
@ -11,6 +11,10 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <configure.h>
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
@ -40,7 +44,7 @@
|
|||||||
#include <openais/cpg.h>
|
#include <openais/cpg.h>
|
||||||
|
|
||||||
#include "locking.h"
|
#include "locking.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
#include "clvm.h"
|
#include "clvm.h"
|
||||||
#include "clvmd-comms.h"
|
#include "clvmd-comms.h"
|
||||||
#include "lvm-functions.h"
|
#include "lvm-functions.h"
|
||||||
|
@ -17,6 +17,12 @@
|
|||||||
* CLVMD: Cluster LVM daemon
|
* CLVMD: Cluster LVM daemon
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <configure.h>
|
||||||
|
#include <libdevmapper.h>
|
||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
@ -46,7 +52,7 @@
|
|||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include "clvmd.h"
|
#include "clvmd.h"
|
||||||
#include "refresh_clvmd.h"
|
#include "refresh_clvmd.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
|
@ -13,6 +13,10 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* 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 <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
@ -42,7 +46,8 @@
|
|||||||
/* LVM2 headers */
|
/* LVM2 headers */
|
||||||
#include "toolcontext.h"
|
#include "toolcontext.h"
|
||||||
#include "lvmcache.h"
|
#include "lvmcache.h"
|
||||||
#include "log.h"
|
#include "lvm-logging.h"
|
||||||
|
#include "lvm-globals.h"
|
||||||
#include "activate.h"
|
#include "activate.h"
|
||||||
#include "locking.h"
|
#include "locking.h"
|
||||||
#include "archiver.h"
|
#include "archiver.h"
|
||||||
|
@ -18,6 +18,10 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#define _GNU_SOURCE
|
||||||
|
#define _FILE_OFFSET_BITS 64
|
||||||
|
|
||||||
|
#include <configure.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <sys/socket.h>
|
#include <sys/socket.h>
|
||||||
#include <sys/un.h>
|
#include <sys/un.h>
|
||||||
|
@ -13,7 +13,10 @@
|
|||||||
It can also make outgoing connnections to the other clvmd nodes.
|
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 <pthread.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/utsname.h>
|
#include <sys/utsname.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user