search for: cs_subsys

Displaying 2 results from an estimated 2 matches for "cs_subsys".

2006 Feb 21
0
[PATCH 14/14] ocfs2: include disk heartbeat in ocfs2_nodemanager to avoid userspace changes
..."ver.h" #include "sys.h" @@ -736,6 +737,7 @@ static void __exit exit_o2nm(void) /* XXX sync with hb callbacks and shut down hb? */ o2net_unregister_hb_callbacks(); + o2hb_disk_heartbeat_exit(); o2cb_sys_shutdown(); configfs_unregister_subsystem(&o2nm_cluster_group.cs_subsys); o2nm_remove_proc(o2nm_proc); @@ -842,6 +844,10 @@ static int __init init_o2nm(void) cluster_print_version(); o2hb_init(); + ret = o2hb_disk_heartbeat_init(); + if (ret) + goto out; + o2net_init(); ocfs2_table_header = register_sysctl_table(ocfs2_root_table, 0); @@ -900,6 +906,7 @@...
2006 Jan 09
0
[PATCH 01/11] ocfs2: event-driven quorum
...#include "tcp.h" #include "nodemanager.h" +#include "quorum.h" #include "heartbeat.h" #include "masklog.h" #include "sys.h" @@ -740,6 +741,7 @@ static void __exit exit_o2nm(void) configfs_unregister_subsystem(&o2nm_cluster_group.cs_subsys); o2cb_sys_shutdown(); + o2quo_exit(); o2net_exit(); } @@ -750,6 +752,7 @@ static int __init init_o2nm(void) cluster_print_version(); o2hb_init(); + o2quo_init(); o2net_init(); ocfs2_table_header = register_sysctl_table(ocfs2_root_table, 0); diff -ruNpX dontdiff linux-2.6.15-st...