search for: o2hb_init

Displaying 8 results from an estimated 8 matches for "o2hb_init".

2008 Sep 11
4
Some more debug stuff
Added two debugfs entries... one to dump o2hb livenodes and the other to dump osb. $ cat /sys/kernel/debug/ocfs2/BC4F4550BEA74F92BDCC746AAD2EC0BF/fs_state Device => Id: 8,65 Uuid: BC4F4550BEA74F92BDCC746AAD2EC0BF Gen: 0xA02024F2 Label: sunil-xattr Volume => State: 1 Flags: 0x0 Sizes => Block: 4096 Cluster: 4096 Features => Compat: 0x1 Incompat: 0x350 ROcompat: 0x1
2006 Feb 21
0
[PATCH 14/14] ocfs2: include disk heartbeat in ocfs2_nodemanager to avoid userspace changes
...backs 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 @@ out_sysctl: unregister_sysctl_table(ocfs2_table_header); out_o2net: o2net_exit(); + o2hb_disk_heartbeat_exit(); out: retu...
2010 Oct 08
23
O2CB global heartbeat - hopefully final drop!
All, This is hopefully the final drop of the patches for adding global heartbeat to the o2cb stack. The diff from the previous set is here: http://oss.oracle.com/~smushran/global-hb-diff-2010-10-07 Implemented most of the suggestions provided by Joel and Wengang. The most important one was to activate the feature only at the end, Also, got mostly a clean run with checkpatch.pl. Sunil
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
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
...; #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-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.377721...
2013 Nov 26
3
[PATCH] Remove versioning information
The versioning information is confusing for end-users. The numbers are stuck at 1.5.0 when the tools have moved to 1.8.3. I suggest removing the versioning system in the kernel altogether and let the kernel version be the guide to debug issues. However, if you think versioning is still required, please state the reason and modify the version string in the ver.* files to reflect the uptodate
2009 Mar 17
33
[git patches] Ocfs2 updates for 2.6.30
Hi, The following patches comprise the bulk of Ocfs2 updates for the 2.6.30 merge window. Aside from larger, more involved fixes, we're adding the following features, which I will describe in the order their patches are mailed. Sunil's exported some more state to our debugfs files, and consolidated some other aspects of our debugfs infrastructure. This will further aid us in debugging