Displaying 4 results from an estimated 4 matches for "ocfs2_table_header".
2006 Feb 21
0
[PATCH 14/14] ocfs2: include disk heartbeat in ocfs2_nodemanager to avoid userspace changes
...2cb_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 @@ out_sysctl:
unregister_sysctl_table(ocfs2_table_header);
out_o2net:
o2net_exit();
+ o2hb_disk_heartbeat_exit();
out:
return ret;
}
2008 Feb 26
2
Patch to add debugfs interface to o2net
This is a forward port for net_proc.c from 1.2.
2006 Jan 09
0
[PATCH 01/11] ocfs2: event-driven quorum
...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-staging1/fs/ocfs2/cluster/quorum.c linux-2.6.15-staging2/fs/ocfs2/cluster/quorum.c
--- linux-2.6.15-staging1/fs/ocfs2/cluster/quorum.c 2006-01-08 18:23:29.377721824 -0500
+++ linux-2.6.15-staging2/fs/ocfs2/cluster/quoru...
2009 Apr 17
26
OCFS2 1.4: Patches backported from mainline
Please review the list of patches being applied to the ocfs2 1.4 tree.
All patches list the mainline commit hash.
Thanks
Sunil