We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9801d commit 8c7b638Copy full SHA for 8c7b638
fs/ocfs2/cluster/quorum.c
@@ -160,9 +160,18 @@ static void o2quo_make_decision(struct work_struct *work)
160
}
161
162
out:
163
- spin_unlock(&qs->qs_lock);
164
- if (fence)
+ if (fence) {
+ spin_unlock(&qs->qs_lock);
165
o2quo_fence_self();
166
+ } else {
167
+ mlog(ML_NOTICE, "not fencing this node, heartbeating: %d, "
168
+ "connected: %d, lowest: %d (%sreachable)\n",
169
+ qs->qs_heartbeating, qs->qs_connected, lowest_hb,
170
+ lowest_reachable ? "" : "un");
171
172
+
173
+ }
174
175
176
177
static void o2quo_set_hold(struct o2quo_state *qs, u8 node)
0 commit comments