summaryrefslogtreecommitdiffstats
path: root/fs/ocfs2/stack_o2cb.c
diff options
context:
space:
mode:
authorSunil Mushran2010-10-07 02:55:29 +0200
committerSunil Mushran2010-10-07 02:55:29 +0200
commit5f3c6d9c615770708df464c170316f83cf437242 (patch)
treee9b9f188db27b38c317e17fd121d95d6bcdd2008 /fs/ocfs2/stack_o2cb.c
parentocfs2/dlm: Add message DLM_QUERY_REGION (diff)
downloadkernel-qcow2-linux-5f3c6d9c615770708df464c170316f83cf437242.tar.gz
kernel-qcow2-linux-5f3c6d9c615770708df464c170316f83cf437242.tar.xz
kernel-qcow2-linux-5f3c6d9c615770708df464c170316f83cf437242.zip
ocfs2: Print message if user mounts without starting global heartbeat
In global heartbeat mode, the heartbeat is started by the user. This patch prints an error if the user attempts to mount a volume without starting the heartbeat. Signed-off-by: Sunil Mushran <sunil.mushran@oracle.com>
Diffstat (limited to 'fs/ocfs2/stack_o2cb.c')
-rw-r--r--fs/ocfs2/stack_o2cb.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ocfs2/stack_o2cb.c b/fs/ocfs2/stack_o2cb.c
index 0d3049f696c5..19965b00c43c 100644
--- a/fs/ocfs2/stack_o2cb.c
+++ b/fs/ocfs2/stack_o2cb.c
@@ -283,6 +283,8 @@ static int o2cb_cluster_connect(struct ocfs2_cluster_connection *conn)
/* for now we only have one cluster/node, make sure we see it
* in the heartbeat universe */
if (!o2hb_check_local_node_heartbeating()) {
+ if (o2hb_global_heartbeat_active())
+ mlog(ML_ERROR, "Global heartbeat not started\n");
rc = -EINVAL;
goto out;
}