search for: o2hb_register_callback

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

2007 Feb 09
6
1.2.4 symbols
Hi, Everything compiled correctly for the ocfs2 package, but so far the modules will not load with the "well known" module symbol error. FATAL: Error inserting ocfs2 (/lib/modules/2.6.16.27-0.6-smp/kernel/fs/ocfs2/ocfs2.ko): Unknown symbol in module, or unknown parameter (see dmesg) Okay not sure what is up here, any suggestions? BTW, this is the correct module location and I
2006 Jan 09
0
[PATCH 01/11] ocfs2: event-driven quorum
...o2quo_hb_up, NULL, O2QUO_HB_PRI); + o2hb_setup_callback(&o2quo_hb_conn_down, O2HB_CONN_DOWN_CB, + o2quo_conn_err, NULL, O2QUO_HB_PRI); + o2hb_setup_callback(&o2quo_hb_conn_up, O2HB_CONN_UP_CB, + o2quo_conn_up, NULL, O2QUO_HB_PRI); + + ret = o2hb_register_callback(&o2quo_hb_up_cb); + if (ret == 0) + ret = o2hb_register_callback(&o2quo_hb_down_cb); + if (ret == 0) + ret = o2hb_register_callback(&o2quo_hb_conn_up); + if (ret == 0) + ret = o2hb_register_callback(&o2quo_hb_conn_down); + + if (ret) + o2quo_unregister_hb_callbacks(); + + return...