1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-26 14:04:15 +03:00

Add some more debuglogs to clvmd startup.

This commit is contained in:
Patrick Caulfield 2007-05-02 08:23:36 +00:00
parent 3934c1d437
commit c2b27a8298
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.26 -
=================================
Add some more debuglogs to clvmd startup.
Version 2.02.25 - 27th April 2007
=================================

View File

@ -78,6 +78,7 @@ static int _init_cluster(void)
syslog(LOG_ERR, "Can't open cluster manager socket: %m");
return -1;
}
DEBUGLOG("Connected to CMAN\n");
if (cman_start_recv_data(c_handle, data_callback, CLUSTER_PORT_CLVMD)) {
syslog(LOG_ERR, "Can't bind cluster socket: %m");
@ -93,6 +94,8 @@ static int _init_cluster(void)
get_members();
count_clvmds_running();
DEBUGLOG("CMAN initialisation complete\n");
/* Create a lockspace for LV & VG locks to live in */
lockspace = dlm_create_lockspace(LOCKSPACE_NAME, 0600);
if (!lockspace) {
@ -100,7 +103,7 @@ static int _init_cluster(void)
return -1;
}
dlm_ls_pthread_init(lockspace);
DEBUGLOG("DLM initialisation complete\n");
return 0;
}