search for: o2quo_hb_down

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

2006 Jan 09
0
[PATCH 01/11] ocfs2: event-driven quorum
...63,8 +63,14 @@ static struct o2quo_state { unsigned long qs_conn_bm[BITS_TO_LONGS(O2NM_MAX_NODES)]; int qs_holds; unsigned long qs_hold_bm[BITS_TO_LONGS(O2NM_MAX_NODES)]; + struct work_struct qs_node_work[O2NM_MAX_NODES]; } o2quo_state; +static struct o2hb_callback_func o2quo_hb_up_cb, o2quo_hb_down_cb; +static struct o2hb_callback_func o2quo_hb_conn_up, o2quo_hb_conn_down; +#define O2QUO_HB_PRI 0x1 +#define O2QUO_DELAY_MS ((o2hb_dead_threshold + 2) * O2HB_REGION_TIMEOUT_MS) + /* this is horribly heavy-handed. It should instead flip the file * system RO and call some userspace script. */...
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