search for: o2hb_setup_callback

Displaying 2 results from an estimated 2 matches for "o2hb_setup_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
..."callback!\n", ret); + + ret = o2hb_unregister_callback(&o2quo_hb_down_cb); + if (ret < 0) + mlog(ML_ERROR, "Status return %d unregistering heartbeat down " + "callback!\n", ret); +} + +static int o2quo_register_hb_callbacks(void) +{ + int ret; + + o2hb_setup_callback(&o2quo_hb_down_cb, O2HB_NODE_DOWN_CB, + o2quo_hb_down, NULL, O2QUO_HB_PRI); + o2hb_setup_callback(&o2quo_hb_up_cb, O2HB_NODE_UP_CB, + o2quo_hb_up, NULL, O2QUO_HB_PRI); + o2hb_setup_callback(&o2quo_hb_conn_down, O2HB_CONN_DOWN_CB, +...